Recommit von r1131 von sschoeling: Fix zu Bug362. Danke an Harry fuer die Hilfe.
[kivitendo-erp.git] / sql / lx-office.sql
index 4b1606c..e720653 100644 (file)
@@ -115,7 +115,7 @@ CREATE TABLE "defaults" (
         "itime" timestamp DEFAULT now(),
         "mtime" timestamp
 );
-INSERT INTO defaults (version,audittrail) VALUES ('2.1.2', 't');
+INSERT INTO defaults (version,audittrail) VALUES ('2.2.0.1', 't');
 
 CREATE TABLE audittrail (
         "trans_id" int,
@@ -161,7 +161,10 @@ CREATE TABLE "invoice" (
        "serialnumber" text,
         "itime" timestamp DEFAULT now(),
         "mtime" timestamp,
-        "pricegroup_id" integer
+        "pricegroup_id" integer,
+        "ordnumber" text,
+        "transdate" text,
+        "cusordnumber" text
 );
 
 CREATE TABLE "vendor" (
@@ -194,6 +197,8 @@ CREATE TABLE "vendor" (
         "bank_code" varchar(10),
         "bank" text,
         "language" varchar(5),
+        "language_id" integer,
+        "payment_id" integer,
         "datevexport" integer,
         "itime" timestamp DEFAULT now(),
         "mtime" timestamp,
@@ -234,13 +239,15 @@ CREATE TABLE "customer" (
         "bank_code" varchar(10),
         "bank" text,
         "language" varchar(5),
+        "language_id" integer,
+        "payment_id" integer,
         "datevexport" integer,
         "itime" timestamp DEFAULT now(),
         "mtime" timestamp,
         "obsolete" boolean DEFAULT 'f',
         "ustid" varchar(12),
         "username" varchar(50),
-        "user_password" varchar(12),
+        "user_password" text,
         "salesman_id" integer,
         "c_vendor_id" text,
         "klass" integer DEFAULT 0
@@ -282,6 +289,7 @@ CREATE TABLE "ar" (
        "paid" numeric (15,5),
        "datepaid" date,
        "duedate" date,
+       "deliverydate" date,
        "invoice" boolean DEFAULT 'f',
        "shippingpoint" text,
        "terms" smallint DEFAULT 0,
@@ -292,6 +300,10 @@ CREATE TABLE "ar" (
        "quonumber" text,
         "cusordnumber" text,
        "intnotes" text,
+        "language_id" integer,
+        "payment_id" integer,
+        "delivery_customer_id" integer,
+        "delivery_vendor_id" integer,
        "department_id" integer DEFAULT 0,
        "shipvia" text,
         "itime" timestamp DEFAULT now(),
@@ -318,6 +330,8 @@ CREATE TABLE "ap" (
        "employee_id" integer,
        "quonumber" text,
        "intnotes" text,
+        "language_id" integer,
+        "payment_id" integer,
        "department_id" integer DEFAULT 0,
         "itime" timestamp DEFAULT now(), 
         "mtime" timestamp,
@@ -356,6 +370,14 @@ CREATE TABLE "vendortax" (
         "mtime" timestamp
 );
 
+CREATE TABLE "translation" (
+       "parts_id" integer,
+       "language_id" integer,
+        "translation" text,
+        "itime" timestamp DEFAULT now(),
+        "mtime" timestamp
+);
+
 CREATE TABLE "oe" (
        "id" integer DEFAULT nextval('id'::text) PRIMARY KEY,
        "ordnumber" text NOT NULL,
@@ -375,6 +397,10 @@ CREATE TABLE "oe" (
        "quonumber" text,
         "cusordnumber" text,
        "intnotes" text,
+        "delivery_customer_id" integer,
+        "delivery_vendor_id" integer,
+        "language_id" integer,
+        "payment_id" integer,
        "department_id" integer DEFAULT 0,
         "itime" timestamp DEFAULT now(),
         "mtime" timestamp,
@@ -394,10 +420,13 @@ CREATE TABLE "orderitems" (
        "reqdate" date,
        "ship" real,
        "serialnumber" text,
-       "id" integer DEFAULT nextval('orderitemsid'::text) PRIMARY KEY,
+       "id" integer DEFAULT nextval('orderitemsid'::text),
         "itime" timestamp DEFAULT now(),
         "mtime" timestamp,
-        "pricegroup_id" integer
+        "pricegroup_id" integer,
+        "ordnumber" text,
+        "transdate" text,
+        "cusordnumber" text
 );
 
 CREATE TABLE "exchangerate" (
@@ -447,7 +476,7 @@ CREATE TABLE "shipto" (
 
 CREATE TABLE "project" (
        "id" integer DEFAULT nextval('id'::text) PRIMARY KEY,
-       "projectnumber" text,
+       "projectnumber" text UNIQUE,
        "description" text,
         "itime" timestamp DEFAULT now(),
         "mtime" timestamp
@@ -527,6 +556,27 @@ CREATE TABLE "business" (
         "mtime" timestamp
 );
 
+
+CREATE TABLE "language" (
+       "id" integer DEFAULT nextval('id'::text) PRIMARY KEY,
+       "description" text,
+       "template_code" text,
+        "article_code" text,
+        "itime" timestamp DEFAULT now(),
+        "mtime" timestamp
+);
+
+CREATE TABLE "payment_terms" (
+       "id" integer DEFAULT nextval('id'::text) PRIMARY KEY,
+       "description" text,
+       "description_long" text,
+       "terms_netto" integer,
+        "terms_skonto" integer,
+        "percent_skonto" real,
+        "itime" timestamp DEFAULT now(),
+        "mtime" timestamp
+);
+
 CREATE TABLE "sic" (
        "code" text,
        "sictype" character(1),