59 lines
1.3 KiB
Plaintext
59 lines
1.3 KiB
Plaintext
|
|
alter table INVENTORY add (trim_Qty float);
|
||
|
|
|
||
|
|
#2022-12-30
|
||
|
|
alter table INVENTORY add receivedRecordId numeric(19);
|
||
|
|
|
||
|
|
#2022-12-30
|
||
|
|
alter table MOVE_DOC_DETAIL add receivedRecordId numeric(18);
|
||
|
|
|
||
|
|
#2023-01-04
|
||
|
|
alter table INVENTORY_LOG add SRCLOC_ID numeric(18);
|
||
|
|
|
||
|
|
#2023-01-11
|
||
|
|
#打印任务表
|
||
|
|
create table PrintTask(
|
||
|
|
id int not null primary key IDENTITY(1,1) ,
|
||
|
|
type varchar(50),
|
||
|
|
status varchar(50),
|
||
|
|
quantity int ,
|
||
|
|
content text,
|
||
|
|
createName varchar(50),
|
||
|
|
createDate datetime,
|
||
|
|
mac varchar(50),
|
||
|
|
printTime datetime,
|
||
|
|
printName varchar(50)
|
||
|
|
);
|
||
|
|
|
||
|
|
#2023-01-11
|
||
|
|
#打印设备表
|
||
|
|
create table PrintEquipment(
|
||
|
|
id int not null primary key IDENTITY(1,1) ,
|
||
|
|
type varchar(50),
|
||
|
|
mac varchar(50),
|
||
|
|
printName varchar(50)
|
||
|
|
|
||
|
|
);
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
#2023-01-21
|
||
|
|
alter table INVENTORY add statuss varchar(20);
|
||
|
|
|
||
|
|
#2023-02-02
|
||
|
|
alter table equipment add printerB varchar(500);
|
||
|
|
alter table equipment add printerC varchar(500);
|
||
|
|
alter table equipment add printerD varchar(500);
|
||
|
|
alter table equipment add printerE varchar(500);
|
||
|
|
|
||
|
|
#
|
||
|
|
alter table PrintTask add printTitle varchar(50);
|
||
|
|
|
||
|
|
#2023-06-04
|
||
|
|
alter table item add BeInventory bit;
|
||
|
|
alter table location add BeInventorys bit;
|
||
|
|
update item set BeInventory=0 where BeInventory is null;
|
||
|
|
update location set BeInventorys=0 where BeInventory is null;
|
||
|
|
#2023-06-14
|
||
|
|
alter table SHIXIAO add pandian numeric(18);
|
||
|
|
alter table SHIXIAO add zhengli numeric(18);
|