Update rent_payment_view.xml

This commit is contained in:
zainab2097 2024-09-02 12:04:19 +03:00 committed by GitHub
parent 1a2b5d1429
commit a52c803e9b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 4 deletions

View File

@ -42,6 +42,8 @@
<field name="tax_id" readonly="1"/>
<field name="tax_amount" readonly="1"/>
<field name="total_amount" readonly="1"/>
<field name="commission_amount" readonly="1"/>
<field name="collected_from_company"/>
<field name="amount_in_word" readonly="1"/>
</group>
</group>
@ -49,7 +51,7 @@
<page string="Invoice" name="invoices">
<group>
<field name="invoice_id"/>
<field name="invoice_commission_id"/>
</group>
</page>
</notebook>
@ -75,9 +77,10 @@
<field name="unit_ids" widget="many2many_tags"/>
<field name="due_date"/>
<field name="paid_date"/>
<field name="amount"/>
<field name="water_cost"/>
<field name="service_cost"/>
<field name="amount" sum="Total Amount"/>
<field name="commission_amount" sum="Total Commission"/>
<field name="water_cost" sum="Total Water Cost"/>
<field name="service_cost" sum="Total Service Cost"/>
<field name="state"/>
</tree>
</field>
@ -92,6 +95,7 @@
<field name="name"/>
<field name="contract_id"/>
<field name="partner_id"/>
<field name="invoice_commission_id"/>
<field name="property_id"/>
<field name="due_date"/>
<field name="state"/>
@ -105,6 +109,7 @@
<group expand="0" string="Group By">
<filter string="Status" name="state" domain="[]" context="{'group_by': 'state'}"/>
<filter string="Collected From Company" name="collected_from_company" domain="[]" context="{'group_by': 'collected_from_company'}"/>
<filter string="Renter" name="partner_id" domain="[]" context="{'group_by': 'partner_id'}"/>
<filter name="group_contract_id" string="Rental Contract" domain="[]"
context="{'group_by':'contract_id'}"/>