You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sale_automatic_workflow tries to reconcile entries that have not the same accounts or partners, resulting in errors. It must skip them.
The errors appear in the logs until the lines are reconciled manually.
From the logs:
2014-08-29 13:30:00,973 18012 ERROR openerp_trunk_qoqa openerp.addons.sale_automatic_workflow.automatic_workflow_job: Error during an automatic workflow action.
Traceback (most recent call last):
File "/home/gbaconnier/dev/parts/e-commerce/sale_automatic_workflow/automatic_workflow_job.py", line 65, in commit
yield
File "/home/gbaconnier/dev/parts/e-commerce/sale_automatic_workflow/automatic_workflow_job.py", line 103, in _reconcile_invoices
context=context)
File "/home/gbaconnier/dev/parts/e-commerce/sale_automatic_workflow/invoice.py", line 153, in reconcile_invoice
self._reconcile_invoice(cr, uid, invoice, context=context)
File "/home/gbaconnier/dev/parts/e-commerce/sale_automatic_workflow/invoice.py", line 135, in _reconcile_invoice
move_line_obj.reconcile(cr, uid, line_ids, context=context)
File "/home/gbaconnier/dev/parts/addons/account/account_move_line.py", line 938, in reconcile
'line_partial_ids': map(lambda x: (3, x, False), ids)
File "/home/gbaconnier/dev/parts/connector/connector/producer.py", line 42, in create
record_id = create_original(self, cr, uid, vals, context=context)
File "/home/gbaconnier/dev/parts/server/openerp/osv/orm.py", line 4543, in create
self._validate(cr, user, [id_new], context)
File "/home/gbaconnier/dev/parts/server/openerp/osv/orm.py", line 1557, in _validate
raise except_orm('ValidateError', '\n'.join(error_msgs))
except_orm: ('ValidateError', u'Une erreur est apparue lors de la validation du/des champ(s) line_id: You can only reconcile journal items with the same partner.')
2014-08-29 13:30:04,675 18012 ERROR openerp_trunk_qoqa openerp.addons.sale_automatic_workflow.automatic_workflow_job: Error during an automatic workflow action.
Traceback (most recent call last):
File "/home/gbaconnier/dev/parts/e-commerce/sale_automatic_workflow/automatic_workflow_job.py", line 65, in commit
yield
File "/home/gbaconnier/dev/parts/e-commerce/sale_automatic_workflow/automatic_workflow_job.py", line 103, in _reconcile_invoices
context=context)
File "/home/gbaconnier/dev/parts/e-commerce/sale_automatic_workflow/invoice.py", line 153, in reconcile_invoice
self._reconcile_invoice(cr, uid, invoice, context=context)
File "/home/gbaconnier/dev/parts/e-commerce/sale_automatic_workflow/invoice.py", line 135, in _reconcile_invoice
move_line_obj.reconcile(cr, uid, line_ids, context=context)
File "/home/gbaconnier/dev/parts/addons/account/account_move_line.py", line 857, in reconcile
raise osv.except_osv(_('Error'), _('Entries are not of the same account or already reconciled ! '))
The text was updated successfully, but these errors were encountered:
guewen
added a commit
to guewen/e-commerce
that referenced
this issue
Sep 15, 2014
sale_automatic_workflow tries to reconcile entries that have not the same accounts or partners, resulting in errors. It must skip them.
The errors appear in the logs until the lines are reconciled manually.
From the logs:
The text was updated successfully, but these errors were encountered: