Revision dc3382e8
Von Bernd Bleßmann vor etwa 7 Jahren hinzugefügt
SL/DB/Helper/ALL.pm | ||
---|---|---|
use SL::DB::ShopOrderItem;
|
||
use SL::DB::ShopPart;
|
||
use SL::DB::Status;
|
||
use SL::DB::Stocktaking;
|
||
use SL::DB::Tax;
|
||
use SL::DB::TaxKey;
|
||
use SL::DB::TaxZone;
|
SL/DB/Helper/Mappings.pm | ||
---|---|---|
shop_order_items => 'shop_order_item',
|
||
shop_parts => 'shop_part',
|
||
status => 'status',
|
||
stocktakings => 'stocktaking',
|
||
tax => 'tax',
|
||
taxkeys => 'tax_key',
|
||
tax_zones => 'tax_zone',
|
SL/DB/Manager/Stocktaking.pm | ||
---|---|---|
# This file has been auto-generated only because it didn't exist.
|
||
# Feel free to modify it at will; it will not be overwritten automatically.
|
||
|
||
package SL::DB::Manager::Stocktaking;
|
||
|
||
use strict;
|
||
|
||
use parent qw(SL::DB::Helper::Manager);
|
||
|
||
sub object_class { 'SL::DB::Stocktaking' }
|
||
|
||
__PACKAGE__->make_manager_methods;
|
||
|
||
1;
|
SL/DB/MetaSetup/Stocktaking.pm | ||
---|---|---|
# 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;
|
||
;
|
SL/DB/Stocktaking.pm | ||
---|---|---|
# This file has been auto-generated only because it didn't exist.
|
||
# Feel free to modify it at will; it will not be overwritten automatically.
|
||
|
||
package SL::DB::Stocktaking;
|
||
|
||
use strict;
|
||
|
||
use SL::DB::MetaSetup::Stocktaking;
|
||
use SL::DB::Manager::Stocktaking;
|
||
|
||
__PACKAGE__->meta->initialize;
|
||
|
||
1;
|
sql/Pg-upgrade2/stocktakings.sql | ||
---|---|---|
-- @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();
|
Auch abrufbar als: Unified diff
Inventur: neue Tabelle für gezählte Artikel. DB-Upgrade und Rose