~unifield-team/unifield-wm/us-671-homere

« back to all changes in this revision

Viewing changes to msf_doc_import/wizard/__init__.py

  • Committer: Quentin THEURET
  • Date: 2013-11-15 10:43:42 UTC
  • mto: (1908.7.3 unifield-wm)
  • mto: This revision was merged to the branch mainline in revision 1934.
  • Revision ID: qt@tempo-consulting.fr-20131115104342-yebn2yzvsqjof4ng
UTP-101 [IMP] Product list : Change the product list import with file behavior

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
(_('Product Code'), 'string'), (_('Product Description'), 'string'), (_('UoM'), 'string'), (_('Product Qty'), 'number'), (_('Threshold value'), 'number')]
88
88
THRESHOLD_LINE_COLUMNS_FOR_IMPORT = [x for (x,y) in THRESHOLD_COLUMNS_HEADER_FOR_IMPORT]
89
89
 
 
90
PRODUCT_LIST_COLUMNS_HEADER_FOR_IMPORT = [
 
91
(_('Product Code'), 'string'), (_('Product Description'), 'string'), (_('Comment'), 'string')]
 
92
PRODUCT_LIST_COLUMNS_FOR_IMPORT = [x for (x,y) in PRODUCT_LIST_COLUMNS_HEADER_FOR_IMPORT]
 
93
 
90
94
import wizard_import_po
91
95
import stock_partial_picking
92
96
import wizard_import_po_line
99
103
import wizard_import_auto_supply_line
100
104
import wizard_import_order_cycle_line
101
105
import wizard_import_threshold_value_line
 
106
import wizard_import_product_list