forked from OCA/account-payment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
init_hook.py
52 lines (40 loc) · 1.43 KB
/
init_hook.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# © 2016 David Dufresne <[email protected]>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
import logging
logger = logging.getLogger(__name__)
def pre_init_hook(cr):
"""
The objective of this hook is to speed up the installation
of the module on an existing Odoo instance.
Without this script, if a database has a few hundred thousand
journal entries, which is not unlikely, the update will take
at least a few hours.
The pre init script only writes 0 in the field maturity_residual
so that it is not computed by the install.
The post init script sets the value of maturity_residual.
"""
store_field_invoice_user_id(cr)
def store_field_invoice_user_id(cr):
cr.execute(
"""SELECT column_name
FROM information_schema.columns
WHERE table_name='account_move_line' AND
column_name='invoice_user_id'"""
)
if not cr.fetchone():
cr.execute(
"""
ALTER TABLE account_move_line ADD COLUMN invoice_user_id integer;
COMMENT ON COLUMN account_move_line.invoice_user_id IS
'Invoice salesperson';
"""
)
logger.info("Computing field invoice_user_id on account.move.line")
cr.execute(
"""
UPDATE account_move_line aml
SET invoice_user_id = am.invoice_user_id
FROM account_move AS am
WHERE aml.move_id = am.id
"""
)