Advance Description on Purchase Order

http://falinwa.odoo.com/web/image/product.template/5934/image_1920?unique=81baef6

US$ 1.00 1.0 USD US$ 1.00 税抜

US$ 1.00 税抜

Not Available For Sale

この組み合わせは存在しません。

利用規約
30日返金保証
発送: 2-3 営業日

Advance Description on Purchase Order

US$ 1.00 1.0 USD US$ 1.00 税抜

US$ 1.00 税抜

Not Available For Sale

この組み合わせは存在しません。

STORY BEHIND THE FEATURES

ODOO BEHAVIOR
Odoo proposes a hardcoded description on sales order line which is Product ref / Product name and without any flexibility to define priorities.
For instance, if you give supplier reference on the supplier pricelist, description on purchase order lines only show the Supplier ref and no more your product reference. 

CLUEDOO BEHAVIOR
Cluedoo lets you configuration the description using python code in the product categories. With this way, you can varies the description by categories and have a control on what you will have on the Sales/Purchase order.

HOW TO USE THIS MODULE

1

On Product Categories, we can input python code to enable product description on sale order line / purchase order line.
We can put the value from object: sale order line (sale.order.line), product template (product.template), product variant (product.product)


2

For example, we want to put internal reference and country (custom field made in studio) on the description on order lines


3

We can write the python code like this:
result = product_template_id.x_studio_country + ' ' + product_template_id.taxes_id.default_code
string ' ' (to add space)
Then when you create a purchase order and select the product that is included in the product category Office Furniture, you will have country and internal reference on the description.