Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 9ea55a4e

Von Jan Büren vor mehr als 3 Jahren hinzugefügt

  • ID 9ea55a4e0dceba7470a477744cf29deb95eb09a8
  • Vorgänger 455d008c
  • Nachfolger cfb7f3d1

ShippedQty: Verwaiste Option fill_up aus Mandantenkonfig entfernt

Unterschiede anzeigen:

SL/DB/MetaSetup/Default.pm
161 161
  sepa_set_skonto_date_as_default_exec_date => { type => 'boolean', default => 'false' },
162 162
  sepa_set_skonto_date_buffer_in_days       => { type => 'integer', default => '0' },
163 163
  servicenumber                             => { type => 'text' },
164
  shipped_qty_fill_up                       => { type => 'boolean', default => 'true', not_null => 1 },
165
  shipped_qty_item_identity_fields          => { type => 'array', default => '{parts_id}', not_null => 1 },
166 164
  shipped_qty_require_stock_out             => { type => 'boolean', default => 'false', not_null => 1 },
167 165
  show_bestbefore                           => { type => 'boolean', default => 'false' },
168 166
  show_longdescription_select_item          => { type => 'boolean', default => 'false' },
sql/Pg-upgrade2/drop_shipped_qty_config.sql
1
-- @tag: drop_shipped_qty_config
2
-- @description: Verwaiste Optionen löschen
3
-- @depends: release_3_5_7
4

  
5
ALTER TABLE defaults DROP COLUMN shipped_qty_fill_up;
6
ALTER TABLE defaults DROP COLUMN shipped_qty_item_identity_fields;
7

  
8

  
templates/webpages/client_config/_features.html
390 390
   <td align="right">[% LxERP.t8('Assortment') %]</td>
391 391
   <td>[% L.yes_no_tag('defaults.feature_experimental_assortment', SELF.defaults.feature_experimental_assortment) %]</td>
392 392
  </tr>
393

  
394
 <tr><td class="listheading" colspan="4">[% LxERP.t8("Shipped Quantity Algorithm") %]</td></tr>
395
 <tr>
396
  <td align="right">[% LxERP.t8('Require stock out to consider a delivery order position delivered?') %]</td>
397
  <td>[% L.yes_no_tag('defaults.shipped_qty_require_stock_out', SELF.defaults.shipped_qty_require_stock_out) %]</td>
398
  <td>[% LxERP.t8('If yes, delivery order positions are considered "delivered" only if they have been stocked out of the inventory. Otherwise saving the delivery order is considered delivered.') %]</td>
399
 </tr>
400
 <tr>
401
  <td align="right">[% LxERP.t8('Use fill up when calculating shipped quantities?') %]</td>
402
  <td>[% L.yes_no_tag('defaults.shipped_qty_fill_up', SELF.defaults.shipped_qty_fill_up) %]</td>
403
  <td>[% LxERP.t8('Linked positions will always be reconciled first. If this is set to yes, unlinked positions will be reconciled in a second step. This is necessary in very old databases (with open delivery orders from before 3.4.0) and in businesses where delivery orders are frequently amended. Usually the direct links are faster and more accurate. Defaults to true for historical reasons only.') %]</td>
404
 </tr>
405
 <tr>
406
  <td align="right">[% LxERP.t8('Position identity fields for fill up?') %]</td>
407
  <td>
408
    [% L.select_tag("defaults.shipped_qty_item_identity_fields[]", SELF.available_shipped_qty_item_identity_fields, id="defaults_shipped_qty_item_identity_fields", multiple=1, default=SELF.defaults.shipped_qty_item_identity_fields) %]
409
    [% L.multiselect2side("defaults_shipped_qty_item_identity_fields", labelsx=LxERP.t8("Available identity fields"), labeldx=LxERP.t8("Selected identity fields")) %]</td>
410
  <td>[% LxERP.t8('Only applies if the previous is set to true. When filling up unlinked positions, consider them matches if ALL of these fields match. For example, in a business with variants that are defined by a special description, description needs to be part of the identity. If delivering several similar order positions by delivery date is common, reqdate should be included in the identity. Serialnumber is useful when the serialnumber in the order and delivery order has to match.') %]</td>
411
 </tr>
412

  
413 393
 <tr><td class="listheading" colspan="4">[% 'Displayable Name Preferences' | $T8 %]</td></tr>
414 394
 [% FOREACH module=SELF.displayable_name_specs_by_module.keys.sort %]
415 395
 [%- SET spec=SELF.displayable_name_specs_by_module.$module -%]
templates/webpages/client_config/_warehouse.html
150 150
    [% LxERP.t8('Ignore services for the purchase orders state of delivery') %]
151 151
   </td>
152 152
  </tr>
153
 <tr><td class="listheading" colspan="4">[% LxERP.t8("Shipped Quantity Algorithm") %]</td></tr>
154
 <tr>
155
  <td align="right">[% LxERP.t8('Require stock out to consider a delivery order position delivered?') %]</td>
156
  <td>[% L.yes_no_tag('defaults.shipped_qty_require_stock_out', SELF.defaults.shipped_qty_require_stock_out) %]</td>
157
  <td>[% LxERP.t8('If yes, delivery order positions are considered "delivered" only if they have been stocked out of the inventory. Otherwise saving the delivery order is considered delivered.') %]</td>
158
 </tr>
153 159
 </table>
154 160
</div>

Auch abrufbar als: Unified diff