X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/028a47070f1c96c07828b9c8e802be253224df4f..9f0d85c2b00a0d3b7a92b63115801b2452846470:/sql/Pg-upgrade-2.1.1-2.1.2.sql diff --git a/sql/Pg-upgrade-2.1.1-2.1.2.sql b/sql/Pg-upgrade-2.1.1-2.1.2.sql index 7fc851669..5800d73c7 100644 --- a/sql/Pg-upgrade-2.1.1-2.1.2.sql +++ b/sql/Pg-upgrade-2.1.1-2.1.2.sql @@ -67,10 +67,6 @@ alter table invoice add column fxsellprice numeric(15,5); update invoice set fxsellprice=fxsellpriceold; alter table invoice drop column fxsellpriceold; -- -alter table invoice add column ordnumber text; -alter table invoice add column transdate text; -alter table invoice add column cusordnumber text; --- --TABLE oe alter table oe rename column amount to amountold; alter table oe add column amount numeric(15,5); @@ -88,10 +84,6 @@ alter table orderitems add column sellprice numeric(15,5); update orderitems set sellprice=sellpriceold; alter table orderitems drop column sellpriceold; -- -alter table orderitems add column ordnumber text; -alter table orderitems add column transdate text; -alter table orderitems add column cusordnumber text; --- --TABLE parts alter table parts rename column listprice to listpriceold; alter table parts add column listprice numeric(15,5); @@ -243,5 +235,21 @@ ALTER TABLE invoice ADD column pricegroup_id integer; ALTER TABLE orderitems ADD column pricegroup_id integer; update defaults set version = '2.1.2', audittrail = 't'; + +-- USTVA Update solve Bug 49 conributed by Andre Schubert +update chart set pos_ustva='861' where accno='1771'; +update chart set pos_ustva='511' where accno='1775'; +update chart set pos_ustva='511' where pos_ustva='51r'; +update chart set pos_ustva='861' where pos_ustva='86r'; +update chart set pos_ustva='971' where pos_ustva='97r'; +update chart set pos_ustva='931' where pos_ustva='93r'; + +-- add fields for ordnumber/transdate/cusordnumber in invoice/orderitems (r690 cleanup) +alter table orderitems add column ordnumber text; +alter table orderitems add column transdate text; +alter table orderitems add column cusordnumber text; +alter table invoice add column ordnumber text; +alter table invoice add column transdate text; +alter table invoice add column cusordnumber text; --