/* ================================================================================ 档案代号:oag_file 档案名称:收款条件档 档案目的: 上游档案: 下游档案: ============.========================.========================================== */ create table oag_file ( oag01 varchar2(6) NOT NULL, /*收款条件编号 */ oag02 varchar2(255), /*说明 */ oag03 varchar2(1), /*应收款日 */ /*应收款日(客户付款)起算基准 (1/4) */ /* 1.出货日 (Net N Days) */ /* 3.订单日 */ /* 4.出货日次月初 (月结 N Days) */ /* 6.订单日次月初 */ oag041 number(5), /*应收款日为起算日起加几月 */ /*应收款日为起算日起加几月 010504 add */ oag04 number(5), /*应收款日为起算日起加几天 */ oag05 number(9,4), /*折扣率 */ /*折扣率(%) */ oag06 varchar2(1), /*票到期日 */ /*票到期日(现金入帐)起算基准(1/3/4) */ /* 1.出货日 (Net N Days) */ /* 4.出货日次月初 (月结 N Days) */ /* 3.应收款日 */ oag071 number(5), /*票据到期日为起算日起加几月 */ /*票据到期日为起算日起加几月 010504 add */ oag07 number(5), /*票据到期日为起算日起加几天 */ oag08 varchar2(1), /*No Use */ oag09 varchar2(1) /*No Use */ ); create unique index oag_pk on oag_file (oag01); alter table oag_file add constraint oag_pk primary key (oag01) enable validate; grant select on oag_file to public; grant index on oag_file to public; grant update on oag_file to public; grant delete on oag_file to public; grant insert on oag_file to public; |