Ein oben angedocktes, auf CSS basierendes Menü hinzugefügt.
[kivitendo-erp.git] / bin / mozilla / datev.pl
1 #=====================================================================
2 # Lx-Office ERP
3 # Copyright (c) 2004
4 #
5 #  Author: Philip Reetz
6 #   Email: p.reetz@linet-services.de
7 #     Web: http://www.lx-office.org
8 #
9 #
10 # This program is free software; you can redistribute it and/or modify
11 # it under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 2 of the License, or
13 # (at your option) any later version.
14 #
15 # This program is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write to the Free Software
21 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #======================================================================
23 #
24 # Datev export module
25 #
26 #======================================================================
27
28 use POSIX qw(strftime getcwd);
29 use Archive::Zip qw(:ERROR_CODES :CONSTANTS);
30
31 use SL::Common;
32 use SL::DATEV;
33
34 1;
35
36 # end of main
37
38 sub continue { &{ $form->{nextsub} } }
39
40 sub export {
41   $lxdebug->enter_sub();
42
43   $form->{title} = $locale->text("DATEX - Export Assistent");
44
45   DATEV->get_datev_stamm(\%myconfig, \%$form);
46   $form->header;
47
48   print qq|
49 <body>
50
51 <form method=post action=$form->{script}>
52
53
54 <table width=100%>
55   <tr>
56     <th class=listtop>$form->{title}</th>
57   </tr>
58   <tr>
59     <th align=left>| . $locale->text("DATEV Angaben") . qq|</th>
60   </tr>
61   <tr height="5"></tr>
62   <tr valign=top>
63     <td>
64       <table>
65         <tr>
66           <td align=left nowrap>| . $locale->text("Beraternummer") . qq|</td>
67           <td><input name=beraternr size=10 maxlength=7 value="$form->{beraternr}"></td>
68
69           <td align=left nowrap>| . $locale->text("DFV-Kennzeichen") . qq|</td>
70           <td><input name=dfvkz size=5 maxlength=2 value="$form->{dfvkz}"></td>
71         </tr>
72         <tr>
73           <td align=left nowrap>| . $locale->text("Beratername") . qq|</td>
74           <td><input name=beratername size=10 maxlength=9 value="$form->{beratername}"></td>
75
76           <td align=left nowrap>| . $locale->text("Password") . qq|</td>
77           <td><input name=passwort size=5 maxlength=4 value="$form->{passwort}"></td>
78         </tr>
79         <tr>
80           <td align=left nowrap>| . $locale->text("Mandantennummer") . qq|</td>
81           <td><input name=mandantennr size=10 maxlength=5 value="$form->{mandantennr}"></td>
82
83           <td align=left nowrap>| . $locale->text("Datenträgernummer") . qq|</td>
84           <td><input name=datentraegernr size=5 maxlength=3 value="$form->{datentraegernr}"></td>
85         </tr>
86         <tr>
87           | . # OBE-Export noch nicht implementiert! <td><input checked name=kne type=checkbox class=checkbox value=1> | . $locale->text("Kontonummernerweiterung (KNE)") . qq|</td>
88     qq|<td><input type="hidden" name="kne" value="1"></td>
89           <td></td>
90
91           <td align=left nowrap>| . $locale->text("Abrechnungsnummer") . qq|</td>
92           <td><input name=abrechnungsnr size=5 maxlength=3 value="$form->{abrechnungsnr}"></td>
93         </tr>
94
95         <tr>
96           <td><input name=exporttype type=radio class=radio value=0 checked> |
97     . $locale->text("Export Buchungsdaten") . qq|</td>
98           <td></td>
99
100           <td><input name=exporttype type=radio class=radio value=1> |
101     . $locale->text("Export Stammdaten") . qq|</td>
102           <td></td>
103         </td>
104       </table>
105     </td>
106   </tr>
107   <tr>
108     <td><hr size=3 noshade></td>
109   </tr>
110 </table>
111
112 <input type=hidden name=nextsub value=export2>
113
114 <input type=hidden name=path value=$form->{path}>
115 <input type=hidden name=login value=$form->{login}>
116 <input type=hidden name=password value=$form->{password}>
117
118 <br>
119 <input type=submit class=submit name=action value="|
120     . $locale->text('Continue') . qq|">
121 </form>
122
123 </body>
124 </html>
125 |;
126   $lxdebug->leave_sub();
127 }
128
129 sub export2 {
130   $lxdebug->enter_sub();
131
132   if ($form->{exporttype} == 0) {
133     &export_bewegungsdaten();
134   } else {
135     &export_stammdaten();
136   }
137   $lxdebug->leave_sub();
138 }
139
140 sub export_bewegungsdaten {
141   $lxdebug->enter_sub();
142
143   $form->{title} = $locale->text("DATEX - Export Assistent");
144
145   $form->{allemonate} =
146       qq|<option value=1>|
147     . $locale->text('January')
148     . qq|</option>
149                          <option value=2>|
150     . $locale->text('February') . qq|</option>
151                          <option value=3>|
152     . $locale->text('March') . qq|</option>
153                          <option value=4>|
154     . $locale->text('April') . qq|</option>
155                          <option value=5>|
156     . $locale->text('May') . qq|</option>
157                          <option value=6>|
158     . $locale->text('June') . qq|</option>
159                          <option value=7>|
160     . $locale->text('July') . qq|</option>
161                          <option value=8>|
162     . $locale->text('August') . qq|</option>
163                          <option value=9>|
164     . $locale->text('September') . qq|</option>
165                          <option value=10>|
166     . $locale->text('October') . qq|</option>
167                          <option value=11>|
168     . $locale->text('November') . qq|</option>
169                          <option value=12>|
170     . $locale->text('December') . qq|</option>|;
171
172   $form->{allequartale} =
173       qq|<option selected value=1>|
174     . $locale->text('I')
175     . qq|</option>
176                          <option value=2>| . $locale->text('II') . qq|</option>
177                          <option value=3>|
178     . $locale->text('III') . qq|</option>
179                          <option value=4>|
180     . $locale->text('IV') . qq|</option>|;
181   $form->header;
182
183   print qq|
184 <body>
185
186 <form method=post action=$form->{script}>
187
188
189 <table width=100%>
190   <tr>
191     <th class=listtop>$form->{title}</th>
192   </tr>
193   <tr>
194     <th align=left>| . $locale->text("Zeitraum") . qq|</th>
195   </tr>
196   <tr height="5"></tr>
197   <tr valign=top>
198     <td>
199       <table>
200         <tr>
201           <td align=left><input checked name=zeitraum class=radio type=radio value=monat>&nbsp;</td><td align=left>|
202     . $locale->text('Monat') . qq|</td>
203           <td align=left></td>
204           <td align=left></td>
205           <td align=left><select name=monat>$form->{allemonate}</select></td>
206         </tr>
207         <tr>
208           <td align=left><input name=zeitraum class=radio type=radio value=quartal>&nbsp;</td><td align=left>|
209     . $locale->text('Quartal') . qq|</td>
210           <td align=left></td>
211           <td align=left></td>
212           <td align=left><select name=quartal>$form->{allequartale}</select></td>
213         </tr>
214         <tr>
215           <td align=left><input name=zeitraum class=radio type=radio value=zeit>&nbsp;</td><td align=left>|
216     . $locale->text('Datum von') . qq|</td>
217           <td align=left><input name=transdatefrom size=8></td>
218           <td align=left>| . $locale->text('bis') . qq|</td>
219           <td align=left><input name=transdateto size=8></td>
220         </tr>
221       </table>
222     </td>
223   </tr>
224   <tr>
225     <td><hr size=3 noshade></td>
226   </tr>
227 </table>
228
229 <input type=hidden name=beraternr value="$form->{beraternr}">
230 <input type=hidden name=dfvkz value="$form->{dfvkz}">
231 <input type=hidden name=beratername value="$form->{beratername}">
232 <input type=hidden name=passwort value="$form->{passwort}">
233 <input type=hidden name=mandantennr value="$form->{mandantennr}">
234 <input type=hidden name=datentraegernr value="$form->{datentraegernr}">
235 <input type=hidden name=kne value="$form->{kne}">
236 <input type=hidden name=abrechnungsnr value="$form->{abrechnungsnr}">
237
238 <input type=hidden name=exporttype value="$form->{exporttype}">
239
240 <input type=hidden name=nextsub value=export3>
241
242 <input type=hidden name=path value=$form->{path}>
243 <input type=hidden name=login value=$form->{login}>
244 <input type=hidden name=password value=$form->{password}>
245
246 <br>
247 <input type=submit class=submit name=action value="|
248     . $locale->text('Continue') . qq|">
249 </form>
250
251 </body>
252 </html>
253 |;
254
255   $lxdebug->leave_sub();
256 }
257
258 sub export_stammdaten {
259   $lxdebug->enter_sub();
260
261   $form->{title} = $locale->text("DATEX - Export Assistent");
262
263   $form->header;
264
265   print qq|
266 <body>
267
268 <form method=post action=$form->{script}>
269 <table width=100%>
270   <tr>
271     <th class=listtop>$form->{title}</th>
272   </tr>
273   <tr>
274     <th align=left>| . $locale->text("Konten") . qq|</th>
275   </tr>
276   <tr height="5"></tr>
277   <tr valign=top>
278     <td>
279       <table>
280         <tr>
281           <td align=left>| . $locale->text('Von Konto: ') . qq|</td>
282           <td align=left><input name=accnofrom size=8 maxlength=8></td>
283         </tr>
284         <tr>
285           <td align=left>| . $locale->text('Bis Konto: ') . qq|</td>
286           <td align=left><input name=accnoto size=8 maxlength=8></td>
287         </tr>
288       </table>
289     </td>
290   </tr>
291   <tr>
292     <td><hr size=3 noshade></td>
293   </tr>
294 </table>
295 <input type=hidden name=beraternr value="$form->{beraternr}">
296 <input type=hidden name=dfvkz value="$form->{dfvkz}">
297 <input type=hidden name=beratername value="$form->{beratername}">
298 <input type=hidden name=passwort value="$form->{passwort}">
299 <input type=hidden name=mandantennr value="$form->{mandantennr}">
300 <input type=hidden name=datentraegernr value="$form->{datentraegernr}">
301 <input type=hidden name=kne value="$form->{kne}">
302 <input type=hidden name=abrechnungsnr value="$form->{abrechnungsnr}">
303
304 <input type=hidden name=exporttype value="$form->{exporttype}">
305
306 <input type=hidden name=nextsub value=export3>
307
308 <input type=hidden name=path value=$form->{path}>
309 <input type=hidden name=login value=$form->{login}>
310 <input type=hidden name=password value=$form->{password}>
311
312 <br>
313 <input type=submit class=submit name=action value="|
314     . $locale->text('Continue') . qq|">
315 </form>
316
317 </body>
318 </html>
319 |;
320
321   $lxdebug->leave_sub();
322 }
323
324 sub export3 {
325   $lxdebug->enter_sub();
326
327   DATEV->save_datev_stamm(\%myconfig, \%$form);
328
329   my $link = $form->{"script"} . "?";
330   map({ $link .= "${_}=" . $form->escape($form->{$_}) . "&"; } qw(path login password));
331   $link .= "action=download";
332
333   if ($form->{kne}) {
334     my @filenames = DATEV->kne_export(\%myconfig, \%$form);
335     if (@filenames) {
336       print(qq|<br><b>| . $locale->text('KNE-Export erfolgreich!') . qq|</b><br>|);
337       $link .= "&filenames=" . $form->escape(join(":", @filenames));
338       print(qq|<br><a href="$link">Download</a>|);
339     } else {
340       $form->error("KNE-Export schlug fehl.");
341     }
342   } else {
343     my @filenames = DATEV->obe_export(\%myconfig, \%$form);
344     if (@filenames) {
345       print(qq|<br><b>| . $locale->text('OBE-Export erfolgreich!') . qq|</b><br>|);
346       $link .= "&filenames=" . $form->escape(join(":", @filenames));
347       print(qq|<br><a href="$link">Download</a>|);
348     } else {
349       $form->error("OBE-Export schlug fehl.");
350     }
351   }
352
353   print("</body></html>");
354
355   $lxdebug->leave_sub();
356 }
357
358 sub download {
359   $lxdebug->enter_sub();
360
361   my $tmp_name = Common->tmpname();
362   my $zip_name = strftime("lx-office-datev-export-%Y%m%d.zip",
363                           localtime(time()));
364
365   my $cwd = getcwd();
366   chdir("users") || die("chdir users");
367
368   my @filenames = split(/:/, $form->{"filenames"});
369   map({ s|.*/||; $form->error("Eine der KNE-Exportdateien wurde nicht " .
370                               "gefunden. Wurde der Export bereits " .
371                               "durchgef&uuml;hrt?") unless (-f $_); }
372       @filenames);
373
374   my $zip = Archive::Zip->new();
375   map({ $zip->addFile($_); } @filenames);
376   $zip->writeToFileNamed($tmp_name);
377   chdir($cwd);
378
379   open(IN, $tmp_name) || die("open $tmp_name");
380   print("Content-Type: application/zip\n");
381   print("Content-Disposition: attachment; filename=\"${zip_name}\"\n\n");
382   while (<IN>) {
383     print($_);
384   }
385   close(IN);
386
387   unlink($tmp_name);
388
389   $lxdebug->leave_sub();
390 }