Changes between Initial Version and Version 1 of Recette marquagewpois


Ignore:
Timestamp:
Jan 28, 2011 3:58:33 PM (14 years ago)
Author:
cedric
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Recette marquagewpois

    v1 v1  
     1 
     2== Insertion d'informations de marquage == 
     3 
     4La structure des fichiers crées par le logiciel wpois ne permet pas d'intégrer des informations sur les marquages.[[BR]] 
     5 
     6Pour pouvoir utiliser les informations contenues dans la colonne commentaires voici un truc.[[BR]] 
     7 
     8En supposant ici que le commentaire '''marqué''' ait été affiché dans les données, elles seront intégrées au niveau des commentaires des lots. 
     9 
     10 
     11{{{ 
     12#!sql 
     13select  'insert into iav.tj_actionmarquage_act (act_lot_identifiant,act_mqe_reference,act_action,act_org_code) values ('|| 
     14lot_identifiant||','|| 
     15'''adip'''||','|| 
     16'''LECTURE'''||','''|| 
     17cast(lot_org_code as text)||''');' 
     18from iav.t_lot_lot join iav.t_operation_ope on lot_ope_identifiant=ope_identifiant 
     19where lot_commentaires like '%marqué%' and ope_date_debut>'2010-01-01 00:00:00' 
     20}}} 
     21 
     22