Odoo18-Base/addons/l10n_in_edi_ewaybill/views/account_move_views.xml
2025-01-06 10:57:38 +07:00

56 lines
3.6 KiB
XML
Executable File

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="invoice_form_inherit_l10n_in_edi_ewaybill" model="ir.ui.view">
<field name="name">account.move.form.inherit.l10n.in.ewaybill</field>
<field name="model">account.move</field>
<field name="inherit_id" ref="account.view_move_form"/>
<field name="arch" type="xml">
<xpath expr="//button[@name='button_set_checked']" position="after">
<button name="l10n_in_edi_ewaybill_send" string="Send E-waybill" class="oe_highlight" type="object" groups="account.group_account_invoice" invisible="not l10n_in_edi_ewaybill_show_send_button" data-hotkey="e"/>
</xpath>
<xpath expr="//notebook/page[@name='other_info']" position="before">
<page string="eWayBill" name="l10n_in_edi_ewaybill_page"
invisible="move_type == 'entry' or country_code != 'IN'">
<group name="ewaybill_group">
<group string="Transaction Details" name="Transaction_group"
invisible="not l10n_in_edi_ewaybill_direct_api">
<field name="l10n_in_type_id" domain="[('code', '!=', 'CHL'), ('allowed_supply_type', 'in', ('in', 'both'))] if move_type in ('in_invoice', 'out_refund', 'in_receipt') else [('code', '!=', 'CHL'), ('allowed_supply_type', 'in', ('out', 'both'))]"/>
</group>
<group string="Transportation Details" name="transportation_group">
<field name="l10n_in_mode" widget="radio" options="{'horizontal': True}"/>
<label for="l10n_in_distance"/>
<div class="o_row" name="l10n_in_distance">
<field name="l10n_in_distance" class="oe_inline"/>
<span>km</span>
</div>
<field name="l10n_in_vehicle_type"
invisible="l10n_in_mode != '1'"
required="l10n_in_mode == '1'"
widget="radio"
options="{'horizontal': True}"/>
<field name="l10n_in_vehicle_no"
invisible="l10n_in_mode != '1'"
required="l10n_in_mode == '1'"/>
<field name="l10n_in_transporter_id"
domain="[('vat','not in', ['', False]), ('country_id.code','=','IN')]"
invisible="l10n_in_mode != '0'"
required="l10n_in_mode == '0'"/>
<field name="l10n_in_transportation_doc_no"
invisible="l10n_in_mode not in ('2', '3', '4')"
required="l10n_in_mode in ('2', '3', '4')"
string="Transporter Document Number"/>
<field name="l10n_in_transportation_doc_date"
invisible="l10n_in_mode not in ('2', '3', '4')"
required="l10n_in_mode in ('2', '3', '4')"/>
</group>
<group string="Cancel Reason" invisible="country_code != 'IN' or state != 'posted' or not l10n_in_edi_show_cancel">
<field name="l10n_in_edi_cancel_reason"/>
<field name="l10n_in_edi_cancel_remarks"/>
</group>
</group>
</page>
</xpath>
</field>
</record>
</odoo>