Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision be8c9e1c

Von Jan Büren vor 4 Tagen hinzugefügt

  • ID be8c9e1c73e32293343a1cff87fff5f4a34c836e
  • Vorgänger 994826a2
  • Nachfolger 4d8d92de

Duplikaterkennung beim Bankimport (EndToEnd) konfigurierbar gemacht

Unterschiede anzeigen:

SL/DB/MetaSetup/Default.pm
42 42
  bin_id_ignore_onhand                      => { type => 'integer' },
43 43
  businessnumber                            => { type => 'text' },
44 44
  carry_over_account_chart_id               => { type => 'integer' },
45
  check_bt_duplicates_endtoend              => { type => 'boolean', default => 'false' },
45 46
  closedto                                  => { type => 'date' },
46 47
  cnnumber                                  => { type => 'text' },
47 48
  co_ustid                                  => { type => 'text' },
locale/de/all
2001 2001
  'If set to no the \'delivery date\' field for sales orders won\'t be set at all.' => 'Falls der Wert auf Nein gesetzt wird, wird überhaupt kein Lieferdatum in Verkaufsaufträgen gesetzt',
2002 2002
  'If set to no the \'valid until\' field for sales quotation won\'t be set at all.' => 'Falls der Wert auf Nein gesetzt wird, wird überhaupt kein Gültigkeitsdatum bei Verkaufs-Angeboten gesetzt',
2003 2003
  'If set to yes a percentage deviation will be allowed for otherwise strict skonto bookings. The deviation will booked to the skonto chart and the allowed deviation is also configurable.' => 'Falls aktiviert, wird der Zahlungsbedinung Skonto nach ZB auch erlaubt, wenn es eine Abweichung innerhalb des prozentualen Abweichungsrahmen gibt. Bei 0,5% erlaubter Abweichung wären das bspw. 50 Cent brutto bei einer 100,- € brutto Rechnung.',
2004
  'If set to yes and a end-to-end- id can be extracted from the transaction this will be used to detect duplicates instead of the transaction purpose.' => 'Falls aktiviert, wird die END-TO-END-ID zur Duplikaterkennung der Banktransaktion verwendet, insofern diese vorhanden ist. Anderfalls wird eine Erkennung über den Verwendungszweck ausgeführt.',
2004 2005
  'If the article type is set to \'mixed\' then a column called \'part_type\' or called \'pclass\' must be present.' => 'Falls der Artikeltyp auf \'mixed\' gesetzt ist muss entweder eine Spalte \'part_type\' oder \'pclass\' im Import vorhanden sein',
2005 2006
  'If the automatic creation of invoices for fees and interest is switched on for a dunning level then the following accounts will be used for the invoice.' => 'Wenn das automatische Erstellen einer Rechnung über Mahngebühren und Zinsen für ein Mahnlevel aktiviert ist, so werden die folgenden Konten für die Rechnung benutzt.',
2006 2007
  'If the counted quantity differs more than this threshold from the quantity in the database, a warning will be shown. Set to 0 to switch of this feature.' => 'Wenn die gezählte Menge mehr als diesen Schwellenwert von der Menge in der Datenbank abweicht, wird eine Warnmeldung angezeigt. Setzen Sie den Schwellenwert auf 0, um dieses Feature abzuschalten.',
......
4689 4690
  'Use As New'                  => 'Als neu verwenden',
4690 4691
  'Use Balance Sheet'           => 'Bilanz verwenden',
4691 4692
  'Use Datevautomatik'          => 'Datev-Automatik verwenden',
4693
  'Use END-TO-END-ID to detect duplicates in bank import transactions' => 'Verwende die SEPA END-TO-END-ID zur Duplikatserkennung beim Import der Banküberweisungen',
4692 4694
  'Use Erfolgsrechnung'         => 'Erfolgsrechnung verwenden',
4693 4695
  'Use File Storage backend'    => 'Verwende Dateisystem-Backend',
4694 4696
  'Use Filemanagement'          => 'Verwende Dateimanagement',
sql/Pg-upgrade2/defaults_endtoend.sql
1
-- @tag: defaults_endtoend
2
-- @description: Einstellung, ob die END-TO-END Id zur Duplikaterkennung für den Bankimport verwendet werden darf
3
-- @depends: release_3_9_0
4

  
5
ALTER TABLE defaults ADD COLUMN check_bt_duplicates_endtoend boolean DEFAULT FALSE;
templates/design40_webpages/client_config/_posting_configuration.html
166 166
      <td>[% L.input_tag('defaults.fuzzy_skonto_percentage_as_number', SELF.defaults.fuzzy_skonto_percentage_as_number, size=5, class="numeric") %]%</td>
167 167
      <td>[% LxERP.t8("The allowed Skonto Percentage Deivation defaults to 0.5% of the invoice amount") %]</td>
168 168
    </tr>
169
    <tr>
170
      <th>[% LxERP.t8('Use END-TO-END-ID to detect duplicates in bank import transactions') %]</th>
171
      <td>[% L.yes_no_tag('defaults.check_bt_duplicates_endtoend', SELF.defaults.check_bt_duplicates_endtoend) %]</td>
172
      <td>[% LxERP.t8("If set to yes and a end-to-end- id can be extracted from the transaction this will be used to detect duplicates instead of the transaction purpose.") %]</td>
173
    </tr>
169 174
  </tbody>
170 175
</table>
171 176

  
templates/webpages/client_config/_posting_configuration.html
148 148
   <td>[% L.input_tag('defaults.fuzzy_skonto_percentage_as_number', SELF.defaults.fuzzy_skonto_percentage_as_number, size=5, class="numeric") %]%</td>
149 149
   <td>[% LxERP.t8("The allowed Skonto Percentage Deivation defaults to 0.5% of the invoice amount") %]</td>
150 150
  </tr>
151

  
151
  <tr>
152
   <td align="right">[% LxERP.t8('Use END-TO-END-ID to detect duplicates in bank import transactions') %]</td>
153
   <td>[% L.yes_no_tag('defaults.check_bt_duplicates_endtoend', SELF.defaults.check_bt_duplicates_endtoend) %]</td>
154
   <td>[% LxERP.t8("If set to yes and a end-to-end- id can be extracted from the transaction this will be used to detect duplicates instead of the transaction purpose.") %]</td>
155
  </tr>
152 156
 </table>
153 157
</div>

Auch abrufbar als: Unified diff