[REF] Refactored the fix. It now uses the add_payment method to ensure that the back-end and front-end behaviors are the same.

bzr revid: tde@openerp.com-20120213161201-xsc581kb4rdc65a5
This commit is contained in:
Thibault Delavallée 2012-02-13 17:12:01 +01:00
parent 413e09e5fe
commit bd2e58fe4f
1 changed files with 14 additions and 10 deletions

View File

@ -55,18 +55,22 @@ class pos_order(osv.osv):
#_logger.info("orders: %r", orders)
list = []
for order in orders:
# set account_id using property_account_receivable if defined
property_obj = self.pool.get('ir.property')
account_def = property_obj.get(cr, uid, 'property_account_receivable', 'res.partner', context=context)
account_id = (account_def and account_def.id) or False
for statement_val in order['statement_ids']:
statement_val[2]['account_id'] = account_id or statement_val[2]['account_id']
# create pos order
# order :: {'name': 'Order 1329148448062', 'amount_paid': 9.42, 'lines': [[0, 0, {'discount': 0, 'price_unit': 1.46, 'product_id': 124, 'qty': 5}], [0, 0, {'discount': 0, 'price_unit': 0.53, 'product_id': 62, 'qty': 4}]], 'statement_ids': [[0, 0, {'journal_id': 7, 'amount': 9.42, 'name': '2012-02-13 15:54:12', 'account_id': 12, 'statement_id': 21}]], 'amount_tax': 0, 'amount_return': 0, 'amount_total': 9.42}
order_obj = self.pool.get('pos.order')
# get statements out of order because they will be generated with add_payment to ensure
# the module behavior is the same when using the front-end or the back-end
statement_ids = order.pop('statement_ids')
order_id = self.create(cr, uid, order, context)
list.append(order_id)
# mark as paid
wf_service = netsvc.LocalService("workflow")
wf_service.trg_validate(uid, 'pos.order', order_id, 'paid', cr)
# call add_payment; refer to wizard/pos_payment for data structure
# add_payment launches the 'paid' signal to advance the workflow to the 'paid' state
data = {
'journal': statement_ids[0][2]['journal_id'],
'amount': order['amount_paid'],
'payment_name': order['name'],
'payment_date': statement_ids[0][2]['name'],
}
order_obj.add_payment(cr, uid, order_id, data, context=context)
return list
def unlink(self, cr, uid, ids, context=None):