Advertisement
fabiobozzo

Inserimento ordini fornitore da CSV

Jul 6th, 2015
444
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <cffile action="read" file="#expandPath('/admin/_test/ofspazio.csv')#" variable="csvfile" />
  2.  
  3. <cfloop index="index" list="#csvfile#" delimiters="#chr(10)##chr(13)#">
  4.     <cfif listLen(index) GTE 7 AND isNumeric(listGetAt(index,6)) AND isNumeric(listGetAt(index,7))>
  5.         <cfloop from="1" to="#listGetAt(index,7)#" step="1" index="i">
  6.             <cfquery datasource="spazio_visione">
  7.                 INSERT INTO
  8.                     ordini_al_fornitore
  9.                 SET  
  10.                     data_ordine = '2015-07-06',
  11.                     barcode = '#listGetAt(index,6)#',
  12.                     qta_ordinata = 1,
  13.                     fornitore = 'LUXOTTICA',
  14.                     ana_negozi = 2,
  15.                     ana_negozi_dest = 1,
  16.                     gg_attesa = 50,
  17.                     data_consegna = '2015-08-25',
  18.                     id_operatore = 120,
  19.                     note = '_automatico',
  20.                     data_aggiornamento = '2015-07-06 00:00:00',
  21.                     utente = 'lux.cristina',
  22.                     ana_tipo_ordine =2,
  23.                     priorita=2,
  24.                     qta_consegnata = 0,
  25.                     prezzo_ordine = 109.00,
  26.                     consegnato_tipo_documento = 'B'
  27.             </cfquery>
  28.         </cfloop>
  29.     </cfif>
  30.    
  31. </cfloop>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement