2014年9月20日 星期六

根據 iDempiere GPL 版權 adempiere.sk_fgjl

根據 iDempiere GPL 版權
改過的程式如果散播出去(買賣或無償)都需公告
由顧問教導客製化寫作, 顧問並非散播程式僅教學示範
由顧問教導後由客戶自行客製化的公司, 如屬自用無須公告客製化程式碼.

:::下面案例要求交付程式碼
因此顧問在此對大家公告程式碼內容
有些資料是給程式判斷, 然資料屬於公司機密
因此無法公告資料內容, 在此只能公告程式碼
這是目前台灣保稅系統成本與原料帳資料表架構

-- Table: adempiere.sk_fgjl

-- DROP TABLE adempiere.sk_fgjl;

CREATE TABLE adempiere.sk_fgjl
(
  sk_fgjl_id numeric(10,0) NOT NULL,
  ad_client_id numeric(10,0) NOT NULL,
  ad_org_id numeric(10,0) NOT NULL,
  isactive character(1) NOT NULL DEFAULT 'Y'::bpchar,
  created timestamp without time zone NOT NULL DEFAULT now(),
  createdby numeric(10,0) NOT NULL,
  updated timestamp without time zone NOT NULL DEFAULT now(),
  updatedby numeric(10,0) NOT NULL,
  sk_no character varying(40),  --料號
  docdate date,
  sp_no character varying(40),   --存(出)倉單證號碼
  in_qty numeric(10,2),     --存倉數量
  out_qty numeric(10,2),     --出倉數量
  sk_nowqty numeric(10,2),   --帳面庫存數量 sk_nowqty
  out_date date,        --驗放日期
  bonding_no character varying(20),--報單號碼
  exp_qty numeric(10,2),    --出口數量 exp_qty
  loc_qty numeric(10,2),     --內銷數量 loc_qty
  sk_fgjl_uu character varying(36) DEFAULT NULL::character varying,
  sk_fgjh_id numeric(10,0) NOT NULL,
  description character varying(255) DEFAULT NULL::character varying

)
WITH (
  OIDS=FALSE
);
ALTER TABLE adempiere.sk_fgjl
  OWNER TO adempiere;

沒有留言:

張貼留言