Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Coopdevs OCB mirror
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Coopdevs
Odoo
Coopdevs OCB mirror
Commits
6a8524cf
Commit
6a8524cf
authored
10 years ago
by
Géry Debongnie
Browse files
Options
Downloads
Patches
Plain Diff
[REF] account_analytic_plans: update to the new module system
parent
0cfbbb6b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
addons/account_analytic_plans/static/src/js/account_bank_reconciliation.js
+11
-13
11 additions, 13 deletions
...alytic_plans/static/src/js/account_bank_reconciliation.js
with
11 additions
and
13 deletions
addons/account_analytic_plans/static/src/js/account_bank_reconciliation.js
+
11
−
13
View file @
6a8524cf
openerp
.
account_analytic_plans
=
function
(
instance
)
{
odoo
.
define
(
'
account_analytic_plans.custom
'
,
[
'
account.widgets
'
,
'
web.core
'
],
function
(
require
)
{
"
use strict
"
;
var
_t
=
instance
.
web
.
_t
,
_lt
=
instance
.
web
.
_lt
;
var
QWeb
=
instance
.
web
.
qweb
;
var
widgets
=
require
(
'
account.widgets
'
);
var
core
=
require
(
'
web.core
'
);
instance
.
web
.
account
.
bankStatementReconciliation
.
include
({
var
_t
=
core
.
_t
;
widgets
.
bankStatementReconciliation
.
include
({
init
:
function
(
parent
,
context
)
{
var
FieldMany2One
=
core
.
form_widget_registry
.
get
(
'
many2one
'
);
this
.
_super
(
parent
,
context
);
delete
this
.
create_form_fields
.
analytic_account_id
;
this
.
create_form_fields
[
"
analytic_plan
"
]
=
{
...
...
@@ -17,7 +19,7 @@ instance.web.account.bankStatementReconciliation.include({
required
:
false
,
tabindex
:
14
,
group
:
"
analytic.group_analytic_accounting
"
,
constructor
:
instance
.
web
.
form
.
FieldMany2One
,
constructor
:
FieldMany2One
,
field_properties
:
{
relation
:
"
account.analytic.plan.instance
"
,
string
:
_t
(
"
Analytic Distribution
"
),
...
...
@@ -25,14 +27,9 @@ instance.web.account.bankStatementReconciliation.include({
}
};
},
start
:
function
()
{
return
this
.
_super
().
then
(
function
()
{
});
},
});
instance
.
web
.
account
.
bankStatementReconciliationLine
.
include
({
widgets
.
bankStatementReconciliationLine
.
include
({
prepareCreatedMoveLineForPersisting
:
function
(
line
)
{
var
dict
=
this
.
_super
(
line
);
if
(
line
.
analytics_id
)
dict
[
'
analytics_id
'
]
=
line
.
analytics_id
;
...
...
@@ -40,4 +37,5 @@ instance.web.account.bankStatementReconciliationLine.include({
return
dict
;
},
});
};
});
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment