Hi,
how can I reproduce Line Items like in Quotes mdoule in a custom module?
I see in custo/module/Aos_Quotes where is definied the field but i try to make similar in filed of a custom module but i donāt see nothing
I know how customize javascript code but I think I miss one step for visualize in edit view and detail view.
HELP
Please post itā¦It could be useful for others
2 Likes
Please share your solution, thank you so much
All your customize or edit or duplicates in Developer Tools / STUDIO (Customize module fields, layouts and relationships)
Dear SuiteCRM community,
I created the custom module Lieferscheine (delivery notes). The basis is the contract. Workflow: quote -> contract -> delivery notes (Lieferscheine). To create the delivery notes (Lieferscheine) I use createContract.php, in the contract module.
All data are transferred correctly, except the āline itemsā. These are neither displayed in detailview nor in editview. Only this is shown in editview:
But when a delivery note is printed in a PDF, all datas are displayed, includ the āline itemsā.
What did I make wrong? What I have to do, so that I can edit the positions in the editview?
Does it have to do with realationship ?:
Can someone help me, please. I would be very happy about it
- 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 ).
-
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ā)
-
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)
-
Repair and Rebuild (with updating database fields)
Everything should work.
1 Like
Hi @Ankita14, please note that the Line Item section is a custom fuction field
Thankyou but i have found out the solution and now i can get the complete functionality of line items in my custom module
Youāre welcome.
If you want you could share it here, it would be a good idea for the Show and Tell - SuiteCRM section
Please share the code, it could be useful for lot of people.
Hi @Ankita14
I am also looking for the same. Would you kindly share