kernel: improve migration script
authorced <>
Fri, 29 Jun 2007 10:47:14 +0000 (10:47 +0000)
committerced <>
Fri, 29 Jun 2007 10:47:14 +0000 (10:47 +0000)
bzr revid: ced-2b2c2f80d1c672687bb279550db122384c745c37

doc/migrate/4.0.0-4.2.0/pre-tiny.py
doc/migrate/4.0.0-4.2.0/pre.py

index 6623bac..7103083 100644 (file)
@@ -1,3 +1,4 @@
+# -*- coding: utf-8 -*-
 ##############################################################################
 #
 # Copyright (c) 2006 TINY SPRL. (http://tiny.be) All Rights Reserved.
@@ -25,7 +26,7 @@
 #
 ##############################################################################
 
-__author__ = 'Gaetan de Menten, <ged@tiny.be>'
+__author__ = 'Cédric Krier, <ced@tinyerp.com>'
 __version__ = '0.1.0'
 
 import psycopg
@@ -72,41 +73,83 @@ password = hasattr(options, 'db_password') and "password=%s" % options.db_passwo
 db = psycopg.connect('%s %s %s %s %s' % (host, port, name, user, password), serialize=0)
 cr = db.cursor()
 
-# ----------------------------- #
-# convert date_planned to delay #
-# ----------------------------- #
+# fix country
 
-cr.execute("update sale_order_line set delay = pt.sale_delay from product_product as po, product_template as pt where product_id = po.id and po.product_tmpl_id = pt.id")
-cr.commit()
 
-# --------------------------------------------------------------------------- #
-# move account_invoice.project_id to account_invoice_line.account_analytic_id #
-# --------------------------------------------------------------------------- #
+cr.execute('SELECT code from res_country where code is not null group by code')
+res = cr.fetchall()
 
-cr.execute("update account_invoice_line set account_analytic_id = ai.project_id from account_invoice as ai where invoice_id = ai.id")
+for c in res:
+       cr.execute('SELECT max(id) from res_country where code = %s group by code', (c[0],))
+       res2 = cr.fetchone()
+       cr.execute('SELECT id from res_country where code = %s', (c[0],))
+       ids = ','.join(map(lambda x: str(x[0]), cr.fetchall()))
+       cr.execute('UPDATE res_partner_address set country_id = %d where country_id in ('+ids+')', (res2[0],))
+       cr.execute('DELETE FROM res_country WHERE code = %s and id <> %d', (c[0], res2[0],))
 cr.commit()
 
-# ------------------------------------------------------------------------- #
-# move purchase_order.project_id to purchase_order_line.account_analytic_id #
-# ------------------------------------------------------------------------- #
 
-cr.execute("update purchase_order_line set account_analytic_id = po.project_id from purchase_order as po where order_id = po.id")
+cr.execute('SELECT viewname FROM pg_views WHERE viewname = \'report_account_analytic_planning_stat\'')
+if cr.fetchall():
+       cr.execute('DROP VIEW report_account_analytic_planning_stat')
 cr.commit()
 
 
-# --------------- #
-# remove old menu #
-# --------------- #
+cr.execute('SELECT name from ( SELECT name, count(name) AS n FROM res_partner GROUP BY name ) AS foo WHERE n > 1')
+res = cr.fetchall()
 
-cr.execute("delete from ir_ui_menu where (id not in (select parent_id from ir_ui_menu where parent_id is not null)) and (id not in (select res_id from ir_values where model='ir.ui.menu'))")
-cr.commit()
 
-# -------------------------------- #
-# remove active to account_account #
-# -------------------------------- #
+for p in res:
+       cr.execute('SELECT max(id) FROM res_partner WHERE name = %s GROUP BY name', (p[0],))
+       res2 = cr.fetchone()
+       cr.execute('UPDATE res_partner set active = False WHERE name = %s and id <> %d', (p[0], res2[0],))
+       cr.execute('SELECT id FROM res_partner WHERE name = %s AND id <> %d', (p[0], res2[0],))
+       res3 = cr.fetchall()
+       i = 0
+       for id in res3:
+               name = p[0]+' old'
+               if i:
+                       name = name + ' ' + str(i)
+               cr.execute('UPDATE res_partner set name = %s WHERE id = %d', (name, id[0]))
+               i += 1
+cr.commit()
 
-cr.execute("alter table account_account drop active")
+cr.execute('SELECT viewname FROM pg_views WHERE viewname = \'report_account_analytic_line_to_invoice\'')
+if cr.fetchall():
+       cr.execute('DROP VIEW report_account_analytic_line_to_invoice')
+cr.execute('SELECT viewname FROM pg_views WHERE viewname = \'report_timesheet_invoice\'')
+if cr.fetchall():
+       cr.execute('drop VIEW report_timesheet_invoice')
+cr.execute('SELECT viewname FROM pg_views WHERE viewname = \'report_purchase_order_category\'')
+if cr.fetchall():
+       cr.execute('drop VIEW report_purchase_order_category')
+cr.execute('SELECT viewname FROM pg_views WHERE viewname = \'report_purchase_order_product\'')
+if cr.fetchall():
+       cr.execute('drop VIEW report_purchase_order_product')
+cr.execute('SELECT viewname FROM pg_views WHERE viewname = \'report_sale_order_category\'')
+if cr.fetchall():
+       cr.execute('drop VIEW report_sale_order_category')
+cr.execute('SELECT viewname FROM pg_views WHERE viewname = \'report_sale_order_product\'')
+if cr.fetchall():
+       cr.execute('drop VIEW report_sale_order_product')
+cr.execute('ALTER TABLE product_template ALTER list_price TYPE numeric(16,2)')
+cr.execute('ALTER TABLE product_template ALTER standard_price TYPE numeric(16,2)')
+cr.execute('ALTER TABLE product_product ALTER price_extra TYPE numeric(16,2)')
+cr.execute('ALTER TABLE product_product ALTER price_margin TYPE numeric(16,2)')
+cr.execute('ALTER TABLE pricelist_partnerinfo ALTER price TYPE numeric(16,2)')
+cr.execute('ALTER TABLE account_invoice_line ALTER price_unit TYPE numeric(16,2)')
+cr.execute('ALTER TABLE purchase_order_line ALTER price_unit TYPE numeric(16,2)')
+cr.execute('ALTER TABLE sale_order_line ALTER price_unit TYPE numeric(16,2)')
 cr.commit()
 
-cr.close()
 
+cr.execute('SELECT tablename FROM pg_tables WHERE tablename = \'subscription_document_fields\'')
+if cr.fetchall():
+       cr.execute('DROP TABLE subscription_document_fields')
+cr.execute('SELECT tablename FROM pg_tables WHERE tablename = \'subscription_document\'')
+if cr.fetchall():
+       cr.execute('DROP TABLE subscription_document')
+cr.execute('SELECT tablename FROM pg_tables WHERE tablename = \'subscription_subscription_history\'')
+if cr.fetchall():
+       cr.execute('DROP TABLE subscription_subscription_history')
+cr.commit()
index a73a152..5d9d74e 100644 (file)
@@ -1,3 +1,4 @@
+# -*- coding: utf-8 -*-
 ##############################################################################
 #
 # Copyright (c) 2006 TINY SPRL. (http://tiny.be) All Rights Reserved.
@@ -25,7 +26,7 @@
 #
 ##############################################################################
 
-__author__ = 'Gaetan de Menten, <ged@tiny.be>'
+__author__ = 'Cédric Krier, <ced@tinyerp.com>'
 __version__ = '0.1.0'
 
 import psycopg
@@ -78,7 +79,7 @@ cr = db.cursor()
 
 cr.execute("""SELECT c.relname,a.attname,a.attlen,a.atttypmod,a.attnotnull,a.atthasdef,t.typname,CASE WHEN a.attlen=-1 THEN a.atttypmod-4 ELSE a.attlen END as size FROM pg_class c,pg_attribute a,pg_type t WHERE c.relname='res_currency' AND a.attname='rounding' AND c.oid=a.attrelid AND a.atttypid=t.oid""")
 res = cr.dictfetchall()
-if res[0]['typname'] != 'float':
+if res[0]['typname'] != 'numeric':
        for line in (
                "ALTER TABLE res_currency RENAME rounding TO rounding_bak",
                "ALTER TABLE res_currency ADD rounding NUMERIC(12,6)",
@@ -92,22 +93,32 @@ cr.commit()
 # drop constraint on ir_ui_view #
 # ----------------------------- #
 
-cr.execute('ALTER TABLE ir_ui_view DROP CONSTRAINT ir_ui_view_type')
+cr.execute('SELECT conname FROM pg_constraint where conname = \'ir_ui_view_type\'')
+if cr.fetchall():
+       cr.execute('ALTER TABLE ir_ui_view DROP CONSTRAINT ir_ui_view_type')
 cr.commit()
 
 # ------------------------ #
 # update res.partner.bank  #
 # ------------------------ #
 
-cr.execute("ALTER TABLE res_partner_bank RENAME iban TO number")
+cr.execute('SELECT a.attname FROM pg_class c, pg_attribute a WHERE c.relname = \'res_partner_bank\' AND a.attname = \'iban\' AND c.oid = a.attrelid')
+if cr.fetchall():
+       cr.execute('ALTER TABLE res_partner_bank RENAME iban TO acc_number')
 cr.commit()
 
 # ------------------------------------------- #
 # Add perm_id to ir_model and ir_model_fields #
 # ------------------------------------------- #
 
-cr.execute("ALTER TABLE ir_model ADD perm_id int references perm on delete set null")
-cr.execute("ALTER TABLE ir_model_fields ADD perm_id int references perm on delete set null")
+cr.execute('SELECT a.attname FROM pg_class c, pg_attribute a WHERE c.relname = \'ir_model\' AND a.attname = \'perm_id\' AND c.oid = a.attrelid')
+if not cr.fetchall():
+       cr.execute("ALTER TABLE ir_model ADD perm_id int references perm on delete set null")
+cr.commit()
+
+cr.execute('SELECT a.attname FROM pg_class c, pg_attribute a WHERE c.relname = \'ir_model_fields\' AND a.attname = \'perm_id\' AND c.oid = a.attrelid')
+if not cr.fetchall():
+       cr.execute("ALTER TABLE ir_model_fields ADD perm_id int references perm on delete set null")
 cr.commit()
 
 
@@ -116,7 +127,7 @@ cr.commit()
 # --------------------------------- #
 
 cr.execute("UPDATE ir_act_window SET name = ''")
-
+cr.commit()
 
 # ------------------------------------------------------------------------ #
 # Create a "allow none" default access to keep the behaviour of the system #
@@ -125,6 +136,25 @@ cr.execute("UPDATE ir_act_window SET name = ''")
 cr.execute('SELECT model_id FROM ir_model_access')
 res= cr.fetchall()
 for r in res:
-       cr.execute("INSERT into ir_model_access (name,model_id,group_id) VALUES ('Auto-generated access by migration',%d,%s)",(r[0],None))
+       cr.execute('SELECT id FROM ir_model_access WHERE model_id = %d AND groupd_id IS NULL', (r[0],))
+       if not cr.fetchall():
+               cr.execute("INSERT into ir_model_access (name,model_id,group_id) VALUES ('Auto-generated access by migration',%d,NULL)",(r[0],))
 cr.commit()
+
+# ------------------------------------------------- #
+# Drop view report_account_analytic_line_to_invoice #
+# ------------------------------------------------- #
+
+cr.execute('SELECT viewname FROM pg_views WHERE viewname = \'report_account_analytic_line_to_invoice\'')
+if cr.fetchall():
+       cr.execute('DROP VIEW report_account_analytic_line_to_invoice')
+cr.commit()
+
+# --------------------------- #
+# Drop state from hr_employee #
+# --------------------------- #
+
+cr.execute('ALTER TABLE hr_employee DROP state')
+cr.commit()
+
 cr.close