Revision 88bfacbf
Von Moritz Bunkus vor mehr als 10 Jahren hinzugefügt
locale/de/all | ||
---|---|---|
1574 | 1574 |
'No vendor has been selected yet.' => 'Es wurde noch kein Lieferant ausgewählt.', |
1575 | 1575 |
'No warehouse has been created yet or the quantity of the bins is not configured yet.' => 'Es wurde noch kein Lager angelegt, bzw. die dazugehörigen Lagerplätze sind noch nicht konfiguriert.', |
1576 | 1576 |
'No.' => 'Position', |
1577 |
'No/individual shipping address' => 'Keine/individuelle Lieferadresse', |
|
1577 | 1578 |
'None' => 'Kein', |
1578 | 1579 |
'Normal users cannot log in.' => 'Normale Benutzer können sich nicht anmelden.', |
1579 | 1580 |
'Normalize Customer / Vendor names' => 'Normalisierung Kunden- / Lieferantennamen', |
templates/webpages/do/form_header.html | ||
---|---|---|
166 | 166 |
[%- END %] |
167 | 167 |
|
168 | 168 |
[%- ELSE %] |
169 |
[% L.select_tag('shipto_id', ALL_SHIPTO, default = shipto_id, value_key = 'shipto_id', title_key = 'displayable_id', with_empty = 1, class = 'fixed_width') %] |
|
169 |
[% shiptos = [ [ "", LxERP.t8("No/individual shipping address") ] ] ; |
|
170 |
L.select_tag('shipto_id', shiptos.import(ALL_SHIPTO), default=shipto_id, value_key='shipto_id', title_key='displayable_id', style='width: 250px') %] |
|
170 | 171 |
[%- END %] |
171 | 172 |
</td> |
172 | 173 |
</tr> |
templates/webpages/is/form_header.html | ||
---|---|---|
77 | 77 |
<tr> |
78 | 78 |
<th align="right">[% 'Shipping Address' | $T8 %]</th> |
79 | 79 |
<td> |
80 |
[% L.select_tag('shipto_id', ALL_SHIPTO, default = shipto_id, value_key = 'shipto_id', title_key = 'displayable_id', with_empty = 1, style='width: 250px', onChange = "document.getElementById('update_button').click();") %] |
|
80 |
[% shiptos = [ [ "", LxERP.t8("No/individual shipping address") ] ] ; |
|
81 |
L.select_tag('shipto_id', shiptos.import(ALL_SHIPTO), default=shipto_id, value_key='shipto_id', title_key='displayable_id', style='width: 250px') %] |
|
81 | 82 |
</td> |
82 | 83 |
</tr> |
83 | 84 |
[%- END %] |
templates/webpages/oe/form_header.html | ||
---|---|---|
79 | 79 |
<tr> |
80 | 80 |
<th align="right">[% 'Shipping Address' | $T8 %]</th> |
81 | 81 |
<td> |
82 |
[% L.select_tag('shipto_id', ALL_SHIPTO, default=shipto_id, value_key='shipto_id', title_key='displayable_id', with_empty=1, style='width: 250px', onChange="document.getElementById('update_button').click();") %] |
|
82 |
[% shiptos = [ [ "", LxERP.t8("No/individual shipping address") ] ] ; |
|
83 |
L.select_tag('shipto_id', shiptos.import(ALL_SHIPTO), default=shipto_id, value_key='shipto_id', title_key='displayable_id', style='width: 250px') %] |
|
83 | 84 |
</td> |
84 | 85 |
</tr> |
85 | 86 |
[%- END %] |
Auch abrufbar als: Unified diff
Verkauf: leeren Eintrag in Lieferadressendropdown klarer benennen
Angezeigt wird nun »Keine/individuelle Lieferadresse«, um es den
Benutzern klarer zu machen, dass die über den Button »Lieferadresse«
eingetragene Lieferadresse greift.