banking-addons-team team mailing list archive
-
banking-addons-team team
-
Mailing list archive
-
Message #01141
lp:~ruchir.shukla/banking-addons/banking-addons-payment-order-improvment into lp:banking-addons
Ruchir Shukla(BizzAppDev) has proposed merging lp:~ruchir.shukla/banking-addons/banking-addons-payment-order-improvment into lp:banking-addons.
Requested reviews:
Banking Addons Core Editors (banking-addons-team)
For more details, see:
https://code.launchpad.net/~ruchir.shukla/banking-addons/banking-addons-payment-order-improvment/+merge/198501
return Form view of Payment Orders so record will be reloaded
make account_payment_shortcut installable so default Invoices will be selected in Wizard
--
https://code.launchpad.net/~ruchir.shukla/banking-addons/banking-addons-payment-order-improvment/+merge/198501
Your team Banking Addons Core Editors is requested to review the proposed merge of lp:~ruchir.shukla/banking-addons/banking-addons-payment-order-improvment into lp:banking-addons.
=== modified file 'account_banking_payment/model/payment_order_create.py'
--- account_banking_payment/model/payment_order_create.py 2013-09-12 07:05:59 +0000
+++ account_banking_payment/model/payment_order_create.py 2013-12-11 06:44:15 +0000
@@ -194,4 +194,11 @@
or line.journal_id.currency.id
or line.journal_id.company_id.currency_id.id),
}, context=context)
- return {'type': 'ir.actions.act_window_close'}
+ return {'name': _('Payment Orders'),
+ 'context': context,
+ 'view_type': 'form',
+ 'view_mode': 'form,tree',
+ 'res_model': 'payment.order',
+ 'res_id': context['active_id'],
+ 'type': 'ir.actions.act_window',
+ }
=== modified file 'account_payment_shortcut/__openerp__.py'
--- account_payment_shortcut/__openerp__.py 2013-04-15 14:14:27 +0000
+++ account_payment_shortcut/__openerp__.py 2013-12-11 06:44:15 +0000
@@ -29,5 +29,5 @@
'description': '''
When composing a payment order, select all candidates by default (in the second step of the "Select invoices to pay" wizard).
''',
- 'installable': False,
+ 'installable': True,
}
Follow ups