23 lines
769 B
Plaintext
23 lines
769 B
Plaintext
------------------------------
|
||
托盘库编码:FStockPallet
|
||
料箱库编码: FStockId
|
||
虚拟库编码: FicStockId
|
||
-- 初始化仓库
|
||
UPDATE st_ivt_structattr set lock_type = '00' where stor_code = 'FStockId' and vehicle_code is not null;
|
||
UPDATE st_ivt_structattr set vehicle_code = null where stor_code = 'FStockId';
|
||
-- 初始化流程数据
|
||
delete from act_hi_execution;
|
||
delete from act_ru_execution;
|
||
-- 初始化出入库
|
||
delete from st_ivt_structivtflow;
|
||
delete from st_ivt_iostorinv;
|
||
delete from st_ivt_iostorinvdtl;
|
||
-- 初始化单据
|
||
delete from pm_form_data;
|
||
-- 初始化组盘
|
||
delete from md_group_dick;
|
||
delete from md_pb_vehiclemater;
|
||
-- 初始化任务
|
||
delete from sch_base_task;
|
||
------------------------------
|