mirror of
https://bitbucket.org/presik/trytonpsk-sale_pos.git
synced 2023-12-14 07:13:02 +01:00
minor fix
This commit is contained in:
parent
bb53a9c713
commit
bd8457c1ca
1 changed files with 1 additions and 1 deletions
2
sale.py
2
sale.py
|
@ -109,7 +109,7 @@ class Sale(metaclass=PoolMeta):
|
|||
if invoice.state in ('posted', 'paid'):
|
||||
continue
|
||||
# cls.recheck_taxes(sale)
|
||||
if hasatrr(configuration, 'password_force_assign') and configuration.password_force_assign and sale.shipment_state == 'none':
|
||||
if hasattr(configuration, 'password_force_assign') and configuration.password_force_assign and sale.shipment_state == 'none':
|
||||
cls.validate_stock(sale)
|
||||
cls.process_pos(sale)
|
||||
super(Sale, cls).process(sales)
|
||||
|
|
Loading…
Reference in a new issue