fasub -- 固定资产子信息
zhu @ 2009-6-11 15:07:00
- create table [fasub](
- [id] Counter not null CONSTRAINT [PK_fasubid] PRIMARY KEY,
- [ccode] text(20) not null,
- [fatype] INTEGER not null,
- [fadate] Datetime not null,
- [summary] text(200) not null,
- [CompanyID] text(50) not null,
- [debitQty] INTEGER default 0,
- [creditQty] INTEGER default 0,
- [debit] Currency default 0,
- [credit] Currency default 0,
- [debitDep] Currency default 0,
- [creditDep] Currency default 0,
- [price] double default 0,
- [deped] Currency default 0,
- [acid_fee] text(50) null,
- [DeptStaffID] TEXT(50) not null,
- ac_voucher memo null,
- [PrjID] TEXT(50) not null,
- [S1] text(20) null,
- [S2] text(100) null,
- [S3] text(200) null,
- [I1] INTEGER null,
- [I2] INTEGER null,
- [I3] INTEGER null
- );
说明:
1). [ccode] 固定资产代码 关联[fa]表主键。
2). [fatype ] 固定资产类型
fatype=2 表示初始化,0表示变动(增加), 1表示变动(减少), 3表示折旧生成的。
3). [debitDep] [creditDep] 记录计提折旧当月折旧的金额。
4). [summary] 输入你增加固定资产时的支付方式,以便生成固定资产变动凭证。如果不输入,系统将跳过这个固定资产增加凭证的生成。
5). [debit] 固定资产增加时的金额。
6). [credit] 固定资产变动减少时的金额。
|