I am new to odoo and I have a customer who sells different products where some products have custom fields, we need to show those fields optionally and hide them from other customers' quotations and invoices, we are using odoo 16 Community version any guidance on how to do that?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Kế toán
- Tồn kho
- PoS
- Project
- MRP
Câu hỏi này đã bị gắn cờ
Hi,
You can set the condition in your xml code:
Create XML files for the views you want to customize.
views/sale_order_view.xml:
<odoo>
<record id="view_order_form_inherit" model="ir.ui.view" style="color:rgb(56,58,66);background-color:rgb(250,250,250);font-size:11pt;">>
<field name="name">sale.order.form.
<field name="model">sale.order</field
<field name="inherit_id" ref="sale.view_order_form"/>
<field name="arch" type="xml">
<field name="custom_field" position="attributes">
<attribute name="attrs">{'invisible': [('partner_id', '=', you can your domain)]}</attribute>
</field>
</field>
</record>
</odoo>
n the same way, you can set up the account. move views or you can try this method
Define Custom Fields:
from odoo import models, fields |
Define Access Rights:
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
access_product_custom_fields,access.product.custom.fields,model_product_product,base.group_user,1,1,1,1
In this way, you can add the groups with the required conditions
from odoo import API, models |
Add Custom Fields to Quotation/Invoice Views:
<record id="view_sale_order_form_custom" model="ir.ui.view">
<field name="name">sale.order.form.custom</field>
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale.view_order_form"/>
<field name="arch" type="xml">
<!-- Add custom fields to the view -->
<field name="custom_field_1" position="after">
<!-- Additional fields or modifications -->
</field>
</field>
</record>
Hope it helps
Bạn có hứng thú với cuộc thảo luận không? Đừng chỉ đọc, hãy tham gia nhé!
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng kýBài viết liên quan | Trả lời | Lượt xem | Hoạt động | |
---|---|---|---|---|
|
1
thg 2 24
|
2045 | ||
Products for cleaning service
Đã xử lý
|
|
1
thg 10 25
|
6018 | |
|
4
thg 8 24
|
2542 | ||
|
4
thg 5 24
|
5664 | ||
|
1
thg 4 23
|
2157 |