client-barcode: Save empty bulkbuy going over the line
This commit is contained in:
parent
156a0df88d
commit
64ce18cb74
|
@ -84,6 +84,8 @@ def buy_item(item_id, what_about_it, user_name):
|
|||
def bulk_buy(buycommands, user_name):
|
||||
item_ids = tuple(e.item_id() for e in buycommands if e.includes_commodity())
|
||||
deposit_ids = tuple(e.item_id() for e in buycommands if e.includes_deposit())
|
||||
if not item_ids and not deposit_ids:
|
||||
return
|
||||
|
||||
request_dict = {
|
||||
'user':user_name,
|
||||
|
|
Loading…
Reference in New Issue