feat: comment out broken bank reconciliation template and add gitignore file
This commit is contained in:
parent
a9cdd6db9b
commit
7f75ce6871
15
.gitignore
vendored
Normal file
15
.gitignore
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Python
|
||||||
|
*.py[cod]
|
||||||
|
__pycache__/
|
||||||
|
*.so
|
||||||
|
|
||||||
|
# Odoo
|
||||||
|
*.po~
|
||||||
|
*.pot~
|
||||||
|
|
||||||
|
# Editor / System
|
||||||
|
.DS_Store
|
||||||
|
.vscode/
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
*~
|
||||||
@ -1,6 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<templates xml:space="preserve">
|
<templates xml:space="preserve">
|
||||||
<!-- Extend Manual Operations panel to show Reference for non-liquidity lines and make it editable -->
|
<!-- Extend Manual Operations panel to show Reference for non-liquidity lines and make it editable -->
|
||||||
|
<!-- Commented out because parent template is missing in Odoo 19
|
||||||
<t t-name="account_reconcile_reference.BankRecManualOperationsRef"
|
<t t-name="account_reconcile_reference.BankRecManualOperationsRef"
|
||||||
t-inherit="account_accountant.BankRecRecordNotebookManualOperations"
|
t-inherit="account_accountant.BankRecRecordNotebookManualOperations"
|
||||||
t-inherit-mode="extension">
|
t-inherit-mode="extension">
|
||||||
@ -13,17 +14,15 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="o_cell o_wrap_input flex-grow-1 flex-sm-grow-0" style="width: 100%; margin-bottom: 5px">
|
<div class="o_cell o_wrap_input flex-grow-1 flex-sm-grow-0" style="width: 100%; margin-bottom: 5px">
|
||||||
<div class="o_field_widget o_field_char">
|
<div class="o_field_widget o_field_char">
|
||||||
<!-- Reset patch: keep non-liquidity Reference read-only -->
|
|
||||||
<CharField name="'ref'" record="line" readonly="true"/>
|
<CharField name="'ref'" record="line" readonly="true"/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</xpath>
|
</xpath>
|
||||||
|
|
||||||
<!-- Also make the original liquidity 'Reference' editable -->
|
|
||||||
<!-- Use a simpler XPath to avoid quoting issues in attribute predicates -->
|
|
||||||
<xpath expr="//div[@name='reference']//CharField" position="attributes">
|
<xpath expr="//div[@name='reference']//CharField" position="attributes">
|
||||||
<attribute name="readonly">false</attribute>
|
<attribute name="readonly">false</attribute>
|
||||||
</xpath>
|
</xpath>
|
||||||
</t>
|
</t>
|
||||||
|
-->
|
||||||
</templates>
|
</templates>
|
||||||
Loading…
Reference in New Issue
Block a user