/*
================================================================================
档案代号:coq_file
档案名称:产品折合原料明细资料档 (A046)
档案目的:
上游档案:
下游档案:
============.========================.==========================================
*/
create table coq_file
(
coq00       varchar2(1) NOT NULL,    /*资料型态                               */
                                     /* 0.原料 1.在制工单 2.半成品 3.成品     */
coq01       varchar2(40) NOT NULL,   /*原料料号                               */
coq02       varchar2(40) NOT NULL,   /*半成品/成品料号/工单单号               */
coq03       varchar2(10) NOT NULL,   /*仓库                                   */
coq04       varchar2(10) NOT NULL,   /*储位                                   */
coq05       varchar2(24) NOT NULL,   /*批号                                   */
coq06       varchar2(4),             /*单位                                   */
coq07       number(15,3),            /*原料库存数量/成品/半成品数             */
                                     /*资料型态为成品/半成品时, 此栏位为成品/半*/
                                     /*成品库存单位/数量                      */
coq08       number(16,8),            /*组成用量                               */
coq09       varchar2(4),             /*生产单位                               */
coq10       number(15,3),            /*下阶料数量                             */
coq11       varchar2(40),            /*生产料号                               */
coq12       number(15,3),            /*预计生产量                             */
coq13       number(15,3),            /*完工入库量                             */
coq14       number(15,3),            /*已发数量                               */
coq15       number(15,3),            /*入库转出量                             */
                                     /*单位用量*已入库量                      */
coq16       varchar2(4),             /*发料单位                               */
coq17       number(15,3),            /*在制量                                 */
                                     /*已发数量-入库转出量                    */
coq18       varchar2(1)              /*No Use                                 */
);

create unique index coq_pk on coq_file (coq00,coq01,coq02,coq03,coq04,coq05);
alter table coq_file add  constraint coq_pk primary key  (coq00,coq01,coq02,coq03,coq04,coq05) enable 
validate;
grant select on coq_file to public;
grant index on coq_file to public;
grant update on coq_file to public;
grant delete on coq_file to public;
grant insert on coq_file to public;