2024-12-18 10:38:31 +08:00
|
|
|
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);
|
2025-03-05 10:37:39 +08:00
|
|
|
|
|
|
|
|
#2023-03-5 添加 库区LOC配置
|
|
|
|
|
CREATE TABLE [dbo].[ZONE_PLANT] (
|
|
|
|
|
[ID] numeric(19) IDENTITY(1,1) NOT NULL,
|
|
|
|
|
[ZONE_ID] int NULL,
|
|
|
|
|
[PLANE_LOCATION_ID] int NULL,
|
|
|
|
|
CONSTRAINT [PK__zone_pla__3213E83FEFD8CD6E] PRIMARY KEY CLUSTERED ([ID])
|
|
|
|
|
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON)
|
|
|
|
|
ON [PRIMARY]
|
|
|
|
|
)
|
|
|
|
|
ON [PRIMARY]
|
|
|
|
|
GO
|
|
|
|
|
|
|
|
|
|
ALTER TABLE [dbo].[ZONE_PLANT] SET (LOCK_ESCALATION = TABLE)
|