Question: Regarding Installation

Regarding Installation

Hi, already paid for installation fee too. plz check your email. here we cannot share our domain login details rgt. i sent all the details via email like last time.

S

sugumar

Asked
Hi,

already paid for installation fee too. plz check your email. here we cannot share our domain login details rgt. i sent all the details via email like last time.
  • MS

    Mian Saleem

    Answered
    Hello,

    Where you have paid? If you have bought credit on this site, then you should open ticket. **_Tickets are private._**

    Please avoid duplication. You already have question there is no need to ask again.

    Thank you
  • S

    sugumar

    Answered
    check this receipt.
    Attachments
  • S

    sugumar

    Answered
    done. created ticket
  • S

    sugumar

    Answered
    hello sir,

    we need help from you to make primary key for reference number. because same facture reference number updating twice. please make change that.

    same facture keep repeating from staff. we have to make error message if twice update same reference number facture
  • MS

    Mian Saleem

    Answered
    Hello,

    Reference number is not validated against uniqueness as it's manual input. You can add new validation rule for reference `is_unique[sales.reference_no]` and the full line would be

    ```php
    $this->form_validation->set_rules('reference_no', $this->lang->line('reference_no'), 'required|is_unique[sales.reference_no]');
    ```

    in the sales controller `app/controllers/Sales.php`

    Thank you
  • Login to Reply