Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 766aa958

Von Werner Hahn vor fast 2 Jahren hinzugefügt

  • ID 766aa9589e8ccb675fa5d56c439c90e7481b9832
  • Vorgänger 655ef98e
  • Nachfolger 403bcddc

Design 4.0: Bücherkontrolle angepasst

Design 4.0: Bücherkontrolle analyze_filter.html kopiert

Design 4.0: Bücherkontrolle angepasst

Design 4.0: Bücherkontroller delete_transaction kopiert/angepasst

Design 4.0: Bücherkontrolle Dateien kopiert und angepasst

Design 4.0: Bücherkontrolle Dateien kopiert und angepasst

Unterschiede anzeigen:

templates/design40_webpages/acctranscorrections/analyze_filter.html
1
[%- USE T8 %]
2
[% USE HTML %]
3
[%- USE L %]
4
<h1>[% title %]</h1>
5

  
6
<div class="wrapper">
7
  <p>
8
  [% 'Earlier versions of kivitendo contained bugs which might have led to wrong entries in the general ledger.' | $T8 %]
9
  [% 'These wrong entries cannot be fixed automatically.' | $T8 %]
10
  [% 'This module can help you identify and correct such entries by analyzing the general ledger and presenting you likely solutions but also allowing you to fix problems yourself.' | $T8 %]
11
  </p>
12

  
13
  <form name="filter" method="post" action="acctranscorrections.pl" id="form">
14

  
15
    <p>[% 'Time period for the analysis:' | $T8 %]</p>
16

  
17
    <p>
18
    <table>
19
      <tr>
20
        <td><input type="radio" name="scope" id="scope_full" value="full" checked></td>
21
        <td><label for="scope_full">[% 'All general ledger entries' | $T8 %]</label></td>
22
      </tr>
23

  
24
      <tr>
25
        <td><input type="radio" name="scope" id="scope_period" value="period"></td>
26
        <td>
27
          [% 'Period:' | $T8 %]
28
          [% 'from (time)' | $T8 %]
29
          [% L.date_tag('transdate_from') %]
30
          [% 'to (time)' | $T8 %]
31
          [% L.date_tag('transdate_to') %]
32
        </td>
33
      </tr>
34
    </table>
35
    </p>
36

  
37
    <input type="hidden" name="action" value="analyze">
38
  </form>
39
</div>
templates/design40_webpages/acctranscorrections/delete_transaction.html
1
[%- USE T8 %]
2
[% USE HTML %]
3
[% USE LxERP %]
4
<h1>[% title %]</h1>
5
<div class="wrapper">
6
  <p>
7
  [%- IF module == 'ar' %]
8
  [%- LxERP.t8('The AR transaction #1 has been deleted.', reference) | html %]
9
  [%- ELSIF module == 'ap' %]
10
  [%- LxERP.t8('The AP transaction #1 has been deleted.', reference) | html %]
11
  [%- ELSE %]
12
  [%- LxERP.t8('The GL transaction #1 has been deleted.', reference) | html %]
13
  [%- END %]
14
  </p>
15

  
16
  <p>
17
  <form method="post" action="acctranscorrections.pl">
18

  
19
    <input type="hidden" name="action" value="redirect">
20
    <input type="hidden" name="callback" value="[% HTML.escape(callback) %]">
21
    <input type="submit" value="[% 'Re-run analysis' | $T8 %]">
22
  </form>
23
  </p>
24
</div>
templates/design40_webpages/acctranscorrections/delete_transaction_confirmation.html
1
[%- USE T8 %]
2
[% USE HTML %]
3
[% USE LxERP %]
4
<h1>[% title %]</h1>
5
<div class="wrapper">
6
  <p>
7
  [%- IF module == 'ar' %]
8
  [%- LxERP.t8('Do you really want to delete AR transaction #1?', reference) | html %]
9
  [%- ELSIF module == 'ap' %]
10
  [%- LxERP.t8('Do you really want to delete AP transaction #1?', reference) | html %]
11
  [%- ELSE %]
12
  [%- LxERP.t8('Do you really want to delete GL transaction #1?', reference) | html %]
13
  [%- END %]
14
  </p>
15

  
16
  <p>
17
  <form method="post" action="acctranscorrections.pl">
18

  
19
    <input type="hidden" name="callback" value="[% HTML.escape(callback) %]">
20
    <input type="hidden" name="trans_id" value="[% HTML.escape(trans_id) %]">
21
    <input type="hidden" name="module" value="[% HTML.escape(module) %]">
22
    <input type="hidden" name="reference" value="[% HTML.escape(reference) %]">
23

  
24
    <input type="hidden" name="confirmation" value="1">
25
    <input type="hidden" name="action" value="delete_transaction">
26

  
27
    <input type="submit" value="[% 'Yes' | $T8 %]">
28
    <input type="button" onclick="history.back()" value="[% 'No' | $T8 %]">
29
  </form>
30
  </p>
31
</div>
templates/design40_webpages/acctranscorrections/fix_ap_ar_wrong_taxkeys.html
1
[% USE T8 %]
1
[%- USE T8 %]
2 2
[% USE HTML %]
3 3

  
4 4
<h1>[% title %]</h1>
......
14 14
    <input type="hidden" name="callback" value="[% HTML.escape(callback) %]">
15 15
    <input type="submit" value="[% 'Re-run analysis' | $T8 %]">
16 16
  </form>
17
</p>
17
</p>
18
||||||| constructed merge base
19
=======
20
[%- USE T8 %]
21
[% USE HTML %]
22
<h1>[% title %]</h1>
23
<div class="wrapper">
24
  <p>
25
  [% 'The wrong taxkeys for AP and AR transactions have been fixed.' | $T8 %]
26

  
27
  [% 'Please re-run the analysis for broken general ledger entries by clicking this button:' | $T8 %]
28
  </p>
29

  
30
  <p>
31
  <form action="acctranscorrections.pl" method="post">
32

  
33
    <input type="hidden" name="action" value="redirect">
34
    <input type="hidden" name="callback" value="[% HTML.escape(callback) %]">
35
    <input type="submit" value="[% 'Re-run analysis' | $T8 %]">
36
  </form>
37
  </p>
38
</div>
39
>>>>>>> Design 4.0: Bücherkontrolle angepasst
templates/design40_webpages/acctranscorrections/fix_invoice_inventory_with_taxkeys.html
1
[% USE T8 %]
1
[%- USE T8 %]
2 2
[% USE HTML %]
3 3

  
4 4
<h1>[% title %]</h1>
......
14 14
    <input type="hidden" name="callback" value="[% HTML.escape(callback) %]">
15 15
    <input type="submit" value="[% 'Re-run analysis' | $T8 %]">
16 16
  </form>
17
</p>
17
</p>
18
||||||| constructed merge base
19
=======
20
[%- USE T8 %]
21
[% USE HTML %]
22
<h1>[% title %]</h1>
23
<div class="wrapper">
24
  <p>
25
  [% 'The wrong taxkeys for inventory transactions for sales and purchase invoices have been fixed.' | $T8 %]
26

  
27
  [% 'Please re-run the analysis for broken general ledger entries by clicking this button:' | $T8 %]
28
  </p>
29

  
30
  <p>
31
  <form action="acctranscorrections.pl" method="post">
32

  
33
    <input type="hidden" name="action" value="redirect">
34
    <input type="hidden" name="callback" value="[% HTML.escape(callback) %]">
35
    <input type="submit" value="[% 'Re-run analysis' | $T8 %]">
36
  </form>
37
  </p>
38
</div>
39
>>>>>>> Design 4.0: Bücherkontrolle angepasst
templates/design40_webpages/acctranscorrections/fix_wrong_taxkeys.html
1
[% USE T8 %]
1
[%- USE T8 %]
2 2
[% USE HTML %]
3 3

  
4 4
<h1>[% title %]</h1>
......
14 14
    <input type="hidden" name="callback" value="[% HTML.escape(callback) %]">
15 15
    <input type="submit" value="[% 'Re-run analysis' | $T8 %]">
16 16
  </form>
17
</p>
17
</p>
18
||||||| constructed merge base
19
=======
20
[%- USE T8 %]
21
[% USE HTML %]
22
<h1>[% title %]</h1>
23
<div class="wrapper">
24
  <p>
25
  [% 'The wrong taxkeys have been fixed.' | $T8 %]
26

  
27
  [% 'Please re-run the analysis for broken general ledger entries by clicking this button:' | $T8 %]
28
  </p>
29

  
30
  <p>
31
  <form action="acctranscorrections.pl" method="post">
32

  
33
    <input type="hidden" name="action" value="redirect">
34
    <input type="hidden" name="callback" value="[% HTML.escape(callback) %]">
35
    <input type="submit" value="[% 'Re-run analysis' | $T8 %]">
36
  </form>
37
  </p>
38
</div>
39
>>>>>>> Design 4.0: Bücherkontrolle angepasst

Auch abrufbar als: Unified diff