Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
justinfreeman (Agileware)
Core
Commits
6bc90ee8
Commit
6bc90ee8
authored
11 years ago
by
totten
Browse files
Options
Downloads
Patches
Plain Diff
crm.backbone.js - Allow collections to fetch records with alternative API actions
parent
17deafad
No related branches found
Branches containing commit
Tags
4.3.4
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
js/crm.backbone.js
+16
-5
16 additions, 5 deletions
js/crm.backbone.js
with
16 additions
and
5 deletions
js/crm.backbone.js
+
16
−
5
View file @
6bc90ee8
...
...
@@ -32,14 +32,14 @@
};
switch
(
method
)
{
case
'
read
'
:
CRM
.
api
(
model
.
crmEntityName
,
'
get
'
,
model
.
toCrmCriteria
(),
apiOptions
);
CRM
.
api
(
model
.
crmEntityName
,
model
.
toCrmAction
(
'
get
'
)
,
model
.
toCrmCriteria
(),
apiOptions
);
break
;
// replace all entities matching "x.crmCriteria" with new entities in "x.models"
case
'
crm-replace
'
:
var
params
=
this
.
toCrmCriteria
();
params
.
version
=
3
;
params
.
values
=
this
.
toJSON
();
CRM
.
api
(
model
.
crmEntityName
,
'
replace
'
,
params
,
apiOptions
);
CRM
.
api
(
model
.
crmEntityName
,
model
.
toCrmAction
(
'
replace
'
)
,
params
,
apiOptions
);
break
;
default
:
apiOptions
.
error
({
is_error
:
1
,
error_message
:
"
CRM.Backbone.sync(
"
+
method
+
"
) not implemented for collections
"
});
...
...
@@ -74,9 +74,9 @@
params
.
options
||
(
params
.
options
=
{});
params
.
options
.
reload
=
1
;
if
(
!
model
.
_isDuplicate
)
{
CRM
.
api
(
model
.
crmEntityName
,
'
create
'
,
params
,
apiOptions
);
CRM
.
api
(
model
.
crmEntityName
,
model
.
toCrmAction
(
'
create
'
)
,
params
,
apiOptions
);
}
else
{
CRM
.
api
(
model
.
crmEntityName
,
'
duplicate
'
,
params
,
apiOptions
);
CRM
.
api
(
model
.
crmEntityName
,
model
.
toCrmAction
(
'
duplicate
'
)
,
params
,
apiOptions
);
}
break
;
case
'
read
'
:
...
...
@@ -87,7 +87,7 @@
apiOptions
.
error
({
is_error
:
1
,
error_message
:
'
Missing ID for
'
+
model
.
crmEntityName
});
return
;
}
CRM
.
api
(
model
.
crmEntityName
,
apiAction
,
params
,
apiOptions
);
CRM
.
api
(
model
.
crmEntityName
,
model
.
toCrmAction
(
apiAction
)
,
params
,
apiOptions
);
break
;
default
:
apiOptions
.
error
({
is_error
:
1
,
error_message
:
"
CRM.Backbone.sync(
"
+
method
+
"
) not implemented for models
"
});
...
...
@@ -116,6 +116,10 @@
// Defaults - if specified in ModelClass, preserve
_
.
defaults
(
ModelClass
.
prototype
,
{
crmEntityName
:
crmEntityName
,
crmActions
:
{},
// map: string backboneActionName => string serverSideActionName
toCrmAction
:
function
(
action
)
{
return
this
.
crmActions
[
action
]
?
this
.
crmActions
[
action
]
:
action
;
},
toCrmCriteria
:
function
()
{
return
(
this
.
get
(
'
id
'
))
?
{
id
:
this
.
get
(
'
id
'
)}
:
{};
},
...
...
@@ -308,6 +312,10 @@
// Defaults - if specified in CollectionClass, preserve
_
.
defaults
(
CollectionClass
.
prototype
,
{
crmEntityName
:
CollectionClass
.
prototype
.
model
.
prototype
.
crmEntityName
,
crmActions
:
{},
// map: string backboneActionName => string serverSideActionName
toCrmAction
:
function
(
action
)
{
return
this
.
crmActions
[
action
]
?
this
.
crmActions
[
action
]
:
action
;
},
toCrmCriteria
:
function
()
{
return
(
this
.
crmCriteria
)
?
_
.
extend
({},
this
.
crmCriteria
)
:
{};
},
...
...
@@ -365,6 +373,9 @@
}
else
if
(
options
.
crmCriteria
)
{
this
.
crmCriteria
=
options
.
crmCriteria
;
}
if
(
options
.
crmActions
)
{
this
.
crmActions
=
_
.
extend
(
this
.
crmActions
,
options
.
crmActions
);
}
if
(
origInit
)
{
return
origInit
.
apply
(
this
,
arguments
);
}
...
...
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