SlideShare a Scribd company logo
1 of 1
'''''Véhicule
Sql = "select
Sql = Sql
Sql = Sql
Sql = Sql
Set Rec =

Code_Voit,Desig_Voit,Serie_Voit,COUT_KM "
& " From Voiture "
& " Where Code_Soc ='" & Ubiblio.FSqlString(IdCompany) & "'"
& " Order by Code_Voit "
GetRecordSet(Sql)

'''''Charge divers
Sql = "select Code_Ch,Desig_CH"
Sql = Sql & " From FI_CHARGES_DIVERS "
Sql = Sql & " Where Code_Soc ='" & Ubiblio.FSqlString(IdCompany) & "'"
Sql = Sql & " Order by Code_Ch "
Set Rec = GetRecordSet(Sql)
'''charge article
Sql = "select
Code_Art,Desig_Art,Qte,Prix_Rvt_Art,Fodec_Art,Code_Taxe,Taux_Tva,Code_unt,Code_E
np "
Sql = Sql & " From FI_INTERVENTION_ARTICLE "
Sql = Sql & " Where Code_Soc ='" & Ubiblio.FSqlString(IdCompany) & "'"
Sql = Sql & " And NUM_INTERV ='" & Ubiblio.FSqlString(Num_Int) & "'"
''charge tache
Sql = "select CODE_OP,Desig_OP,MATRICULE,Nom_Prenom,DATE_DEBUT,HEURE_DEBUT,"
Sql = Sql & "
DATE_FIN,HEURE_FIN,NB_HR,COUT,ORDRE,Prix_Un,Fodec_Art,Code_Taxe,Taux_Tva,Code_un
t,Code_Enp "
Sql = Sql & " From FI_INTERVENTION_TACHES "
Sql = Sql & " Where Code_Soc ='" & Ubiblio.FSqlString(IdCompany) & "'"
Sql = Sql & " And NUM_INTERV ='" & Ubiblio.FSqlString(Num_Int) & "'"
Sql = Sql & " Order By Ordre"
''charge emploie
Sql = "select
MATRICULE,Nom_Prenom,DATE_DEBUT,HEURE_DEBUT,DATE_FIN,HEURE_FIN,NB_HR,COUT,COUT_G
"
Sql = Sql & " From FI_INTERVENTION_Employe "
Sql = Sql & " Where Code_Soc ='" & Ubiblio.FSqlString(IdCompany) & "'"
Sql = Sql & " And NUM_INTERV ='" & Ubiblio.FSqlString(Num_Int) & "'"
Sql = Sql & " Order By HEURE_DEBUT"

More Related Content

Similar to Aa

#includeiostream #includecmath #includestringusing na.pdf
 #includeiostream #includecmath #includestringusing na.pdf #includeiostream #includecmath #includestringusing na.pdf
#includeiostream #includecmath #includestringusing na.pdfanuradhaartjwellery
 
computer science project on movie booking system
computer science project on movie booking systemcomputer science project on movie booking system
computer science project on movie booking systemAnurag Yadav
 
R, Scikit-Learn and Apache Spark ML - What difference does it make?
R, Scikit-Learn and Apache Spark ML - What difference does it make?R, Scikit-Learn and Apache Spark ML - What difference does it make?
R, Scikit-Learn and Apache Spark ML - What difference does it make?Villu Ruusmann
 
Semantic search in databases
Semantic search in databasesSemantic search in databases
Semantic search in databasesTomáš Drenčák
 
I need help to modify my code according to the instructions- Modify th.pdf
I need help to modify my code according to the instructions- Modify th.pdfI need help to modify my code according to the instructions- Modify th.pdf
I need help to modify my code according to the instructions- Modify th.pdfpnaran46
 
Mongo db world 2014 billrun
Mongo db world 2014   billrunMongo db world 2014   billrun
Mongo db world 2014 billrunMongoDB
 
I need this code, to show ALL inventory items, then with the remove .pdf
I need this code, to show ALL inventory items, then with the remove .pdfI need this code, to show ALL inventory items, then with the remove .pdf
I need this code, to show ALL inventory items, then with the remove .pdfaggarwalshoppe14
 

Similar to Aa (8)

#includeiostream #includecmath #includestringusing na.pdf
 #includeiostream #includecmath #includestringusing na.pdf #includeiostream #includecmath #includestringusing na.pdf
#includeiostream #includecmath #includestringusing na.pdf
 
computer science project on movie booking system
computer science project on movie booking systemcomputer science project on movie booking system
computer science project on movie booking system
 
Satchmo
SatchmoSatchmo
Satchmo
 
R, Scikit-Learn and Apache Spark ML - What difference does it make?
R, Scikit-Learn and Apache Spark ML - What difference does it make?R, Scikit-Learn and Apache Spark ML - What difference does it make?
R, Scikit-Learn and Apache Spark ML - What difference does it make?
 
Semantic search in databases
Semantic search in databasesSemantic search in databases
Semantic search in databases
 
I need help to modify my code according to the instructions- Modify th.pdf
I need help to modify my code according to the instructions- Modify th.pdfI need help to modify my code according to the instructions- Modify th.pdf
I need help to modify my code according to the instructions- Modify th.pdf
 
Mongo db world 2014 billrun
Mongo db world 2014   billrunMongo db world 2014   billrun
Mongo db world 2014 billrun
 
I need this code, to show ALL inventory items, then with the remove .pdf
I need this code, to show ALL inventory items, then with the remove .pdfI need this code, to show ALL inventory items, then with the remove .pdf
I need this code, to show ALL inventory items, then with the remove .pdf
 

Aa

  • 1. '''''Véhicule Sql = "select Sql = Sql Sql = Sql Sql = Sql Set Rec = Code_Voit,Desig_Voit,Serie_Voit,COUT_KM " & " From Voiture " & " Where Code_Soc ='" & Ubiblio.FSqlString(IdCompany) & "'" & " Order by Code_Voit " GetRecordSet(Sql) '''''Charge divers Sql = "select Code_Ch,Desig_CH" Sql = Sql & " From FI_CHARGES_DIVERS " Sql = Sql & " Where Code_Soc ='" & Ubiblio.FSqlString(IdCompany) & "'" Sql = Sql & " Order by Code_Ch " Set Rec = GetRecordSet(Sql) '''charge article Sql = "select Code_Art,Desig_Art,Qte,Prix_Rvt_Art,Fodec_Art,Code_Taxe,Taux_Tva,Code_unt,Code_E np " Sql = Sql & " From FI_INTERVENTION_ARTICLE " Sql = Sql & " Where Code_Soc ='" & Ubiblio.FSqlString(IdCompany) & "'" Sql = Sql & " And NUM_INTERV ='" & Ubiblio.FSqlString(Num_Int) & "'" ''charge tache Sql = "select CODE_OP,Desig_OP,MATRICULE,Nom_Prenom,DATE_DEBUT,HEURE_DEBUT," Sql = Sql & " DATE_FIN,HEURE_FIN,NB_HR,COUT,ORDRE,Prix_Un,Fodec_Art,Code_Taxe,Taux_Tva,Code_un t,Code_Enp " Sql = Sql & " From FI_INTERVENTION_TACHES " Sql = Sql & " Where Code_Soc ='" & Ubiblio.FSqlString(IdCompany) & "'" Sql = Sql & " And NUM_INTERV ='" & Ubiblio.FSqlString(Num_Int) & "'" Sql = Sql & " Order By Ordre" ''charge emploie Sql = "select MATRICULE,Nom_Prenom,DATE_DEBUT,HEURE_DEBUT,DATE_FIN,HEURE_FIN,NB_HR,COUT,COUT_G " Sql = Sql & " From FI_INTERVENTION_Employe " Sql = Sql & " Where Code_Soc ='" & Ubiblio.FSqlString(IdCompany) & "'" Sql = Sql & " And NUM_INTERV ='" & Ubiblio.FSqlString(Num_Int) & "'" Sql = Sql & " Order By HEURE_DEBUT"