|
|
|
completegoods -- 完工货品
zhu @ 2009-6-11 15:22:00
- CREATE TABLE[completegoods](
- [ID] integer identity(1,1) not null CONSTRAINT [PK_completegoods] PRIMARY KEY,
- [GoodsID] varchar(50) null,
- [Unit] varchar(20) null,
- [PQty] INTEGER null,
- [PPrice] money null,
- [PCost] money null,
- [Qtyi] float not NULL,
- [Qtyo] float not NULL,
- [period] varchar(8) not null,
- [bdate] datetime null,
- [S1] varchar(20) null,
- [S2] varchar(100) null,
- [S3] varchar(200) null,
- [I1] INTEGER null,
- [I2] INTEGER null,
- [I3] INTEGER null
- );
说明:
实际数量 = [Qtyi] - [Qtyo]
|