@@ -27,7 +27,7 @@ class SourceFundMonitorReport(models.Model):
27
27
fund_group_id = fields .Many2one (comodel_name = "budget.source.fund.group" )
28
28
amount = fields .Float ()
29
29
amount_type = fields .Selection (
30
- selection = lambda self : [("1_budget " , "Budget" )]
30
+ selection = lambda self : [("10_budget " , "Budget" )]
31
31
+ self ._get_budget_amount_type (),
32
32
string = "Type" ,
33
33
)
@@ -50,7 +50,7 @@ def _get_consumed_sources(self):
50
50
return [
51
51
{
52
52
"model" : ("account.move.line" , "Account Move Line" ),
53
- "type" : ("8_actual " , "Actual" ),
53
+ "type" : ("80_actual " , "Actual" ),
54
54
"budget_move" : ("account_budget_move" , "move_line_id" ),
55
55
"source_doc" : ("account_move" , "move_id" ),
56
56
}
@@ -78,7 +78,7 @@ def _get_select_amount_types(self):
78
78
formatted_dimension_fields = f", { formatted_dimension_fields } "
79
79
for source in self ._get_consumed_sources ():
80
80
res_model = source ["model" ][0 ] # i.e., account.move.line
81
- amount_type = source ["type" ][0 ] # i.e., 8_actual
81
+ amount_type = source ["type" ][0 ] # i.e., 80_actual
82
82
res_field = source ["budget_move" ][1 ] # i.e., move_line_id
83
83
sql_select [amount_type ] = {
84
84
0 : """
@@ -97,7 +97,7 @@ def _get_select_amount_types(self):
97
97
1::boolean as active %s
98
98
"""
99
99
% (
100
- amount_type [:1 ],
100
+ amount_type [:2 ],
101
101
res_model ,
102
102
res_field ,
103
103
amount_type ,
@@ -110,7 +110,7 @@ def _get_from_amount_types(self):
110
110
sql_from = {}
111
111
for source in self ._get_consumed_sources ():
112
112
budget_table = source ["budget_move" ][0 ] # i.e., account_budget_move
113
- amount_type = source ["type" ][0 ] # i.e., 8_actual
113
+ amount_type = source ["type" ][0 ] # i.e., 80_actual
114
114
sql_from [
115
115
amount_type
116
116
] = """
@@ -141,7 +141,7 @@ def _select_budget(self):
141
141
sf.id as fund_id,
142
142
sf_group.id as fund_group_id,
143
143
aa.id as analytic_account_id,
144
- '1_budget ' as amount_type,
144
+ '10_budget ' as amount_type,
145
145
al.released_amount as amount,
146
146
bp.bm_date_from as date_from,
147
147
bp.bm_date_to as date_to,
@@ -188,7 +188,7 @@ def _get_sql(self):
188
188
select_budget_query [x ] for x in key_select_budget_list
189
189
)
190
190
# commitment
191
- select_actual_query = self ._select_statement ("8_actual " )
191
+ select_actual_query = self ._select_statement ("80_actual " )
192
192
key_select_actual_list = sorted (select_budget_query .keys ())
193
193
select_actual = ", " .join (
194
194
select_actual_query [x ] for x in key_select_actual_list
@@ -198,7 +198,7 @@ def _get_sql(self):
198
198
self ._from_budget (),
199
199
self ._where_budget (),
200
200
select_actual ,
201
- self ._from_statement ("8_actual " ),
201
+ self ._from_statement ("80_actual " ),
202
202
self ._where_actual (),
203
203
)
204
204
0 commit comments