<record model="ir.ui.view" id="rent_posting__tree">
<field name="name">rent posting Tree</field>
<field name="model">rent.posting</field>
<field name="type">tree</field>
<field name="arch" type="xml">
<tree string="rent posting Data" editable="bottom" version="7.0" create="false" delete="false" > <field name="assetid" readonly="1" invisible="1"/>
<field name="asset_id" readonly="1"/>
<field name="allottename" readonly="1"/>
<field name="rent" readonly="1"/>
<field name="tds" readonly="1" />
<field name="flag" invisible="1" />
<field name="servicetax" readonly="1" attrs="{'invisible': [('flag' ,'=',False)]}" /> <field name="interest_amount" on_change="onchange_interest(rent,interest_amount,totalrent,servicetax)" readonly="1"/>
<field name="cgst" readonly="1" attrs="{'invisible': [('flag' ,'=',True)]}"/>
<field name="sgst" readonly="1" attrs="{'invisible': [('flag' ,'=',True)]}" />
<field name="totalrent" readonly="1"/>
</tree>
</field>
</record>
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- إدارة علاقات العملاء
- e-Commerce
- المحاسبة
- المخزون
- PoS
- Project
- MRP
لقد تم الإبلاغ عن هذا السؤال
2
الردود
3862
أدوات العرض
Try this
<field name="cgst" readonly="1" attrs="{'column_invisible': [('flag' ,'=',True)]}"/>
<field name="sgst" readonly="1" attrs="{'column_invisible': [('flag' ,'=',True)]}" />
هل أعجبك النقاش؟ لا تكن مستمعاً فقط. شاركنا!
أنشئ حساباً اليوم لتستمتع بالخصائص الحصرية، وتفاعل مع مجتمعنا الرائع!
تسجيلالمنشورات ذات الصلة | الردود | أدوات العرض | النشاط | |
---|---|---|---|---|
|
4
مارس 15
|
5853 | ||
|
1
مارس 24
|
5694 | ||
|
2
نوفمبر 19
|
4180 | ||
|
2
يوليو 18
|
8101 | ||
|
1
يناير 18
|
2964 |
What is your output ?