Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 0dbf12c0

Von Hans P. Schlaepfer vor mehr als 3 Jahren hinzugefügt

  • ID 0dbf12c04da2c3b611dc614e85f742f53ee3848a
  • Vorgänger d394a688
  • Nachfolger bbfd9e7a

Neues Design 2019 Standard-Code templates/webpages/acctranscorrections/assistant_for_ap_ar_wrong_taxkeys.html

Unterschiede anzeigen:

templates/webpages/acctranscorrections/assistant_for_ap_ar_wrong_taxkeys.html
4 4

  
5 5
<h1>[% title %]</h1>
6 6

  
7
 <p>
7
<p>
8 8
  [% 'There is at least one transaction for which the user has chosen a logically wrong taxkey.' | $T8 %]
9

  
10 9
  [% 'This means that the user has created an AP transaction and chosen a taxkey for sales taxes, or that he has created an AR transaction and chosen a taxkey for input taxes.' | $T8 %]
11
 </p>
12

  
13
 <p>
10
</p>
11
<p>
14 12
  [% 'kivitendo can fix these problems automatically.' | $T8 %]
15

  
16 13
  [% 'For AP transactions it will replace the sales taxkeys with input taxkeys with the same tax rate.' | $T8 %]
17

  
18 14
  [% 'For AR transactions it will replace the input taxkeys with sales taxkeys with the same tax rate.' | $T8 %]
19
 </p>
15
</p>
20 16

  
21
 <form name="Form" action="acctranscorrections.pl" method="post">
17
<form name="Form" action="acctranscorrections.pl" method="post">
22 18

  
23
  <p>
24
   <input type="hidden" name="action" value="fix_ap_ar_wrong_taxkeys">
25
   <input type="hidden" name="callback" value="[% HTML.escape(callback) %]">
26
   <input type="submit" class="submit" value="[% 'Fix transactions' | $T8 %]">
27
   <input type="button" class="submit" onclick="history.back()" value="[% 'Back' | $T8 %]">
28
  </p>
29
 </form>
19
<p>
20
  <input type="hidden" name="action" value="fix_ap_ar_wrong_taxkeys">
21
  <input type="hidden" name="callback" value="[% HTML.escape(callback) %]">
22
  <input type="submit" class="submit" value="[% 'Fix transactions' | $T8 %]">
23
  <input type="button" class="submit" onclick="history.back()" value="[% 'Back' | $T8 %]">
24
</p>
25
</form>
30 26

  
templates/webpages/acctranscorrections/assistant_for_invoice_inventory_with_taxkeys.html
1 1
[% USE T8 %]
2 2
[% USE HTML %]
3 3
[% USE LxERP %]
4
<h1>[% title %]</h1>
5

  
6
 <p>
7
  [% 'There is at least one sales or purchase invoice for which kivitendo recorded an inventory transaction with taxkeys even though no tax was recorded.' | $T8 %]
8
 </p>
9 4

  
10
 <p>
11
  [% 'kivitendo can fix these problems automatically.' | $T8 %]
12

  
13
  [% 'It will simply set the taxkey to 0 (meaning "no taxes") which is the correct value for such inventory transactions.' | $T8 %]
14
 </p>
5
<h1>[% title %]</h1>
15 6

  
16 7
 <form name="Form" action="acctranscorrections.pl" method="post">
8
<p>[% 'There is at least one sales or purchase invoice for which kivitendo recorded an inventory transaction with taxkeys even though no tax was recorded.' | $T8 %] </p>
9
<p>[% 'kivitendo can fix these problems automatically.' | $T8 %] [% 'It will simply set the taxkey to 0 (meaning "no taxes") which is the correct value for such inventory transactions.' | $T8 %] </p>
17 10

  
18 11
  <p>
19 12
   <input type="hidden" name="action" value="fix_invoice_inventory_with_taxkeys">
templates/webpages/acctranscorrections/assistant_for_wrong_taxes.html
1 1
[% USE T8 %]
2 2
[% USE HTML %]
3 3
[% USE LxERP %]
4
<h1>[% title %]</h1>
5 4

  
6
 <p>
7
  [% 'The following transaction contains wrong taxes:' | $T8 %]
8
  <a href="[% problem.link %]">
9
   [%- IF problem.data.module == 'ar' %]
10
   [% 'AR Transaction' | $T8 %]
11
   [%- ELSIF problem.data.module == 'ap' %]
12
   [% 'AP Transaction' | $T8 %]
13
   [%- ELSE %]
14
   [% 'General Ledger Transaction' | $T8 %]
15
   [%- END %]
16
   [% HTML.escape(problem.data.reference) %]
17
  </a>
18
 </p>
5
<h1>[% title %]</h1>
19 6

  
20 7
 <p>[% 'At the moment the transaction looks like this:' | $T8 %]</p>
8
<p>[% 'The following transaction contains wrong taxes:' | $T8 %] <a href="[% problem.link %]">
9
[% IF problem.data.module == 'ar'    %][% 'AR Transaction'             | $T8 %]
10
[% ELSIF problem.data.module == 'ap' %][% 'AP Transaction'             | $T8 %]
11
[% ELSE                              %][% 'General Ledger Transaction' | $T8 %][% END %]
12
[% HTML.escape(problem.data.reference) %]
13
</a></p>
21 14

  
22 15
 <p>
23 16
  <table>
templates/webpages/acctranscorrections/assistant_for_wrong_taxkeys.html
4 4

  
5 5
<h1>[% title %]</h1>
6 6

  
7
 <p>
8
  [% 'The following transaction contains wrong taxkeys:' | $T8 %]
9
  <a href="[% problem.link %]">
10
   [%- IF problem.data.module == 'ar' %]
11
   [% 'AR Transaction' | $T8 %]
12
   [%- ELSIF problem.data.module == 'ap' %]
13
   [% 'AP Transaction' | $T8 %]
14
   [%- ELSE %]
15
   [% 'General Ledger Transaction' | $T8 %]
16
   [%- END %]
17
   [% HTML.escape(problem.data.reference) %]
18
  </a>
19
 </p>
7
<p>[% 'The following transaction contains wrong taxkeys:' | $T8 %]<a href="[% problem.link %]">
8
[% IF problem.data.module == 'ar'    %][% 'AR Transaction'             | $T8 %]
9
[% ELSIF problem.data.module == 'ap' %][% 'AP Transaction'             | $T8 %]
10
[% ELSE                              %][% 'General Ledger Transaction' | $T8 %][% END %]
11
[% HTML.escape(problem.data.reference) %]
12
</a></p>
20 13

  
21
 <p>
22 14
  [% 'This could have happened for two reasons:' | $T8 %]
23 15

  
24 16
  [% 'The first reason is that kivitendo contained a bug which resulted in the wrong taxkeys being recorded for transactions in which two entries are posted for the same chart with different taxkeys.' | $T8 %]

Auch abrufbar als: Unified diff