Initial commit

This commit is contained in:
gsinghpal
2026-02-22 01:22:18 -05:00
commit 5200d5baf0
2394 changed files with 386834 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2024-2025 Nexa Systems Inc.
License OPL-1 (Odoo Proprietary License v1.0)
Part of the Fusion Claim Assistant product family.
-->
<odoo>
<!-- Add "Requires Card Digits" checkbox to payment method lines in journal form -->
<record id="view_account_journal_form_fc" model="ir.ui.view">
<field name="name">account.journal.form.fc</field>
<field name="model">account.journal</field>
<field name="inherit_id" ref="account.view_account_journal_form"/>
<field name="arch" type="xml">
<!-- Add column to inbound payment methods -->
<xpath expr="//field[@name='inbound_payment_method_line_ids']/list/field[@name='name']" position="after">
<field name="x_fc_requires_card_digits" string="Req. Card #"
help="Check this box if this payment method requires the last 4 digits of the card"/>
</xpath>
<!-- Add column to outbound payment methods -->
<xpath expr="//field[@name='outbound_payment_method_line_ids']/list/field[@name='name']" position="after">
<field name="x_fc_requires_card_digits" string="Req. Card #"
help="Check this box if this payment method requires the last 4 digits of the card"/>
</xpath>
</field>
</record>
</odoo>