İçereği Atla
Menü
Bu soru işaretlendi
2 Cevaplar
2912 Görünümler

Hello,  

I am asking for some help.

I use odoo.sh version 16 and am looking to remove the [internal reference] field from quotations.  


when I select a product to add to a quotation, the system inserts "[internal reference field]" before the product name and before the product description.  My quotation builder form looks like this before I send it to a customer...

Products ​                                     product description     ​                               
​[10002] PVC075 ​                       [10002] 3/4" x 10 foot .....etc.​


What the customer sees is this

Products

[10002] PVC075

3/4" x 10 foot .....etc.......


I am looking to remove the [10002] from the product description field of the quotation builder view and from the customer view.  Where can I make this change?

Thank you in advance for your help.


Avatar
Vazgeç
En İyi Yanıt

You can remove the internal reference field from the product description field of the quotation in Odoo 16, you can follow these steps:

Go to the Odoo backend and click on the "Sales" app.

Click on the "Configuration" tab and select "Settings".

Scroll down to the "Quotations & Sales Orders" section.

In the "Product" subsection, uncheck the "Display internal reference in product descriptions" option.

Click on the "Save" button to save the changes.

Once you've made this change, the [internal reference] field should no longer appear in the product description field of the quotation builder view or in the customer view.

Note that this change will only affect new quotations created after the change has been made. Existing quotations will still display the [internal reference] field in the product description. If you want to remove it from existing quotations as well, you will need to edit each quotation individually and remove the [internal reference] field manually.
https://apps.odoo.com/apps/modules/16.0/sh_so_desc_ref_remove/ This module allows you to enable/disable "remove internal reference" and "remove internal reference in report" options. Once you enable "remove internal reference", the internal reference will be removed from the description and report

Avatar
Vazgeç
Üretici

Thank you very much for your help.

Hi Scott You're welcome! I'm glad I could help. Don't hesitate to reach out if you have any other questions in the future. Have a great day!

I can't seem to find the setting that you reference running 16 on sh. I don't seem to see it on 15 or 16 in runbot either. Is there a different setting that needs to be made first?

I can't see that option either. Is there a specific setting we need to make first?

Can´t see that button either.
I use 16.3 SaaS

En İyi Yanıt

Hi....You can easily delete internal references from product descriptions in sale order lines by adding the following custom code to any of your own modules.

ProductProduct(models.Model):
_inherit = 'product.product'


def name_get
(self):
  return [(rec.id, rec.name) for rec in self]


Avatar
Vazgeç