Commit a76dff2f authored by Yoshinori Okuji's avatar Yoshinori Okuji

Add balance_transaction_line_type_list. Add Balance Transaction and Balance Transaction Line.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@1050 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent dc52f618
......@@ -59,6 +59,7 @@ delivery_type_list = ('Delivery',
'Sale Invoice Transaction',
'Production Packing List',
'Production Report',
'Balance Transaction',
)
order_or_delivery_type_list = tuple(list(order_type_list) + list(delivery_type_list))
......@@ -106,7 +107,8 @@ delivery_movement_type_list = (
'Production Report Cell',
'Production Packing List Line',
'Container Line',
'Container Cell'
'Container Cell',
'Balance Transaction Line',
)
order_or_delivery_or_invoice_movement_type_list = tuple(list(order_movement_type_list) + \
......@@ -136,6 +138,9 @@ discount_type_list = ('Remise',)
payment_condition_type_list = ('Condition Paiement',)
# This transaction lines are special because destination must be None.
balance_transaction_line_type_list = ('Balance Transaction Line',)
# Bellow, we only use order_or_delivery_movement_type_list for movements
# Since we simulation only acquires from orders or deliveries
movement_or_order_type_list = tuple(list(acquisition_movement_type_list) + list(order_type_list))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment