Public bug reported:

Some checks have been added to stovk_partial_picking/do_partial.py

Nevertheless now you cannot process a qty = 0 because of the following
check:

                #Adding a check whether any move line contains qty less than 
zero
                if calc_qty <= 0:
It should be
                if calc_qty < 0:

** Affects: openobject-addons
     Importance: Undecided
         Status: New

-- 
You received this bug notification because you are a member of C2C
OERPScenario, which is subscribed to the OpenERP Project Group.
https://bugs.launchpad.net/bugs/824327

Title:
  Cannot process partial picking with 0 value

Status in OpenERP Modules (addons):
  New

Bug description:
  Some checks have been added to stovk_partial_picking/do_partial.py

  Nevertheless now you cannot process a qty = 0 because of the following
  check:

                  #Adding a check whether any move line contains qty less than 
zero
                  if calc_qty <= 0:
  It should be
                  if calc_qty < 0:

To manage notifications about this bug go to:
https://bugs.launchpad.net/openobject-addons/+bug/824327/+subscriptions

_______________________________________________
Mailing list: https://launchpad.net/~c2c-oerpscenario
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~c2c-oerpscenario
More help   : https://help.launchpad.net/ListHelp

Reply via email to