How to display available quantity of item on Sales/Invoice

  • Last Created On Dec 13, 2023
  • 617
0 0
  1. Display available quantity of item on Sales/Invoice

    1.1. 
     File “application/controllers/admin/Invoices.php”, below the line 365 add hook like this
    Code:

            // add hook display Available quantity of item //

            $data['items']        = hooks()->apply_filters('before_admin_view_create_invoice', $data['items']);

            /////////////////////////////////////////////////

    Image: 


    1.2. 
    File “application/controllers/admin/Invoice_items.php”, find function “search” and update like the image
    Code: 

        public function search()

        {

            if ($this->input->post() && $this->input->is_ajax_request()) {

                $data = $this->invoice_items_model->search($this->input->post('q'));

                /////////////////////////////////////////////////

                // add hook display Available quantity of item //

                $data = hooks()->apply_filters('admin_invoice_ajax_search_item', $data, $this->input->post('q'));

                /////////////////////////////////////////////////

                echo json_encode($data);

            }

        }

    Image: 


Views: 617

Recent Articles

  • Updated Feature in Version 1.0.3 of the...
    29
  • SMS Notifications for Vendor Registratio...
    45
  • Updated Feature in Version 1.1.4 of the...
    43
  • How to Create Custom Fields for the Logi...
    53
  • Temp Staffing Module - Clients Portal
    57

Popular Articles

  • Warehouse
    2068
  • Item Settings
    1721
  • General Accounting Settings
    1461
  • Plaid environment & Setup Your Bank Acco...
    1397
  • Mapping Setup
    1289