~tempo-openerp/+junk/loewert-report-name

« back to all changes in this revision

Viewing changes to server/history/migrate/3.4.0-4.0.0/post.py

  • Committer: jbe at tempo-consulting
  • Date: 2013-08-21 08:48:11 UTC
  • Revision ID: jbe@tempo-consulting.fr-20130821084811-913uo4l7b5ayxq8m
[NEW] Création de la branche trunk Loewert

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#    
 
4
#    OpenERP, Open Source Management Solution
 
5
#    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
 
6
#
 
7
#    This program is free software: you can redistribute it and/or modify
 
8
#    it under the terms of the GNU Affero General Public License as
 
9
#    published by the Free Software Foundation, either version 3 of the
 
10
#    License, or (at your option) any later version.
 
11
#
 
12
#    This program is distributed in the hope that it will be useful,
 
13
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
#    GNU Affero General Public License for more details.
 
16
#
 
17
#    You should have received a copy of the GNU Affero General Public License
 
18
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.     
 
19
#
 
20
##############################################################################
 
21
 
 
22
__author__ = 'Gaetan de Menten, <ged@tiny.be>'
 
23
__version__ = '0.1.0'
 
24
 
 
25
import psycopg
 
26
import optparse
 
27
import ConfigParser
 
28
 
 
29
# -----
 
30
 
 
31
parser = optparse.OptionParser(version="Tiny ERP server migration script " + __version__)
 
32
 
 
33
parser.add_option("-c", "--config", dest="config", help="specify path to Tiny ERP config file")
 
34
 
 
35
group = optparse.OptionGroup(parser, "Database related options")
 
36
group.add_option("--db_host", dest="db_host", help="specify the database host") 
 
37
group.add_option("--db_port", dest="db_port", help="specify the database port") 
 
38
group.add_option("-d", "--database", dest="db_name", help="specify the database name")
 
39
group.add_option("-r", "--db_user", dest="db_user", help="specify the database user name")
 
40
group.add_option("-w", "--db_password", dest="db_password", help="specify the database password") 
 
41
parser.add_option_group(group)
 
42
 
 
43
options = optparse.Values()
 
44
options.db_name = 'terp' # default value
 
45
parser.parse_args(values=options)
 
46
 
 
47
if hasattr(options, 'config'):
 
48
    configparser = ConfigParser.ConfigParser()
 
49
    configparser.read([options.config])
 
50
    for name, value in configparser.items('options'):
 
51
        if not (hasattr(options, name) and getattr(options, name)):
 
52
            if value in ('true', 'True'):
 
53
                value = True
 
54
            if value in ('false', 'False'):
 
55
                value = False
 
56
            setattr(options, name, value)
 
57
 
 
58
# -----
 
59
 
 
60
host = hasattr(options, 'db_host') and "host=%s" % options.db_host or ''
 
61
port = hasattr(options, 'db_port') and "port=%s" % options.db_port or ''
 
62
name = "dbname=%s" % options.db_name
 
63
user = hasattr(options, 'db_user') and "user=%s" % options.db_user or ''
 
64
password = hasattr(options, 'db_password') and "password=%s" % options.db_password or ''
 
65
 
 
66
db = psycopg.connect('%s %s %s %s %s' % (host, port, name, user, password), serialize=0)
 
67
cr = db.cursor()
 
68
 
 
69
# ---------------------------------------------------------------- #
 
70
# move user id from hr_analytic_timesheet to account_analytic_line #
 
71
# ---------------------------------------------------------------- #
 
72
 
 
73
cr.execute("UPDATE account_analytic_line SET user_id = hr_analytic_timesheet.user_id FROM hr_analytic_timesheet WHERE hr_analytic_timesheet.line_id = account_analytic_line.id")
 
74
cr.commit()
 
75
 
 
76
# --------------- #
 
77
# remove old menu #
 
78
# --------------- #
 
79
 
 
80
while True:
 
81
    cr.execute("select id 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'))")
 
82
    if not cr.rowcount:
 
83
        break
 
84
    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'))")
 
85
cr.commit()
 
86
 
 
87
# ----------------------------------------- #
 
88
# add default value for discount in invoice #
 
89
# ----------------------------------------- #
 
90
 
 
91
cr.execute("update account_invoice_line set discount=0.0 where discount is null;")
 
92
cr.commit()
 
93
 
 
94
 
 
95
# -------------------------------------------------------------------------- #
 
96
# update constraint account_invoice_line_uos_id_fkey on account_invoice_line #
 
97
# -------------------------------------------------------------------------- #
 
98
 
 
99
cr.execute("ALTER TABLE account_invoice_line DROP CONSTRAINT account_invoice_line_uos_id_fkey")
 
100
cr.execute("ALTER TABLE account_invoice_line ADD FOREIGN KEY (uos_id) REFERENCES product_uom(id) ON DELETE SET NULL")
 
101
cr.commit()
 
102
 
 
103
print """
 
104
WARNING: account_uos has been replaced by product_uom.
 
105
It is not possible to migrate the data automatically so you need to create the old account_uos in the new product_uom.
 
106
And then update the field uos_id of the table account_invoice to match the new id of product_uom.
 
107
 
 
108
EXAMPLE:
 
109
    UPDATE account_invoice SET uos_id = new_id WHERE uos_id = old_id;
 
110
"""
 
111
 
 
112
cr.close()
 
113
 
 
114
 
 
115
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 
116