--- /dev/null
+# This file has been auto-generated. Do not modify it; it will be overwritten
+# by rose_auto_create_model.pl automatically.
+package SL::DB::Stocktaking;
+
+use strict;
+
+use parent qw(SL::DB::Object);
+
+__PACKAGE__->meta->table('stocktakings');
+
+__PACKAGE__->meta->columns(
+ bestbefore => { type => 'date' },
+ bin_id => { type => 'integer', not_null => 1 },
+ chargenumber => { type => 'text', default => '', not_null => 1 },
+ comment => { type => 'text' },
+ cutoff_date => { type => 'date', not_null => 1 },
+ employee_id => { type => 'integer', not_null => 1 },
+ id => { type => 'integer', not_null => 1, sequence => 'id' },
+ inventory_id => { type => 'integer' },
+ itime => { type => 'timestamp', default => 'now()' },
+ mtime => { type => 'timestamp' },
+ parts_id => { type => 'integer', not_null => 1 },
+ qty => { type => 'numeric', not_null => 1, precision => 25, scale => 5 },
+ warehouse_id => { type => 'integer', not_null => 1 },
+);
+
+__PACKAGE__->meta->primary_key_columns([ 'id' ]);
+
+__PACKAGE__->meta->allow_inline_column_values(1);
+
+__PACKAGE__->meta->foreign_keys(
+ bin => {
+ class => 'SL::DB::Bin',
+ key_columns => { bin_id => 'id' },
+ },
+
+ employee => {
+ class => 'SL::DB::Employee',
+ key_columns => { employee_id => 'id' },
+ },
+
+ inventory => {
+ class => 'SL::DB::Inventory',
+ key_columns => { inventory_id => 'id' },
+ },
+
+ parts => {
+ class => 'SL::DB::Part',
+ key_columns => { parts_id => 'id' },
+ },
+
+ warehouse => {
+ class => 'SL::DB::Warehouse',
+ key_columns => { warehouse_id => 'id' },
+ },
+);
+
+1;
+;
--- /dev/null
+-- @tag: stocktakings
+-- @description: Tabelle für in einer Inventur gezählte Artikel
+-- @depends: warehouse
+
+
+CREATE TABLE stocktakings (
+ id INTEGER NOT NULL DEFAULT nextval('id'),
+ inventory_id INTEGER REFERENCES inventory(id),
+ warehouse_id INTEGER NOT NULL REFERENCES warehouse(id),
+ bin_id INTEGER NOT NULL REFERENCES bin(id),
+ parts_id INTEGER NOT NULL REFERENCES parts(id),
+ employee_id INTEGER NOT NULL REFERENCES employee(id),
+ qty NUMERIC(25,5) NOT NULL ,
+ comment TEXT,
+ chargenumber TEXT NOT NULL DEFAULT '',
+ bestbefore DATE,
+ cutoff_date DATE NOT NULL,
+ itime TIMESTAMP DEFAULT now(),
+ mtime TIMESTAMP,
+
+ PRIMARY KEY (id)
+);
+
+CREATE TRIGGER mtime_stocktakings BEFORE UPDATE ON stocktakings FOR EACH ROW EXECUTE PROCEDURE set_mtime();