# $locale->text('return_material')
# $locale->text('release_material')
# $locale->text('assembled')
+# $locale->text('stocktaking')
# --------------------------------------------------------------------
# Transfer
'start upload' => 'Hochladen beginnt',
'stock' => 'Einlagerung',
'stock_br' => 'Eingel.',
+ 'stocktaking' => 'Inventur',
'succeeded' => 'erfolgreich',
'sum' => 'Summe',
'tax_chartaccno' => 'Automatikkonto',
'start upload' => '',
'stock' => '',
'stock_br' => 'stock',
+ 'stocktaking' => '',
'succeeded' => '',
'sum' => '',
'tax_chartaccno' => '',
--- /dev/null
+-- @tag: transfer_type_stocktaking
+-- @description: neuer Transfertyp stocktaking für Inventur
+-- @depends: warehouse
+
+INSERT INTO transfer_type (direction, description, sortkey) VALUES ('in', 'stocktaking', (SELECT COALESCE(MAX(sortkey), 0) + 1 FROM transfer_type));
+INSERT INTO transfer_type (direction, description, sortkey) VALUES ('out', 'stocktaking', (SELECT COALESCE(MAX(sortkey), 0) + 1 FROM transfer_type));