Revision 5ebbc846
Von Moritz Bunkus vor fast 18 Jahren hinzugefügt
SL/AM.pm | ||
---|---|---|
1537 | 1537 |
servicenumber = '$form->{servicenumber}', |
1538 | 1538 |
yearend = '$form->{yearend}', |
1539 | 1539 |
curr = '$form->{curr}', |
1540 |
weightunit = '$form->{weightunit}', |
|
1541 | 1540 |
businessnumber = '$form->{businessnumber}' |
1542 | 1541 |
|; |
1543 | 1542 |
$dbh->do($query) || $form->dberror($query); |
SL/IC.pm | ||
---|---|---|
1519 | 1519 |
} |
1520 | 1520 |
$sth->finish; |
1521 | 1521 |
|
1522 |
if ($form->{id}) { |
|
1523 |
$query = qq|SELECT weightunit |
|
1524 |
FROM defaults|; |
|
1525 |
$sth = $dbh->prepare($query); |
|
1526 |
$sth->execute || $form->dberror($query); |
|
1527 |
|
|
1528 |
($form->{weightunit}) = $sth->fetchrow_array; |
|
1529 |
$sth->finish; |
|
1530 |
|
|
1531 |
} else { |
|
1532 |
$query = qq|SELECT weightunit, current_date |
|
1533 |
FROM defaults|; |
|
1522 |
if (!$form->{id}) { |
|
1523 |
$query = qq|SELECT current_date FROM defaults|; |
|
1534 | 1524 |
$sth = $dbh->prepare($query); |
1535 | 1525 |
$sth->execute || $form->dberror($query); |
1536 | 1526 |
|
1537 |
($form->{weightunit}, $form->{priceupdate}) = $sth->fetchrow_array;
|
|
1527 |
($form->{priceupdate}) = $sth->fetchrow_array; |
|
1538 | 1528 |
$sth->finish; |
1539 | 1529 |
} |
1540 | 1530 |
|
bin/mozilla/am.pl | ||
---|---|---|
3109 | 3109 |
<tr> |
3110 | 3110 |
<th align=right>| . $locale->text('Year End') . qq| (mm/dd)</th> |
3111 | 3111 |
<td><input name=yearend size=5 value=$form->{defaults}{yearend}></td> |
3112 |
<th align=right>| . $locale->text('Weight Unit') . qq|</th> |
|
3113 |
<td><input name=weightunit size=5 value="$form->{defaults}{weightunit}"></td> |
|
3114 | 3112 |
</tr> |
3115 | 3113 |
</table> |
3116 | 3114 |
</td> |
bin/mozilla/ic.pl | ||
---|---|---|
2334 | 2334 |
<td> |
2335 | 2335 |
<input name=weight size=10 value=$form->{weight}> |
2336 | 2336 |
</td> |
2337 |
<th> |
|
2338 |
|
|
2339 |
$form->{weightunit} |
|
2340 |
<input type=hidden name=weightunit value=$form->{weightunit}> |
|
2341 |
</th> |
|
2342 | 2337 |
</tr> |
2343 | 2338 |
</table> |
2344 | 2339 |
</td> |
... | ... | |
2369 | 2364 |
$form->{weight} |
2370 | 2365 |
<input type=hidden name=weight value=$form->{weight}> |
2371 | 2366 |
</td> |
2372 |
<th> |
|
2373 |
|
|
2374 |
$form->{weightunit} |
|
2375 |
<input type=hidden name=weightunit value=$form->{weightunit}> |
|
2376 |
</th> |
|
2377 | 2367 |
</tr> |
2378 | 2368 |
</table> |
2379 | 2369 |
</td> |
locale/de/all | ||
---|---|---|
1111 | 1111 |
'Warehouses' => 'Lager', |
1112 | 1112 |
'Warnings during template upgrade' => 'Warnungen bei Aktualisierung der Dokumentenvorlagen', |
1113 | 1113 |
'Weight' => 'Gewicht', |
1114 |
'Weight Unit' => 'Gewichtseinheit', |
|
1115 | 1114 |
'What type of item is this?' => 'Was ist dieser Artikel?', |
1116 | 1115 |
'Workflow purchase_order' => 'Workflow Lieferantenauftrag', |
1117 | 1116 |
'Workflow request_quotation' => 'Workflow Preisanfrage', |
locale/de/am | ||
---|---|---|
279 | 279 |
'Warehouse deleted!' => 'Das Lager wurde gel?scht.', |
280 | 280 |
'Warehouse saved!' => 'Das Lager wurde gespeichert.', |
281 | 281 |
'Warehouses' => 'Lager', |
282 |
'Weight Unit' => 'Gewichtseinheit', |
|
283 | 282 |
'Year End' => 'Jahresende', |
284 | 283 |
'Yes' => 'Ja', |
285 | 284 |
'dimension units' => 'Maßeinheiten', |
Auch abrufbar als: Unified diff
"Gewichtseinheit" entfernt.