Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 56041df3

Von Udo Spallek vor fast 18 Jahren hinzugefügt

  • ID 56041df395cc2d8971f822c54f4e48743cc4f22b
  • Vorgänger 0bb6aed5
  • Nachfolger dcef6ec7

Neue Version System-> Kontenuebersicht-> Konten anzeigen.
Bitte testen, steuerliche Zuordnungen noch nicht ganz in Ordnung...

Unterschiede anzeigen:

SL/CA.pm
71 71
  }
72 72
  $sth->finish;
73 73

  
74
  $query = qq|SELECT c.id, c.accno, c.description, c.charttype, c.gifi_accno,
75
              c.category, c.link
76
              FROM chart c
77
	      ORDER BY accno|;
74
  $query = qq|
75

  
76
    SELECT c.id,
77
      c.accno,
78
      c.description,
79
      c.charttype,
80
      c.gifi_accno,
81
      c.category,
82
      c.link,
83
      c.pos_ustva,
84
      c.pos_bwa,
85
      c.pos_bilanz,
86
      c.pos_eur,
87
      c.valid_from,
88
      c.datevautomatik,
89
      ( SELECT comma(taxkey_id)
90
        FROM taxkeys tk
91
        WHERE tk.chart_id = c.id
92
          AND c.taxkey_id = tk.taxkey_id
93
        ORDER BY c.id
94
      ) AS taxkey_id,
95

  
96
      ( SELECT comma(taxdescription)
97
        FROM tax tx
98
        WHERE tx.id in (
99
          SELECT tk.tax_id from taxkeys tk 
100
          WHERE tk.chart_id = (
101
            SELECT id from chart 
102
            WHERE chart.accno='0027' -- Beispielkonto aus dem SKR03
103
          )
104
        ) 
105
        ORDER BY c.accno
106
      ) AS taxdescription,
107

  
108
      ( SELECT comma(tk.pos_ustva)
109
        FROM taxkeys tk
110
        WHERE tk.chart_id = c.id
111
          AND c.taxkey_id = tk.taxkey_id
112
        ORDER BY c.id
113
      ) AS tk_ustva,
114

  
115
      ( SELECT comma(startdate)
116
        FROM taxkeys tk
117
        WHERE tk.chart_id = c.id
118
          AND c.taxkey_id = tk.taxkey_id
119
        ORDER BY c.id
120
      ) AS startdate,
121

  
122
      ( SELECT accno
123
        FROM chart c2
124
        WHERE c2.id = c.id
125
      ) AS new_account
126
    FROM chart c
127
    ORDER BY accno
128
  |;
129

  
78 130
  $sth = $dbh->prepare($query);
79 131
  $sth->execute || $form->dberror($query);
80 132

  
bin/mozilla/am.pl
40 40

  
41 41
1;
42 42

  
43

  
44

  
43 45
require "$form->{path}/common.pl";
44 46

  
45 47
# end of main
......
528 530
  $callback =
529 531
    "$form->{script}?action=list_account&path=$form->{path}&login=$form->{login}&password=$form->{password}";
530 532

  
531
  @column_index = qw(accno gifi_accno description debit credit link);
532

  
533
  $column_header{accno} = qq|<th>| . $locale->text('Account') . qq|</a></th>|;
534
  $column_header{gifi_accno} =
535
    qq|<th>| . $locale->text('GIFI') . qq|</a></th>|;
536
  $column_header{description} =
537
    qq|<th>| . $locale->text('Description') . qq|</a></th>|;
538
  $column_header{debit}  = qq|<th>| . $locale->text('Debit') . qq|</a></th>|;
539
  $column_header{credit} = qq|<th>| . $locale->text('Credit') . qq|</a></th>|;
540
  $column_header{link}   = qq|<th>| . $locale->text('Link') . qq|</a></th>|;
541

  
542 533
  $form->header;
543
  $colspan = $#column_index + 1;
544

  
545
  print qq|
546
<body>
547

  
548
<table width=100%>
549
  <tr>
550
    <th class=listtop colspan=$colspan>$form->{title}</th>
551
  </tr>
552
  <tr height=5></tr>
553
  <tr class=listheading>
554
|;
555

  
556
  map { print "$column_header{$_}\n" } @column_index;
557

  
558
  print qq|
559
</tr>
560
|;
561 534

  
562 535
  # escape callback
563 536
  $callback = $form->escape($callback);
......
576 549
        $form->format_amount(\%myconfig, -$ca->{amount}, 2, "&nbsp;");
577 550
    }
578 551

  
579
    $ca->{link} =~ s/:/<br>/og;
580

  
581
    if ($ca->{charttype} eq "H") {
582
      print qq|<tr class=listheading>|;
583

  
584
      $column_data{accno} =
585
        qq|<th><a href=$form->{script}?action=edit_account&id=$ca->{id}&path=$form->{path}&login=$form->{login}&password=$form->{password}&callback=$callback>$ca->{accno}</a></th>|;
586
      $column_data{gifi_accno} =
587
        qq|<th><a href=$form->{script}?action=edit_gifi&accno=$ca->{gifi_accno}&path=$form->{path}&login=$form->{login}&password=$form->{password}&callback=$callback>$ca->{gifi_accno}</a>&nbsp;</th>|;
588
      $column_data{description} = qq|<th>$ca->{description}&nbsp;</th>|;
589
      $column_data{debit}       = qq|<th>&nbsp;</th>|;
590
      $column_data{credit}      = qq| <th>&nbsp;</th>|;
591
      $column_data{link}        = qq|<th>&nbsp;</th>|;
592

  
593
    } else {
594
      $i++;
595
      $i %= 2;
596
      print qq|
597
<tr valign=top class=listrow$i>|;
598
      $column_data{accno} =
599
        qq|<td><a href=$form->{script}?action=edit_account&id=$ca->{id}&path=$form->{path}&login=$form->{login}&password=$form->{password}&callback=$callback>$ca->{accno}</a></td>|;
600
      $column_data{gifi_accno} =
601
        qq|<td><a href=$form->{script}?action=edit_gifi&accno=$ca->{gifi_accno}&path=$form->{path}&login=$form->{login}&password=$form->{password}&callback=$callback>$ca->{gifi_accno}</a>&nbsp;</td>|;
602
      $column_data{description} = qq|<td>$ca->{description}&nbsp;</td>|;
603
      $column_data{debit}       = qq|<td align=right>$ca->{debit}</td>|;
604
      $column_data{credit}      = qq|<td align=right>$ca->{credit}</td>|;
605
      $column_data{link}        = qq|<td>$ca->{link}&nbsp;</td>|;
606

  
552
    my @links = split( q{:}, $ca->{link});
553
    
554
    $ca->{link} = q{};
555
    
556
    foreach my $link (@links){
557
      $link = ( $link eq 'AR')             ? $locale->text('Account Link AR')
558
               : ( $link eq 'AP')             ? $locale->text('Account Link AP')
559
               : ( $link eq 'IC')             ? $locale->text('Account Link IC')
560
               : ( $link eq 'AR_amount' )     ? $locale->text('Account Link AR_amount')
561
               : ( $link eq 'AR_paid' )       ? $locale->text('Account Link AR_paid')
562
               : ( $link eq 'AR_tax' )        ? $locale->text('Account Link AR_tax')
563
               : ( $link eq 'AP_amount' )     ? $locale->text('Account Link AP_amount')
564
               : ( $link eq 'AP_paid' )       ? $locale->text('Account Link AP_paid')
565
               : ( $link eq 'AP_tax' )        ? $locale->text('Account Link AP_tax')
566
               : ( $link eq 'IC_sale' )       ? $locale->text('Account Link IC_sale')
567
               : ( $link eq 'IC_cogs' )       ? $locale->text('Account Link IC_cogs')
568
               : ( $link eq 'IC_taxpart' )    ? $locale->text('Account Link IC_taxpart')
569
               : ( $link eq 'IC_income' )     ? $locale->text('Account Link IC_income')
570
               : ( $link eq 'IC_expense' )    ? $locale->text('Account Link IC_expense')
571
               : ( $link eq 'IC_taxservice' ) ? $locale->text('Account Link IC_taxservice')
572
               : ( $link eq 'CT_tax' )        ? $locale->text('Account Link CT_tax')
573
               : $locale->text('Unknown Link') . ': ' . $link;
574
      
575
      $ca->{link} .= qq|[| . $link . qq|]&nbsp;|;
607 576
    }
608

  
609
    map { print "$column_data{$_}\n" } @column_index;
610

  
611
    print "</tr>\n";
577
    
578
    $ca->{startdate} =~ s/,/<br>/og;
579
    $ca->{tk_ustva}  =~ s/,/<br>/og;
580

  
581
    $ca->{taxkey_id}  =~ s/,/<br>/og;
582
    $ca->{taxdescription}  =~ s/,/<br>/og;
583

  
584
    $ca->{datevautomatik} = ($ca->{datevautomatik}) ? $locale->text('On'):q{};
585

  
586
    $ca->{category} = ($ca->{category} eq 'A') ? $locale->text('Account Category A')
587
                    : ($ca->{category} eq 'E') ? $locale->text('Account Category E')
588
                    : ($ca->{category} eq 'L') ? $locale->text('Account Category L')
589
                    : ($ca->{category} eq 'I') ? $locale->text('Account Category I')
590
                    : ($ca->{category} eq 'Q') ? $locale->text('Account Category Q')
591
                    : ($ca->{category} eq 'C') ? $locale->text('Account Category C')
592
                    : ($ca->{category} eq 'G') ? $locale->text('Account Category G')
593
                    : $locale->text('Unknown Category') . ': ' . $ca->{category};
594

  
595
    $ca->{link_edit_account} = 
596
        qq|$form->{script}?action=edit_account&id=$ca->{id}|
597
       .qq|&path=$form->{path}&login=$form->{login}|
598
       .qq|&password=$form->{password}&callback=$callback>$ca->{accno}|;
612 599
  }
600
  
601
  my $parameters_ref = {
602
  
603
  
604
  #   hidden_variables                => $_hidden_variables_ref,
605
  };
606
  
607
  # Ausgabe des Templates
608
  print($form->parse_html_template('am/list_accounts', $parameters_ref));
609
  
610
  $lxdebug->leave_sub();
611
  
613 612

  
614
  print qq|
615
  <tr><td colspan=$colspan><hr size=3 noshade></td></tr>
616
</table>
617

  
618
</body>
619
</html>
620
|;
621

  
622
  $lxdebug->leave_sub();
623 613
}
624 614

  
625 615
sub delete_account {
locale/de/all
31 31
  'Abteilung'                   => 'Abteilung',
32 32
  'Access Control'              => 'Zugriffkontrolle',
33 33
  'Account'                     => 'Konto',
34
  'Account Category A'          => 'Aktiva/Mittelverwendung',
35
  'Account Category C'          => 'Kosten',
36
  'Account Category E'          => 'Aufwandskonto',
37
  'Account Category G'          => '?Gegenkonto?',
38
  'Account Category I'          => 'Erl?skonto',
39
  'Account Category L'          => 'Passiva/Mittelherkunft',
40
  'Account Category Q'          => 'Passiva',
41
  'Account Link AP'             => 'Einkauf',
42
  'Account Link AP_amount'      => 'Verbindlichkeiten Aufwand/Anlagen',
43
  'Account Link AP_paid'        => 'Verbindlichkeiten Zahlungsausgang',
44
  'Account Link AP_tax'         => 'Verbindlichkeiten Steuer',
45
  'Account Link AR'             => 'Verkauf',
46
  'Account Link AR_amount'      => 'Forderungen Erl?skonto',
47
  'Account Link AR_paid'        => 'Forderungen Zahlungseingang',
48
  'Account Link AR_tax'         => 'Forderungen Steuer',
49
  'Account Link CT_tax'         => 'Kunde/Lieferant Steuer',
50
  'Account Link IC'             => 'Inventar',
51
  'Account Link IC_cogs'        => 'Warenliste Aufwandskonto',
52
  'Account Link IC_expense'     => 'Dienstleistungen Aufwandskonto',
53
  'Account Link IC_income'      => 'Dienstleistungen Erl?skonto',
54
  'Account Link IC_sale'        => 'Warenliste Erl?skonto',
55
  'Account Link IC_taxpart'     => 'Warenliste Steuer',
56
  'Account Link IC_taxservice'  => 'Dienstleistungen Steuer',
34 57
  'Account Number'              => 'Kontonummer',
35 58
  'Account Number missing!'     => 'Kontonummer fehlt!',
36 59
  'Account Nummer'              => 'Kontonummer',
......
303 326
  'Date missing!'               => 'Datum fehlt!',
304 327
  'Date received missing!'      => 'Empfangsdatum fehlt!',
305 328
  'Datentr?gernummer'           => 'Datentr?gernummer',
329
  'Datev'                       => '',
306 330
  'Datum von'                   => 'Datum von',
307 331
  'Debit'                       => 'Soll',
308 332
  'Debit Account'               => 'Sollkonto',
......
450 474
  'Fee'                         => 'Geb?hr',
451 475
  'File locked!'                => 'Datei gesperrt!',
452 476
  'Folgekonto'                  => 'Folgekonto',
477
  'Following Account'           => 'Folgekonto',
453 478
  'For each unit there\'s either no or exactly one base unit. If you chose a base unit then you also have to chose a factor. That way the new unit will be defined as a multiple of the base unit. The base unit must be the &quot;smaller&quot; one. A factor may not be less than 1. Therefore you may define &quot;kg&quot; with the base unit &quot;g&quot; and a factor of &quot;1&quot;, but not the other way round.' => 'Einheiten haben entweder keine oder genau eine Basiseinheit, von der sie ein Vielfaches sind. Wenn Sie eine Basiseinheit ausw&auml;hlen, dann m&uuml;ssen Sie auch einen Faktor eingeben. Sie m&uuml;ssen Einheiten als ein Vielfaches einer kleineren Einheit eingeben. So ist die Definition von &quot;kg&quot; mit der Basiseinheit &quot;g&quot; und dem Faktor 1000 zul&auml;ssig, die Definition von &quot;g&quot; mit der Basiseinheit &quot;kg&quot; und dem Faktor &quot;0,001&quot; hingegen nicht.',
454 479
  'Foreign Exchange Gain'       => 'Wechselkursertr?ge',
455 480
  'Foreign Exchange Loss'       => 'Wechselkursaufwendungen',
......
681 706
  'Oct'                         => 'Okt',
682 707
  'October'                     => 'Oktober',
683 708
  'Old (on the side)'           => 'Alt (seitlich)',
709
  'On'                          => '',
684 710
  'On Hand'                     => 'Auf Lager',
685 711
  'On Order'                    => 'Ist bestellt',
686 712
  'One or more Perl modules missing' => 'Ein oder mehr Perl-Module fehlen',
......
915 941
  'Spoolfile'                   => 'Druckdatei',
916 942
  'Standard Industrial Codes'   => 'SIC',
917 943
  'Start Dunning Process'       => 'Mahnprozess starten',
944
  'Startdate'                   => 'G?ltig ab',
918 945
  'Statement'                   => 'Sammelrechnung',
919 946
  'Statement Balance'           => 'Sammelrechnungsbilanz',
920 947
  'Statement sent to'           => 'Sammelrechnung verschickt an',
......
952 979
  'Tax paid'                    => 'Vorsteuer',
953 980
  'Taxable'                     => 'Steuerpflichtig',
954 981
  'Taxation'                    => 'Versteuerungs Verfahren',
955
  'Taxkey'                      => 'Steuerschl?ssel',
982
  'Taxdescription'              => 'Beschreibung',
983
  'Taxkey'                      => 'Tax Key',
956 984
  'Tel'                         => 'Tel',
957 985
  'Tel.'                        => 'Telefon',
958 986
  'Telephone'                   => 'Telefon',
......
1077 1105
  'Unit'                        => 'Einheit',
1078 1106
  'Unit of measure'             => 'Ma?einheit',
1079 1107
  'Units'                       => 'Einheiten',
1108
  'Unknown Category'            => '',
1109
  'Unknown Link'                => '',
1080 1110
  'Unknown dependency \'%s\'.'  => 'Unbekannte Abh&auml;ngigkeit \'%s\'.',
1081 1111
  'Unlock System'               => 'System entsperren',
1082 1112
  'Until'                       => 'Bis',
......
1148 1178
  'bis'                         => 'bis',
1149 1179
  'button'                      => '?',
1150 1180
  'cash'                        => 'E/?-Rechnung (Ist-Versteuerung)',
1181
  'category'                    => 'Kontenart',
1151 1182
  'choice'                      => 'ausw?hlen',
1152 1183
  'choice part'                 => 'Artikel ausw?hlen',
1153 1184
  'config'                      => 'Konfiguration',
......
1174 1205
  'none (pricegroup)'           => 'keine',
1175 1206
  'number'                      => 'Nummer',
1176 1207
  'plural first char'           => 'P',
1208
  'pos_bilanz'                  => 'Bilanz',
1209
  'pos_bwa'                     => 'BWA',
1210
  'pos_eur'                     => 'E/?R',
1211
  'pos_ustva'                   => 'UStVA',
1177 1212
  'posted!'                     => 'gebucht',
1178 1213
  'prices updated!'             => ' Preise aktualisiert!',
1179 1214
  'quarter'                     => 'Viertelj?hrliche (quartalsweise) Abgabe',
......
1187 1222
  'soldtotal'                   => 'Verkaufte Anzahl',
1188 1223
  'successfully created!'       => 'wurde erfolgreich erstellt',
1189 1224
  'successfully deleted!'       => 'wurde erfolgreich gel?scht',
1225
  'tk_ustva'                    => '',
1190 1226
  'to (date)'                   => 'bis',
1191 1227
  'up'                          => 'runter',
1192 1228
  'use program settings'        => 'benutze Programmeinstellungen',
1193 1229
  'ustva'                       => 'UStVA',
1230
  'valid_from'                  => 'G?ltig ab',
1194 1231
  'website'                     => 'Webseite',
1195 1232
  'winston_export'              => 'Winston-Export',
1196 1233
};
locale/de/am
4 4
  'AP'                          => 'Einkauf',
5 5
  'AR'                          => 'Verkauf',
6 6
  'Account'                     => 'Konto',
7
  'Account Category A'          => 'Aktiva/Mittelverwendung',
8
  'Account Category C'          => 'Kosten',
9
  'Account Category E'          => 'Aufwandskonto',
10
  'Account Category G'          => '?Gegenkonto?',
11
  'Account Category I'          => 'Erl?skonto',
12
  'Account Category L'          => 'Passiva/Mittelherkunft',
13
  'Account Category Q'          => 'Passiva',
14
  'Account Link AP'             => 'Einkauf',
15
  'Account Link AP_amount'      => 'Verbindlichkeiten Aufwand/Anlagen',
16
  'Account Link AP_paid'        => 'Verbindlichkeiten Zahlungsausgang',
17
  'Account Link AP_tax'         => 'Verbindlichkeiten Steuer',
18
  'Account Link AR'             => 'Verkauf',
19
  'Account Link AR_amount'      => 'Forderungen Erl?skonto',
20
  'Account Link AR_paid'        => 'Forderungen Zahlungseingang',
21
  'Account Link AR_tax'         => 'Forderungen Steuer',
22
  'Account Link CT_tax'         => 'Kunde/Lieferant Steuer',
23
  'Account Link IC'             => 'Inventar',
24
  'Account Link IC_cogs'        => 'Warenliste Aufwandskonto',
25
  'Account Link IC_expense'     => 'Dienstleistungen Aufwandskonto',
26
  'Account Link IC_income'      => 'Dienstleistungen Erl?skonto',
27
  'Account Link IC_sale'        => 'Warenliste Erl?skonto',
28
  'Account Link IC_taxpart'     => 'Warenliste Steuer',
29
  'Account Link IC_taxservice'  => 'Dienstleistungen Steuer',
7 30
  'Account Number'              => 'Kontonummer',
8 31
  'Account Number missing!'     => 'Kontonummer fehlt!',
9 32
  'Account Type'                => 'Kontoart',
......
60 83
  'Copy to COA'                 => 'In Kontenplan kopieren',
61 84
  'Cost Center'                 => 'Kostenstelle',
62 85
  'Costs'                       => 'Kosten',
63
  'Credit'                      => 'Haben',
64 86
  'Customer Number'             => 'Kundennummer',
65 87
  'Customernumberinit'          => 'Kundennummernkreis',
66 88
  'Dataset upgrade'             => 'Datenbankaktualisierung',
67 89
  'Date Format'                 => 'Datumsformat',
68
  'Debit'                       => 'Soll',
69 90
  'Default output medium'       => 'Standardausgabekanal',
70 91
  'Default printer'             => 'Standarddrucker',
71 92
  'Default template format'     => 'Standardvorlagenformat',
......
142 163
  'Last Vendor Number'          => 'Letzte Lieferantennummer',
143 164
  'Lead'                        => 'Kundenquelle',
144 165
  'Liability'                   => 'Passiva/Mittelherkunft',
145
  'Link'                        => 'Verkn?pfungen',
146 166
  'Long Dates'                  => 'Lange Monatsnamen',
147 167
  'Long Description'            => 'Langtext',
148 168
  'Missing \'description\' field.' => 'Fehlendes Feld \'description\'.',
......
161 181
  'Number Format'               => 'Zahlenformat',
162 182
  'Number of copies'            => 'Anzahl Kopien',
163 183
  'Old (on the side)'           => 'Alt (seitlich)',
184
  'On'                          => 'On',
164 185
  'OpenDocument/OASIS'          => 'OpenDocument/OASIS',
165 186
  'Output Number Format'        => 'Zahlenformat (Ausgabe)',
166 187
  'PDF'                         => 'PDF',
......
279 300
  'UStVA-Nr. 98'                => 'Kz. 98',
280 301
  'Umsatzsteuervoranmeldung'    => 'Umsatzsteuervoranmeldung',
281 302
  'Unit'                        => 'Einheit',
303
  'Unknown Category'            => 'Unknown Category',
304
  'Unknown Link'                => 'Unknown Link',
282 305
  'Unknown dependency \'%s\'.'  => 'Unbekannte Abh&auml;ngigkeit \'%s\'.',
283 306
  'Value'                       => 'Wert',
284 307
  'Variable'                    => 'Variable',
templates/webpages/am/list_accounts_de.html
1
  <body>
2

  
3
    <table border="0" cellpadding="3" cellspacing="3" width="100%">
4
      <tr>
5
        <th class="listtop" colspan="12"><TMPL_VAR title ESCAPE=HTML></th>
6
      </tr>
7
      <tr height=5></tr>
8
      <tr class=listheading>
9
        <th colspan="3"><b>Kontonummer</b></th>
10
        <th colspan="8"><b>Beschreibung</b></a></th>
11
        <th rowspan="3">Haben</th>
12
        <th rowspan="3">Soll</th>
13
      </tr>  
14
      <tr class=listheading>
15
        <th colspan="3"><b>Kontenart</b></th>
16
        
17
        <th colspan="8">Verkn?pfungen</th>
18
      </tr>
19
      <tr class=listheading>
20
        <th>Tax Key</th>
21
        <th>Beschreibung</th>
22
        <th>G?ltig ab</th>
23
        <th>tk_ustva</th>
24
        <th>UStVA</th>
25
        <th>BWA</th>
26
        <th>Bilanz</th>
27
        <th>E/?R</th>
28
        <th>Datev</th>
29
        <th>G?ltig ab</th>
30
        <th>Folgekonto</th>
31
      </tr>
32

  
33
<TMPL_LOOP CA>
34

  
35
  <TMPL_IF heading>
36

  
37
      <tr class=listheading>
38
        <td colspan="3" abbr="Kontonummer">
39
          <a href=<TMPL_VAR link_edit_account> >
40
            <TMPL_VAR accno>
41
          </a>
42
        </td>
43
        <td colspan="6">
44
          <a href=<TMPL_VAR description> >
45
            <TMPL_VAR accno>
46
          </a>
47
        </td>
48
      </tr>
49
        
50
  <TMPL_ELSE>
51

  
52
  
53
    <TMPL_IF __odd__>
54
        <tr valign=top class=listrow1>
55
    <TMPL_ELSE>
56
        
57
        <tr valign=top class=listrow0>
58
    </TMPL_IF>
59

  
60
          <td colspan="3" abbr="Kontonummer"><b>
61
            <a href="<TMPL_VAR link_edit_account>" ><TMPL_VAR accno></a>
62
          </td>
63
          <td colspan="8"><b><TMPL_VAR description ESCAPE=HTML>&nbsp;</b></td>
64
          <td rowspan="3" align=right><TMPL_VAR debit>&nbsp;</td>
65
          <td rowspan="3" align=right><TMPL_VAR credit>&nbsp;</td>
66
  
67
        </tr> 
68
                                 
69
    <TMPL_IF __odd__>
70
        <tr valign=top class=listrow1>
71
    <TMPL_ELSE>
72
        <tr valign=top class=listrow0>
73
    </TMPL_IF>
74

  
75
          <td colspan="3"><b><TMPL_VAR category ESCAPE=HTML>&nbsp;</b></td>
76
          <td colspan="8"><TMPL_VAR link>&nbsp;</td>
77
        </tr>                                
78

  
79
    <TMPL_IF __odd__>
80
        <tr valign=top class=listrow1>
81
    <TMPL_ELSE>
82
        <tr valign=top class=listrow0>
83
    </TMPL_IF>
84

  
85
          <td><TMPL_VAR taxkey_id                  >&nbsp;</td>
86
          <td nowrap="nowrap"><TMPL_VAR taxdescription             >&nbsp;</td>
87
          <td><TMPL_VAR startdate                  >&nbsp;</td>
88
          <td><TMPL_VAR tk_ustva                   >&nbsp;</td>
89

  
90
          <td><TMPL_VAR pos_ustva       ESCAPE=HTML>&nbsp;</td>
91
          <td><TMPL_VAR pos_bwa         ESCAPE=HTML>&nbsp;</td>
92
          <td><TMPL_VAR pos_bilanz      ESCAPE=HTML>&nbsp;</td>
93
          <td><TMPL_VAR pos_eur         ESCAPE=HTML>&nbsp;</td>
94
          <td><TMPL_VAR datevautomatik  ESCAPE=HTML>&nbsp;</td>
95
          <td><TMPL_VAR valid_from      ESCAPE=HTML>&nbsp;</td>
96
          <td><TMPL_VAR new_account     ESCAPE=HTML>&nbsp;</td>
97

  
98
        </tr>
99
  </TMPL_IF>
100

  
101

  
102
</TMPL_LOOP>
103

  
104
      <tr>
105
        <td colspan=14><hr size=3 noshade></td>
106
      </tr>
107
    </table>
108
      
109
  </body>
110
  </html>
templates/webpages/am/list_accounts_master.html
1
  <body>
2

  
3
    <table border="0" cellpadding="3" cellspacing="3" width="100%">
4
      <tr>
5
        <th class="listtop" colspan="12"><TMPL_VAR title ESCAPE=HTML></th>
6
      </tr>
7
      <tr height=5></tr>
8
      <tr class=listheading>
9
        <th colspan="3"><b><translate>Account Number</translate></b></th>
10
        <th colspan="8"><b><translate>Description</translate></b></a></th>
11
        <th rowspan="3"><translate>Credit</translate></th>
12
        <th rowspan="3"><translate>Debit</translate></th>
13
      </tr>  
14
      <tr class=listheading>
15
        <th colspan="3"><b><translate>category</translate></b></th>
16
        
17
        <th colspan="8"><translate>Link</translate></th>
18
      </tr>
19
      <tr class=listheading>
20
        <th><translate>Taxkey</translate></th>
21
        <th><translate>Taxdescription</translate></th>
22
        <th><translate>Startdate</translate></th>
23
        <th><translate>tk_ustva</translate></th>
24
        <th><translate>pos_ustva</translate></th>
25
        <th><translate>pos_bwa</translate></th>
26
        <th><translate>pos_bilanz</translate></th>
27
        <th><translate>pos_eur</translate></th>
28
        <th><translate>Datev</translate></th>
29
        <th><translate>valid_from</translate></th>
30
        <th><translate>Following Account</translate></th>
31
      </tr>
32

  
33
<TMPL_LOOP CA>
34

  
35
  <TMPL_IF heading>
36

  
37
      <tr class=listheading>
38
        <td colspan="3" abbr="<translate>Account Number</translate>">
39
          <a href=<TMPL_VAR link_edit_account> >
40
            <TMPL_VAR accno>
41
          </a>
42
        </td>
43
        <td colspan="6">
44
          <a href=<TMPL_VAR description> >
45
            <TMPL_VAR accno>
46
          </a>
47
        </td>
48
      </tr>
49
        
50
  <TMPL_ELSE>
51

  
52
  
53
    <TMPL_IF __odd__>
54
        <tr valign=top class=listrow1>
55
    <TMPL_ELSE>
56
        
57
        <tr valign=top class=listrow0>
58
    </TMPL_IF>
59

  
60
          <td colspan="3" abbr="<translate>Account Number</translate>"><b>
61
            <a href="<TMPL_VAR link_edit_account>" ><TMPL_VAR accno></a>
62
          </td>
63
          <td colspan="8"><b><TMPL_VAR description ESCAPE=HTML>&nbsp;</b></td>
64
          <td rowspan="3" align=right><TMPL_VAR debit>&nbsp;</td>
65
          <td rowspan="3" align=right><TMPL_VAR credit>&nbsp;</td>
66
  
67
        </tr> 
68
                                 
69
    <TMPL_IF __odd__>
70
        <tr valign=top class=listrow1>
71
    <TMPL_ELSE>
72
        <tr valign=top class=listrow0>
73
    </TMPL_IF>
74

  
75
          <td colspan="3"><b><TMPL_VAR category ESCAPE=HTML>&nbsp;</b></td>
76
          <td colspan="8"><TMPL_VAR link>&nbsp;</td>
77
        </tr>                                
78

  
79
    <TMPL_IF __odd__>
80
        <tr valign=top class=listrow1>
81
    <TMPL_ELSE>
82
        <tr valign=top class=listrow0>
83
    </TMPL_IF>
84

  
85
          <td><TMPL_VAR taxkey_id                  >&nbsp;</td>
86
          <td nowrap="nowrap"><TMPL_VAR taxdescription             >&nbsp;</td>
87
          <td><TMPL_VAR startdate                  >&nbsp;</td>
88
          <td><TMPL_VAR tk_ustva                   >&nbsp;</td>
89

  
90
          <td><TMPL_VAR pos_ustva       ESCAPE=HTML>&nbsp;</td>
91
          <td><TMPL_VAR pos_bwa         ESCAPE=HTML>&nbsp;</td>
92
          <td><TMPL_VAR pos_bilanz      ESCAPE=HTML>&nbsp;</td>
93
          <td><TMPL_VAR pos_eur         ESCAPE=HTML>&nbsp;</td>
94
          <td><TMPL_VAR datevautomatik  ESCAPE=HTML>&nbsp;</td>
95
          <td><TMPL_VAR valid_from      ESCAPE=HTML>&nbsp;</td>
96
          <td><TMPL_VAR new_account     ESCAPE=HTML>&nbsp;</td>
97

  
98
        </tr>
99
  </TMPL_IF>
100

  
101

  
102
</TMPL_LOOP>
103

  
104
      <tr>
105
        <td colspan=14><hr size=3 noshade></td>
106
      </tr>
107
    </table>
108
      
109
  </body>
110
  </html>

Auch abrufbar als: Unified diff