Files
bank-payment/account_banking/workflow/account_invoice.xml
OpenERP instance user b3c25668d2 [RFR] delegated the matching mechanism to an orm model
(banking.import.transaction)
[ADD] bank statement line states + logic
[ADD] reconciliation wizard on bank statement line,
	allows manual selection between multiple matches
[ADD] more relaxed duplicate checking for bank statement
	file formats without unique identifier
	+ interactive step to remove duplicate flagging
[ADD] workflow steps for invoice and storno match cancelling
2011-12-18 13:42:17 +01:00

19 lines
680 B
XML

<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<!--
Transition to reopening the invoice, triggered by
cancelling a bank transaction with which the invoice
was paid.
the existing workflow contains a similar step
but without the test on being reconciled
-->
<record id="paid_to_open" model="workflow.transition">
<field name="act_from" ref="account.act_paid"/>
<field name="act_to" ref="account.act_open"/>
<field name="condition">test_undo_paid()</field>
<field name="signal">undo_paid</field>
</record>
</data>
</openerp>