~unifield-team/unifield-wm/us-927

« back to all changes in this revision

Viewing changes to msf_doc_import/wizard/wizard_import_tender_line.py

  • Committer: Olivier DOSSMANN
  • Date: 2013-03-22 13:35:49 UTC
  • mto: This revision was merged to the branch mainline in revision 1589.
  • Revision ID: od@tempo-consulting.fr-20130322133549-vnmjtnuysyee7q3e
UF-1894 [MOVE] msf_supply_doc_import to msf_doc_import directory

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
from spreadsheet_xml.spreadsheet_xml import SpreadsheetXML
27
27
# For the the time logger function------
28
28
import time
29
 
from msf_supply_doc_import import check_line
30
 
from msf_supply_doc_import.wizard import TENDER_COLUMNS_FOR_IMPORT as columns_for_tender_line_import
 
29
from msf_doc_import import check_line
 
30
from msf_doc_import.wizard import TENDER_COLUMNS_FOR_IMPORT as columns_for_tender_line_import
31
31
 
32
32
class wizard_import_tender_line(osv.osv_memory):
33
33
    _name = 'wizard.import.tender.line'
103
103
                    'error_list': [],
104
104
                    'warning_list': [],
105
105
                    'to_correct_ok': False,
106
 
                    'default_code': obj_data.get_object_reference(cr, uid, 'msf_supply_doc_import', 'product_tbd')[1],
107
 
                    'uom_id': obj_data.get_object_reference(cr, uid, 'msf_supply_doc_import', 'uom_tbd')[1],
 
106
                    'default_code': obj_data.get_object_reference(cr, uid, 'msf_doc_import', 'product_tbd')[1],
 
107
                    'uom_id': obj_data.get_object_reference(cr, uid, 'msf_doc_import', 'uom_tbd')[1],
108
108
                    'product_qty': 1,
109
109
                }
110
110
                line_num += 1