Revision b5a87c8f
Von Sven Schöling vor etwa 12 Jahren hinzugefügt
bin/mozilla/ic.pl | ||
---|---|---|
38 | 38 |
use SL::AM; |
39 | 39 |
use SL::CVar; |
40 | 40 |
use SL::IC; |
41 |
use SL::Helper::Flash; |
|
41 | 42 |
use SL::ReportGenerator; |
42 | 43 |
|
43 | 44 |
#use SL::PE; |
... | ... | |
1585 | 1586 |
IC->retrieve_buchungsgruppen(\%myconfig, $form); |
1586 | 1587 |
@{ $form->{BUCHUNGSGRUPPEN} } = grep { $_->{id} eq $form->{buchungsgruppen_id} || ($form->{id} && $form->{orphaned}) || !$form->{id} } @{ $form->{BUCHUNGSGRUPPEN} }; |
1587 | 1588 |
|
1589 |
if (!SL::TransNumber->new(number => $form->{partnumber}, type => $form->{item}, id => $form->{id})->is_unique) { |
|
1590 |
flash('info', $::locale->text('This partnumber is not unique. You should change it.')); |
|
1591 |
} |
|
1592 |
|
|
1588 | 1593 |
# use JavaScript Calendar or not (yes!) |
1589 | 1594 |
$form->{jsscript} = 1; |
1590 | 1595 |
|
locale/de/all | ||
---|---|---|
2057 | 2057 |
'This option controls the inventory system.' => 'Dieser Parameter legt die Warenbuchungsmethode fest.', |
2058 | 2058 |
'This option controls the method used for profit determination.' => 'Dieser Parameter legt die Berechnungsmethode für die Gewinnermittlung fest.', |
2059 | 2059 |
'This option controls the posting and calculation behavior for the accounting method.' => 'Dieser Parameter steuert die Buchungs- und Berechnungsmethoden für die Versteuerungsart.', |
2060 |
'This partnumber is not unique. You should change it.' => 'Diese Artikelnummer ist nicht eindeutig. Bitte wählen Sie eine andere.', |
|
2060 | 2061 |
'This transaction has to be split into several transactions manually.' => 'Diese Buchung muss manuell in mehrere Buchungen aufgeteilt werden.', |
2061 | 2062 |
'This update will change the nature the onhand of goods is tracked.' => 'Dieses update ändert die Art und Weise wie Lagermengen gezält werden.', |
2062 | 2063 |
'This upgrade script tries to map all existing parts in the database to the newly created Buchungsgruppen.' => 'Dieses Upgradescript versucht, bei allen bestehenden Artikeln neu erstellte Buchungsgruppen zuzuordnen.', |
templates/webpages/ic/form_header.html | ||
---|---|---|
6 | 6 |
|
7 | 7 |
<p><div class="listtop">[% title %] [% HTML.escape(partnumber) %] [% HTML.escape(description) %]</div></p> |
8 | 8 |
|
9 |
[% PROCESS 'common/flash.html' %] |
|
10 |
|
|
9 | 11 |
<form method="post" name="ic" action="[% script %]"> |
10 | 12 |
|
11 | 13 |
<input name="id" type="hidden" value="[% HTML.escape(id) %]"> |
Auch abrufbar als: Unified diff
Zusätzliche Debuginfo bei Waren mit doppelter Nummer.