Line Items in a Custom Module

  1. In a custom module in modules/modulename/vardefs.php file and localization file (/en-us.lang.php) define the fields and relationships (AOS_Products_Quotes and AOS_Line_Item_Groups):
    ā€˜LBL_IMPORT_LINE_ITEMSā€™
    ā€˜LBL_LINE_ITEMSā€™
    ā€˜LBL_GRAND_TOTALā€™
    ā€˜LBL_TOTAL_AMTā€™
    ā€˜LBL_TAX_AMOUNTā€™
    ā€˜LBL_SUBTOTAL_AMOUNTā€™
    ā€˜LBL_SHIPPING_AMOUNTā€™
    ā€˜LBL_SHIPPING_TAX_AMTā€™
    ā€˜LBL_DISCOUNT_AMOUNTā€™
    ā€˜LBL_ADD_PRODUCT_LINEā€™
    ā€˜LBL_ADD_SERVICE_LINEā€™
    ā€˜LBL_REMOVE_PRODUCT_LINEā€™
    ā€˜LBL_SERVICE_NAMEā€™
    ā€˜LBL_SERVICE_LIST_PRICEā€™
    ā€˜LBL_SERVICE_PRICEā€™
    ā€˜LBL_SERVICE_DISCOUNTā€™
    ā€˜LBL_VAT_AMTā€™
    ā€˜LBL_TOTAL_PRICEā€™
    ā€˜LBL_PRODUCT_QUANITYā€™
    ā€˜LBL_PRODUCT_NAMEā€™
    ā€˜LBL_PART_NUMBERā€™
    ā€˜LBL_PRODUCT_NOTEā€™
    ā€˜LBL_PRODUCT_DESCRIPTIONā€™
    ā€˜LBL_LIST_PRICEā€™
    ā€˜LBL_DISCOUNT_AMTā€™
    ā€˜LBL_UNIT_PRICEā€™
    ā€˜LNK_LISTā€™


My custom module name: acts_company_acts
This fields and relationships copy from AOS Invoices (vardefs.php) (By changing the name of the module to yours ).

  1. Copy from AOS_Invoices.php function ( public function save($check_notify = false)) to you custom module main class (my class ā€œacts_company_acts extends Basicā€)

  2. Copy PANNEL settings edit view, detail view and panel view from AOS_Invoices to (custom/modules/custommodules/metadata/editviewdefs.php, custom/modules/custommodules/metadata/detailviewdefs.php)

  3. Repair and Rebuild (with updating database fields)

Everything should work.

1 Like