Browse Source

[FIX] pos_autoreconcile: Avoid pylint error

pull/391/head
Pedro M. Baeza 5 years ago
parent
commit
5b8fc77817
  1. 3
      pos_autoreconcile/model/point_of_sale.py

3
pos_autoreconcile/model/point_of_sale.py

@ -1,4 +1,4 @@
# -*- encoding: utf-8 -*-
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
@ -26,6 +26,7 @@ from openerp import models
class POSOrder(models.Model):
_inherit = "pos.order"
# pylint: disable=R8110
def _create_account_move_line(self, cr, uid, ids, session=None,
move_id=None, context=None):
to_ret = super(POSOrder, self)._create_account_move_line(

Loading…
Cancel
Save