~camptocamp/c2c-rd-addons/7.0

« back to all changes in this revision

Viewing changes to scripts/account_level.sql

  • Committer: openerp@bazaar.camptocamp.net
  • Date: 2011-06-07 07:24:13 UTC
  • mfrom: (3.1.40 c2c_austria_dev)
  • Revision ID: openerp@bazaar.camptocamp.net-20110607072413-b21c0i4vfqoh22oj
merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
-- not very sophisticated :-(
 
3
 
 
4
update account_account set level = 0;
 
5
 
 
6
update account_account a set level = level +1 where parent_id is null and level= 0;
 
7
 
 
8
update account_account a set level = 2  where parent_id in (select id from account_account b where  b.level = 1);
 
9
 
 
10
update account_account a set level = 3  where parent_id in (select id from account_account b where  b.level = 2);
 
11
 
 
12
update account_account a set level = 4  where parent_id in (select id from account_account b where  b.level = 3);
 
13
 
 
14
update account_account a set level = 5  where parent_id in (select id from account_account b where  b.level = 4);
 
15
 
 
16
update account_account a set level = 6  where parent_id in (select id from account_account b where  b.level = 5);
 
17
 
 
18
update account_account a set level = 7  where parent_id in (select id from account_account b where  b.level = 6);
 
19
 
 
20
update account_account a set level = 8  where parent_id in (select id from account_account b where  b.level = 7);
 
21
 
 
22
update account_account a set level = 9  where parent_id in (select id from account_account b where  b.level = 8);
 
23
 
 
24
update account_account a set level = 10  where parent_id in (select id from account_account b where  b.level = 9);
 
25
 
 
26
update account_account a set level = 11  where parent_id in (select id from account_account b where  b.level = 10);
 
27
 
 
28
update account_account a set level = 12  where parent_id in (select id from account_account b where  b.level = 11);
 
29
 
 
30
update account_account a set level = 13  where parent_id in (select id from account_account b where  b.level = 12);
 
31
 
 
32