-
Notifications
You must be signed in to change notification settings - Fork 25
/
migrate_16-to-17.txt
57 lines (41 loc) · 1.82 KB
/
migrate_16-to-17.txt
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
53
54
55
56
57
https://github.com/OCA/maintainer-tools/wiki/Migration-to-version-17.0
git checkout origin/17.0 -b 17.0-mig-$module
git format-patch --keep-subject --stdout origin/17.0..origin/16.0 -- $module | git am -3 --keep
pre-commit run -a
git add -A
git commit -m "[IMP] $module: pre-commit auto fixes" --no-verify # it is important to do all formatting in one commit the first time
name_get -> _compute_display_name
pre_init_hook, post_init_hook or uninstall_hook => argument passé est maintenant "env"
active_id => id ; active_model est supprimé
Fin des attrs et states => invisible="name == 'red'"
exemple : states="draft" ==> invisible="state != 'draft'"
les states= dans le code python sont à déplacer dans la vue
readonly="state in ['cancel', 'done', 'purchase']"
Vue tree, invisible="1" => column_invisible="1"
views des res.config.settings
read_group => _read_group
name_search => def _name_search(self, name, domain=None, operator='ilike', limit=None, order=None):
CHANGEMENT DU PROTO de la méthode par rapport à v16
ACL sans group : remplacer par 3 ACLs :
base.group_user
base.group_public
base.group_portal
message_post() avec HTML :
from markupsafe import Markup, escape
==============
SI OUBLI v16 :
- ajout ACL 1,0,0,0 pour account.group_account_readonly
- check_company=True
- date en vue search : <filter string="Deposit Date" name="deposit_date" date="deposit_date"/>
- (0, 0, {}) =>Command.create/set
=============
Main Datamodel changes :
stock.move.line : reserved_uom_qty et qty_done => quantity ou quantity_product_uom (le champ est le même
stock.move :
product_uom_qty (qté demandée) in product_uom
product_qty in product's uom
quantity in product_uom
stock.move.line :
quantity in product_uom_id
quantity_product_uom in product's uom
sale.order : plus d'état "done" => la SO est tjs éditable