Revision b8f55e88
Von Jan Büren vor fast 10 Jahren hinzugefügt
SL/DO.pm | ||
---|---|---|
298 | 298 |
|
299 | 299 |
CVar->get_non_editable_ic_cvars(form => $form, |
300 | 300 |
dbh => $dbh, |
301 |
row => $i,
|
|
301 |
row => $i, |
|
302 | 302 |
sub_module => 'delivery_order_items', |
303 | 303 |
may_converted_from => ['orderitems', 'delivery_order_items']); |
304 | 304 |
|
... | ... | |
1008 | 1008 |
|
1009 | 1009 |
CVar->get_non_editable_ic_cvars(form => $form, |
1010 | 1010 |
dbh => $dbh, |
1011 |
row => $i,
|
|
1011 |
row => $i, |
|
1012 | 1012 |
sub_module => 'delivery_order_items', |
1013 | 1013 |
may_converted_from => ['orderitems', 'delivery_order_items']); |
1014 | 1014 |
|
... | ... | |
1190 | 1190 |
'transfer_type' => $params{direction} eq 'in' ? 'stock' : 'shipped', |
1191 | 1191 |
'project_id' => $request->{project_id}, |
1192 | 1192 |
'delivery_order_items_stock_id' => $request->{delivery_order_items_stock_id}, |
1193 |
'comment' => $request->{comment}, |
|
1193 | 1194 |
}; |
1194 | 1195 |
} |
1195 | 1196 |
|
bin/mozilla/do.pl | ||
---|---|---|
1599 | 1599 |
'bin_id' => $part_info_map{$form->{"id_$i"}}{bin_id}, |
1600 | 1600 |
'qty' => $qty, |
1601 | 1601 |
'parts_id' => $form->{"id_$i"}, |
1602 |
'comment' => 'Default transfer DO', |
|
1603 |
'ok' => 1, |
|
1602 |
'comment' => $locale->text("Default transfer delivery order"), |
|
1604 | 1603 |
'unit' => $part_info_map{$form->{"id_$i"}}{unit}, |
1605 | 1604 |
'warehouse_id' => $part_info_map{$form->{"id_$i"}}{warehouse_id}, |
1606 | 1605 |
'oe_id' => $form->{id}, |
templates/webpages/client_config/_warehouse.html | ||
---|---|---|
56 | 56 |
</tr> |
57 | 57 |
|
58 | 58 |
<tr> |
59 |
<td align="right" nowrap="true">[% LxERP.t8('Default Warehouse with ignoring on hand') %]</td>
|
|
59 |
<td align="right" nowrap="true">[% LxERP.t8('Default Warehouse with ignoring onhand') %]</td> |
|
60 | 60 |
<td> |
61 | 61 |
[% L.select_tag('defaults.warehouse_id_ignore_onhand', SELF.all_warehouses, id='warehouse_id_ignore_onhand', with_empty=1, default=SELF.defaults.warehouse_id_ignore_onhand, title_key='description', |
62 | 62 |
onchange="warehouse_selected(this.selectedIndex == 0 ? -1 : warehouses[this.selectedIndex - 1].id, -1, 'bin_id_ignore_onhand')") %] |
63 | 63 |
</td> |
64 | 64 |
<td> |
65 |
[% LxERP.t8('This is the default bin for ignoring onhand') %]<br> |
|
66 |
[% LxERP.t8('If the default transfer out always succeed use this bin for negative stock quantity.') %]<br> |
|
65 |
[% LxERP.t8('This is the default warehouse for ignoring onhand') %]<br> |
|
67 | 66 |
</td> |
68 | 67 |
</tr> |
69 | 68 |
<tr> |
70 | 69 |
<td align="right" nowrap="true">[% LxERP.t8('Default Bin with ignoring onhand') %]</td> |
71 | 70 |
<td>[% L.select_tag('defaults.bin_id_ignore_onhand', [], id='bin_id_ignore_onhand', with_empty=1) %]</td> |
71 |
<td>[% LxERP.t8('If the default transfer out always succeed use this bin for negative stock quantity.') %]</td> |
|
72 | 72 |
</tr> |
73 |
|
|
74 | 73 |
<tr><td colspan="3"><hr /></td></tr> |
75 | 74 |
<tr> |
76 | 75 |
<td align="right">[% LxERP.t8('Transfer out on posting sales invoices?') %]</td> |
... | ... | |
81 | 80 |
[% LxERP.t8('Transfer out all items of a sales invoice when posting it. Items are transfered out acording to the settings above.') %] |
82 | 81 |
</td> |
83 | 82 |
</tr> |
84 |
|
|
85 | 83 |
<tr><td colspan="3"><hr /></td></tr> |
86 | 84 |
<tr> |
87 | 85 |
<tr> |
... | ... | |
118 | 116 |
[% LxERP.t8('The default delivery plan only checks if all delivery orders have been created not if the goods are transferred. This feature will check if all the goods are transferred. Caveat: Only the state of the delivery orders are checked not partial transferred delivery orders (in technical terms: the table inventory is not checked') %] |
119 | 117 |
</td> |
120 | 118 |
</tr> |
121 |
|
|
122 | 119 |
</table> |
123 | 120 |
</div> |
Auch abrufbar als: Unified diff
Standardlagerverfahren Kommentar setzen / übernehmen
Beim Standardauslagern wurde bisher nicht der Kommentar übernommen, der
seit Anfang dieser Funktion in do.pl gesetzt wurde. Ferner die Beschreibung
in der Mandantenkonfiguration etwas besser gesetzt, bzw. beschrieben.