/*
================================================================================
档案代号:crh_file
档案名称:成品/材料异动冲帐记录档
档案目的:记录成品/材料之异动/报关冲帐之异动资料
上游档案:
下游档案:
============.========================.==========================================
*/
create table crh_file
(
crh01       number(10) NOT NULL,     /*冲帐序号                               */
crh02       date,                    /*冲帐日期                               */
crh03       varchar2(8),             /*冲帐时间                               */
crh04       varchar2(40),            /*商品编号                               */
crh05       varchar2(10),            /*海关代号                               */
crh06       varchar2(10),            /*客户代号/厂商代号                      */
crh07       varchar2(1),             /*异动方式                               */
crh08       varchar2(16) NOT NULL,   /*单据编号                               */
crh09       number(5) NOT NULL,      /*项次                                   */
crh10       date,                    /*单据日期                               */
crh11       varchar2(40),            /*料件编号                               */
crh12       number(20,8),            /*转换率                                 */
crh13       number(15,3),            /*异动数量                               */
crh14       varchar2(4),             /*异动单位                               */
crh15       number(15,3),            /*合同数量                               */
crh16       varchar2(4)              /*合同单位                               */
);

create unique index crh_pk on crh_file (crh01,crh08,crh09);
alter table crh_file add  constraint crh_pk primary key  (crh01,crh08,crh09) enable validate;
grant select on crh_file to public;
grant index on crh_file to public;
grant update on crh_file to public;
grant delete on crh_file to public;
grant insert on crh_file to public;