-
Notifications
You must be signed in to change notification settings - Fork 0
/
report-echeance-restante.php
256 lines (189 loc) · 7.04 KB
/
report-echeance-restante.php
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
250
251
252
253
254
255
256
<?php
/*
* Ticket #371
Nous avons besoin d'avoir un rapport supplémentaire pour la gestion de notre trésorerie.
Celui-ci est dans le même esprit que le rapport des CCA sauf qu'au lieu de se baser sur les factures qui sont émises,
ce rapport devra nous récapituler les échéances restantes de chaque dossier ADOSSE et MANDATE.
Les colonnes sont :
- Num Affaire
- Type de Financement
- Client
- Code client
- Référence du contrat leaser
- Leaser
- Code Leaser
- Date de l'Echéance ou date de l'écriture
- Libellé Echéance
- Périodicité
- Montant de l'échéance à venir
- Date de début de l'échéance (qui doit être égale je pense à la date d'échéance)
- Date de Fin de l'échéance
*
*
*/
require('config.php');
set_time_limit(0);
ini_set('memory_limit','512M');
require('class/dossier.class.php');
require('class/affaire.class.php');
require('class/grille.class.php');
$ATMdb = new TPDOdb;
$date_debut = __get('date_debut','');
$date_fin = __get('date_fin','');
$sql = "SELECT a.reference NumAffaire, d.rowid as 'idDossier',f.duree,f.numero_prochaine_echeance as 'numero_prochaine_echeance', a.type_financement TypeFin, client.nom Client, client.code_compta CodeClient, f.reference RefContratLeaser, leaser.nom Leaser, leaser.code_compta_fournisseur CodeLeaser, f.periodicite Periodicite
FROM ".MAIN_DB_PREFIX."fin_dossier_financement f
LEFT JOIN ".MAIN_DB_PREFIX."fin_dossier d ON d.rowid = f.fk_fin_dossier
LEFT JOIN ".MAIN_DB_PREFIX."fin_dossier_affaire da ON da.fk_fin_dossier = d.rowid
LEFT JOIN ".MAIN_DB_PREFIX."fin_affaire a ON a.rowid = da.fk_fin_affaire
LEFT JOIN ".MAIN_DB_PREFIX."societe leaser ON leaser.rowid = f.fk_soc
LEFT JOIN ".MAIN_DB_PREFIX."societe client ON client.rowid = a.fk_soc
WHERE f.type = 'LEASER'
AND a.type_financement IN ('ADOSSEE', 'MANDATEE') AND f.date_solde < '1970-00-00'";
if(!empty($date_debut)) {
$sql.=" AND ff.datef BETWEEN STR_TO_DATE(".$date_debut.", '%d/%m/%Y') AND STR_TO_DATE(".$date_fin.", '%d/%m/%Y') ";
}
$ATMdb->Execute($sql);
$Tab = $ATMdb->Get_All();
$TResult = array();
$TLeaser = array();
foreach($Tab as &$row) {
/*
*
*
- Date de l'Echéance ou date de l'écriture
- Libellé Echéance
*** - Périodicité
- Montant de l'échéance à venir
- Date de début de l'échéance (qui doit être égale je pense à la date d'échéance)
- Date de Fin de l'échéance
*/
$d=new TFin_dossier;
$d->load($ATMdb, $row->idDossier ,false);
$TEcheance = $d->echeancier($ATMdb,'LEASER', $row->numero_prochaine_echeance ,true,false);
$iPeriode = $d->financementLeaser->getiPeriode();
foreach($TEcheance['ligne'] as $k=>$echeance) {
$n_echeance = $row->numero_prochaine_echeance+$k;
$date_fin = '';
$dt = DateTime::createFromFormat('d/m/Y', $echeance['date']);
if($dt) $date_fin = date('d/m/Y', strtotime('+'.$iPeriode.' month -1day' , $dt->getTimestamp() ) );
$TResult[] = array(
'NumAffaire'=>$row->NumAffaire
,'TypeFin'=>$row->TypeFin
,'Client'=>$row->Client
, 'CodeClient'=>$row->CodeClient
, 'RefContratLeaser'=>$row->RefContratLeaser
, 'Leaser'=>$row->Leaser
, 'CodeLeaser'=>$row->CodeLeaser
, 'dateEcheance'=>$echeance['date']
, 'LibelleEcheance'=>'Echeance n '.$n_echeance
, 'MontantEcheance'=>$echeance['loyerHT']
, 'Periodicite'=>$row->Periodicite
, 'dateEcheanceDeb'=>$echeance['date']
, 'dateEcheanceFin'=>$date_fin
);
if($dt->getTimestamp() < strtotime('+6 months')) {
$month = date('Y/m', $dt->getTimestamp());
$TMonth[$month] += $echeance['loyerHT'];
$TLeaser[$row->Leaser][$month] += $echeance['loyerHT'];
}
}
}
if(isset($_REQUEST['download'])) {
$first = true;
foreach($TResult as &$ligne) {
if( $first ) {
foreach($ligne as $key=>$value) $TEntete[]=$key;
$first=false;
}
foreach($ligne as $key=>&$value) { $value = strip_tags($value); }
}
header("Content-disposition: attachment; filename=".$_REQUEST['rapport'].'.csv');
header("Content-Type: application/force-download");
header("Content-Transfer-Encoding: application/octet-stream");
header("Pragma: no-cache");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0, public");
header("Expires: 0");
print implode(';', $TEntete)."\n";
foreach($TResult as $ligne) {
print implode(';', $ligne)."\n";
}
exit;
}
$aff=new TFin_affaire;
llxHeader('','Rapport');
_display_recap_by_leaser($TLeaser, $TMonth);
$r=new TListviewTBS('lreport');
$form=new TFormCore('auto', 'formReport','post');
echo $form->hidden('download', '1' );
echo $form->hidden('rapport', 'echeance-restante' );
echo $form->btsubmit('Télécharger au format CSV', 'btsub');
$form->end();
print $r->renderArray($ATMdb, $TResult, array(
'limit'=>array(
'page'=>1
,'nbLine'=>'100'
)
,'liste'=>array(
'titre'=>"Echéances futures des dossiers LEASER"
,'image'=>img_picto('','title.png', '', 0)
,'picto_precedent'=>img_picto('','previous.png', '', 0)
,'picto_suivant'=>img_picto('','next.png', '', 0)
,'order_down'=>img_picto('','1downarrow.png', '', 0)
,'order_up'=>img_picto('','1uparrow.png', '', 0)
,'noheader'=>FALSE
,'messageNothing'=>"Il n'y a aucune échéance"
,'picto_search'=>img_picto('','search.png', '', 0)
)
,'title'=>array(
'NumAffaire'=>'Numéro d\'affaire'
,'TypeFin'=>'Type de financement'
,'RefContratLeaser'=>'Contrat Leaser'
,'dateEcheance'=>'Date échéance'
,'LibelleEcheance'=>'Libellé'
,'MontantEcheance'=>'Montant'
,'dateEcheanceDeb'=>'Début de l\'échéance'
,'dateEcheanceFin'=>'Fin de l\'échéance'
)
));
llxFooter();
function _display_recap_by_leaser($TLeaser, $TMonth) {
ksort($TMonth);
ksort($TLeaser);
print '<table class="border" width="100%">';
// Titre
print '<tr class="liste_titre">';
print '<td>Leaser</td>';
foreach($TMonth as $m => $total) {
print '<td>';
print $m;
print '</td>';
}
print '</tr>';
// Data
$class = 'pair';
foreach($TLeaser as $leaser => $data) {
$class = $class == 'pair' ? 'impair' : 'pair';
print '<tr class="'.$class.'"><td>'.$leaser.'</td>';
foreach($TMonth as $m => $total) {
print '<td align="right">';
if(!empty($data[$m])) {
print price($data[$m]);
} else {
print price(0);
}
print '</td>';
}
print '</tr>';
}
// Total
print '<tr class="liste_titre">';
print '<td>Total</td>';
foreach($TMonth as $m => $total) {
print '<td align="right">';
print price($total);
print '</td>';
}
print '</tr>';
print '</table>';
print '<br>';
}