Bug fixes.
This commit is contained in:
parent
50e4083015
commit
3bb290cd0e
|
@ -65,12 +65,14 @@ def inventory(soup):
|
|||
print('Total use of this storage space: {}'.format(quantity_total))
|
||||
print('-----')
|
||||
|
||||
print('Item total summary:')
|
||||
for item in item_tracking.items():
|
||||
item_code = item[0]
|
||||
item_name = id_dict[item_code]
|
||||
item_quantity = item[1]
|
||||
print('{:04} - {} - {}'.format(item_code, item_name, item_quantity))
|
||||
|
||||
print('Item total summary:')
|
||||
for item in item_tracking.items():
|
||||
item_code = item[0]
|
||||
item_name = id_dict[item_code]
|
||||
item_quantity = item[1]
|
||||
print('{:04} - {} - {}'.format(item_code, item_name, item_quantity))
|
||||
|
||||
|
||||
|
||||
def main():
|
||||
|
|
Loading…
Reference in New Issue