mtime => { type => 'timestamp' },
not_discountable => { type => 'boolean', default => 'false' },
notes => { type => 'text' },
- obsolete => { type => 'boolean', default => 'false' },
+ obsolete => { type => 'boolean', default => 'false', not_null => 1 },
onhand => { type => 'numeric', default => '0', precision => 25, scale => 5 },
+ order_locked => { type => 'boolean', default => 'false' },
+ order_qty => { type => 'numeric', default => '0', not_null => 1, precision => 15, scale => 5 },
part_type => { type => 'enum', check_in => [ 'part', 'service', 'assembly', 'assortment' ], db_type => 'part_type_enum', not_null => 1 },
partnumber => { type => 'text', not_null => 1 },
partsgroup_id => { type => 'integer' },
sellprice => { type => 'numeric', precision => 15, scale => 5 },
shop => { type => 'boolean', default => 'false' },
stockable => { type => 'boolean', default => 'false' },
+ tariff_code => { type => 'text' },
unit => { type => 'varchar', length => 20, not_null => 1 },
ve => { type => 'integer' },
warehouse_id => { type => 'integer' },