-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.sqlrpgle
249 lines (189 loc) · 6.16 KB
/
test.sqlrpgle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
**free
ctl-opt option(*nodebugio:*srcstmt) dftactgrp(*no) bnddir('OUTILS':'ADHESION');
/copy h1wwadhess/qcopsrc,gettauxds
/copy h1frptechs/qcopsrc,s_errords
/copy h1frptechs/qcopsrc,s_jobEnvDs
// Définition des variables
//-------------------------
dcl-s wIdPret packed(11:0);
dcl-s wpacpac packed(11:0);
dcl-s wdateeffetpalier date;
dcl-s wgarantie packed(5:0);
dcl-s wmontantpalier packed(11:2);
dcl-s wmontanttaxe packed(11:2);
dcl-s wmontantht packed(11:2);
dcl-s wpackro packed(11:0);
dcl-s wCompagnie packed(3:0);
dcl-s wtauxTva packed(5:3);
dcl-s wcodePays packed(5:0);
dcl-s wdate8 packed(8:0);
dcl-s wMajOK int(10);
dcl-s wNbTraite int(10);
dcl-s wcurscod like(sqlcode);
//Indicateurs d'erreurs
dcl-s errInit ind;
dcl-s errTrtPaliers ind;
dcl-s errRechercheInfosPrets ind;
dcl-s errRechercheTauxTaxe ind;
dcl-s errUpdatePalier ind;
dcl-s werr ind;
dcl-s rc int(10);
dcl-s NbrOfRows int(5) inz(%elem(wds));
dcl-s i int(5);
dcl-s RowsFetched int(5) ;
dcl-s w_message char(50);
dcl-s Offset int(10) ;
dcl-s wF_IDPRET char(11);
dcl-s wF_IDGARGARANTIEINCLUSE char(5);
dcl-s wC_TAUX char(5); // h43TAU
dcl-s wprtcie char(3); //F_CIECODE
dcl-s wprtban char(5); //F_BANCODE
dcl-s wh43ggi char(5); //F_IDGARGARANTIEINCLUSE
dcl-s wprtdrt date; //C_DATEREFERENCETARIFAIRE
dcl-s wnbLecture int(5);
dcl-s wsqlcodCurseur int(5);
dcl-ds TauxTaxeDS likeds(gettauxtaxeds_t);
dcl-ds wds qualified dim(10);
F_IDPRET zoned(11:0);
F_IDGARGARANTIEINCLUSE zoned(5:0);
C_TAUX zoned(5:3);
end-ds;
// Déclaration des curseurs
//--------------------------
//Lecture du fichier des paliers
// curseur de lecture
exec sql
declare curs_01 cursor for
select prtcie, prtban, h43ggi, prtdrt from wwadhesf.adh1h43pf
inner join wwadhesf.p0amadpf on h43kmv=madkmv
inner join wwadhesf.t4pprtpf on madkro=prtkro
order by c_dateeffetpalier_avant;
monitor;
clear wds;
exsr RechercheData;
Offset += %elem(wds) ; //10
wF_IDPRET = %char(wds(i).F_IDPRET);
wF_IDGARGARANTIEINCLUSE = %char(wds(i).F_IDGARGARANTIEINCLUSE);
wC_TAUX = %char(wds(i).C_TAUX);
w_message = 'idpret: '
+ %trim( wF_IDPRET)
+ ' pacggi: '
+ %trim( wF_IDGARGARANTIEINCLUSE)
+ ' h43tau: '
+ %trim( wC_TAUX)
+ '.';
dsply (%trim(w_message));
on-error *all;
endmon;
eval *inlr = *on;
// Recherche taux taxe par garantie
//---------------------------------
begsr rechercheTauxTaxe;
errRechercheTauxTaxe = *off;
clear TauxTaxeDS;
clear rc;
clear wTauxTva;
clear wmontantht;
clear wmontanttaxe;
wdate8 = %dec(wprtdrt);
TauxTaxeDS.Pays = wcodePays;
TauxTaxeDS.Cie = wCompagnie;
TauxTaxeDS.Garantie = wgarantie;
TauxTaxeDS.DateCalcul = wdate8;
//Récupération du taux de taxe
rc = m_getTauxTaxe(TauxTaxeDS);
if rc = 0;
wTauxTva = TauxTaxeDS.TauxTaxe;
wTauxTva = (wTauxTva / 100) + 1;
wmontantHT = %dech(wmontantPalier/wTauxTva:11:2);
wmontantTaxe = wmontantPalier - wmontantHT ;
else;
errRechercheTauxTaxe = *on;
m_error('000458'
:*omit
:'errreur recherche taux de taxe pour le prêt, '
+%char(wpackro)
:'*Other'
:'INFO'
:%char(rc));
endif;
endsr;
// Recherche Data
begsr RechercheData ;
RowsFetched = 0 ;
clear wDs ;
//where cornat = 250
//and cordte = '0001-01-01'
//and cordat = :pcordat
//order by cornum, corord
//for fetch only
//limit 10;
// ouverture curseur
exec sql open CURS_01;
wsqlcodCurseur = sqlcode;
if wsqlcodCurseur = *zero; // pas erreur open curseur
clear wprtcie;
clear wprtban;
clear wh43ggi;
clear wprtdrt;
wnbLecture = 0;
// lecture curseur
exec sql
fetch next from curs_01
into :wprtcie, :wprtban, :wh43ggi, :wprtdrt;
if wsqlcodCurseur = 0;
//update C_TAUX
exec sql
update adh1h43pf
set h43tau=:wc_taux
where current of curs_01;
endif;
wsqlcodCurseur = sqlcode;
dow wsqlcodCurseur <> 100; // tant que pas fin de curseur
wnbLecture += 1;
// coder ci dessous le traitement
//dsply ('num oav : ' + %char(wcornum));
w_message = 'F_CIECODE: '
+ %trim( wprtcie)
+ ' F_BANCODE: '
+ %trim( wprtban)
+ ' F_IDGARGARANTIEINC: '
+ %trim( wh43ggi)
// + ' C_DATEREFERENCETARIFAIRE: '
// + %trim( wprtdrt)
+ '.';
dsply (%trim(w_message));
// lecture curseur
exec sql
fetch next from curs_01
into :wprtcie, :wprtban, :wh43ggi; //, :wprtdrt;
wsqlcodcurseur = sqlcode;
enddo;
select;
when wsqlcodCurseur = 0;
when wsqlcodCurseur = 100;
// sortie de boucle normale
other;
// erreur : sortie de boucle anormale
// m_error ('000190'
// :*omit
// :'erreur fetch'
// // ajouter les données de contexte (numéro oav...)
// :'*Sql'
// :'INFO'
// :' '
// );
dsply ('error');
endsl;
exec sql close CURS_01;
else; // erreur open curseur
// m_error ('000203'
// :*omit
// :'erreur open curseur CURS_01'
// :'*Sql'
// :'INFO'
// :' '
// );
dsply ('error');
endif;
endsr;