When adding a Belgian province to the address of a contact, on the invoice it will be shown as a code between the city and the zip code. This looks a bit strange and confusing to the customer, how can I prevent this code from being displayed?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- ลูกค้าสัมพันธ์
- e-Commerce
- ระบบบัญชี
- สินค้าคงคลัง
- PoS
- Project
- MRP
คำถามนี้ถูกตั้งค่าสถานะ
It's a little bit late, but it can be helpful for another person.
You can hide this field with an inherit on the XML view like that :
<record id="view_partner_form_inherit" model="ir.ui.view">
<field name="name">res.partner.form.inherit</field>
<field name="model">res.partner</field>
<field name="inherit_id" ref="base.view_partner_form"/>
<field eval="1" name="priority"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='state_id']" position="attributes">
<attribute name="invisible">True</attribute>
</xpath>
</field>
</record>
It's working on the V7.
Simply <field name="province_code" invisible="1"/> ...
Do you mean with a position="replace" or in the base code directly ?
Directly in base code is not recommended one, inherit that form and do it...
The address format can be changed in the Country settings. Just change the format here.
Thanks this solutions was the best because hide the field but dotn generate problem, but when you put replace the field the openerp genere the problem
Update your code, it works well at newer versions (Runbot).
สนุกกับการพูดคุยนี้ใช่ไหม? เข้าร่วมเลย!
สร้างบัญชีวันนี้เพื่อเพลิดเพลินไปกับฟีเจอร์พิเศษและมีส่วนร่วมกับคอมมูนิตี้ที่ยอดเยี่ยมของเรา!
ลงชื่อRelated Posts | ตอบกลับ | มุมมอง | กิจกรรม | |
---|---|---|---|---|
|
1
มิ.ย. 24
|
2186 | ||
Create new invoice by code
แก้ไขแล้ว
|
|
1
พ.ย. 22
|
18781 | |
|
4
ส.ค. 22
|
8025 | ||
|
1
ก.พ. 23
|
3436 | ||
|
3
ธ.ค. 22
|
3399 |