Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
2 ตอบกลับ
5730 มุมมอง

Hi all,

I'm trying to add two new columns to the Quotation and SO list view on my v7 of openERP on windows. I would like to add the sale margin and the margin percent to the view. I know that I must add some lines in the sale_margin.xml. What I have right now is:

<record model="ir.ui.view" id="sale_margin_quotation_tree">
  <field name="name">sale.quotation.margin.view.tree</field>
  <field name="model">sale.order</field>
  <field name="inherit_id" ref="sale.view_quotation_tree"/>
  <field name="arch" type="xml">   
    <xpath expr="//field[@name='partner_id']" position="after">
      <field name="margin_percent" string="Margin Percent"/>
      <field name="margin" />
    </xpath>
  </field>
</record>

I also know that I must add some lines in the sale_margin.py or the sale.py, but I don't know what to add.

Any help is appreciated.

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

Only You need to add the module name "sale_margin" in the manifest - depends


 'depends': [ 'base', 'sale_margin', ]


 Thank You!

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

Hi,

That fields are already added in sale_margin, so in the module which you are inheriting the list view just give the sale_margin module as depends as following.

'depends': [ 'base', 'sale_margin', ] 

Regards

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
4
เม.ย. 16
8379
Commission Module? แก้ไขแล้ว
4
ม.ค. 24
12660
1
มี.ค. 15
4554
3
ต.ค. 24
43632
1
ส.ค. 16
8055