Line Items in Quote

Hello everyone

While creating a new quote, you can add a group to the line items and then add product line.

The view is: Quantity -> Product, Part Numberā€¦I would like to replace here Part Number with Part Code, but I am unable to find this pannel to edit it.

Did anyone trie that?

Thank you

Probably this is the label you want to fix

https://github.com/salesagility/SuiteCRM/blob/master/modules/AOS_Products/language/en_us.lang.php#L71

make sure you copy the file into the ā€œcustomā€ folder to make your change upgrade-safe.

Thank you for your reply.

I did edit it (Simply replaced the ā€˜LBL_PART_NUMBERā€™ => ā€˜Part Numberā€™ with ā€˜LBL_MAINCODEā€™ => ā€˜Product Codeā€™ and did a rebuild.

But nothing changedā€¦

Thank you again for your help

No, you need to leave the code label exactly as it was, change only the string. So you should make it like this:

 'LBL_PART_NUMBER' => 'Product Code' 

After rebuilding sometimes you can have some delay before seeing the new label, due to caching (on the server and on your browser)

The product code is a drop down list, and the part number is a text field.

Iā€™ll follow your instructions, thank you

Maybe I didnā€™t understand you correctly before.

My instructions are just to change a label that shows on screen. They do not change the actual field or the data that goes in the field.

For that you would need to customize PHP code. That particular screen is not editable from Studio because it is a very specific screen, with special behaviorsā€¦

Yes, I meant to change the field to choose.
Thank you anyways for your help