Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Romain Courteaud
erp5
Commits
f8b47669
Commit
f8b47669
authored
Apr 01, 2019
by
Romain Courteaud
🐸
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[erp5_web_renderjs_ui] Use same code than form_view
parent
ebe4a9b1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
94 deletions
+5
-94
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_pt_form_list_js.js
...teItem/web_page_module/rjs_gadget_erp5_pt_form_list_js.js
+3
-92
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_pt_form_list_js.xml
...eItem/web_page_module/rjs_gadget_erp5_pt_form_list_js.xml
+2
-2
No files found.
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_pt_form_list_js.js
View file @
f8b47669
/*global window, rJS, RSVP, calculatePageTitle, SimpleQuery, ComplexQuery,
/*global window, rJS, RSVP, calculatePageTitle, SimpleQuery, ComplexQuery,
Query, QueryFactory, ensureArray */
Query, QueryFactory, ensureArray
, triggerListboxClipboardAction
*/
/*jslint nomen: true, indent: 2, maxerr: 3, continue: true */
/*jslint nomen: true, indent: 2, maxerr: 3, continue: true */
(
function
(
window
,
rJS
,
RSVP
,
calculatePageTitle
,
SimpleQuery
,
ComplexQuery
,
(
function
(
window
,
rJS
,
RSVP
,
calculatePageTitle
,
SimpleQuery
,
ComplexQuery
,
Query
,
QueryFactory
,
ensureArray
)
{
Query
,
QueryFactory
,
ensureArray
,
triggerListboxClipboardAction
)
{
"
use strict
"
;
"
use strict
"
;
function
updateSearchQueryFromSelection
(
extended_search
,
checked_uid_list
,
function
updateSearchQueryFromSelection
(
extended_search
,
checked_uid_list
,
...
@@ -62,95 +62,6 @@
...
@@ -62,95 +62,6 @@
return
Query
.
objectToSearchText
(
search_query
);
return
Query
.
objectToSearchText
(
search_query
);
}
}
function
triggerListboxClipboardAction
(
argument_list
)
{
var
action_list
=
ensureArray
(
this
.
state
.
erp5_document
.
_links
.
action_object_list_action
||
[]),
action_name
=
argument_list
[
0
],
checked_uid_list
=
argument_list
[
1
],
unchecked_uid_list
=
argument_list
[
2
],
gadget
=
this
,
extended_search
=
gadget
.
state
.
extended_search
,
view
,
i
;
if
(
action_name
===
'
copy_document_list
'
)
{
if
(
checked_uid_list
.
length
===
0
)
{
// If nothing is checked, use all unchecked values (same as xhtml style)
checked_uid_list
=
unchecked_uid_list
;
}
if
(
checked_uid_list
.
length
===
0
)
{
// XXX Queries do not correctly handle empty uid list
return
gadget
.
redirect
({
command
:
'
reload
'
});
}
return
gadget
.
setSetting
(
'
clipboard
'
,
checked_uid_list
)
.
push
(
function
()
{
return
gadget
.
notifySubmitted
({
"
message
"
:
"
Copied.
"
,
"
status
"
:
"
success
"
});
});
}
for
(
i
=
0
;
i
<
action_list
.
length
;
i
+=
1
)
{
if
(
action_name
===
action_list
[
i
].
name
)
{
view
=
action_list
[
i
].
href
;
}
}
if
(
checked_uid_list
.
length
!==
0
)
{
// If nothing is checked, use original query
extended_search
=
updateSearchQueryFromSelection
(
extended_search
,
checked_uid_list
,
'
catalog.uid
'
,
true
);
}
if
(
view
===
undefined
)
{
// Action was not found.
// Reload
return
gadget
.
redirect
({
command
:
'
reload
'
});
}
if
(
action_name
===
'
paste_document_list
'
)
{
return
gadget
.
getSetting
(
'
clipboard
'
)
.
push
(
function
(
uid_list
)
{
uid_list
=
uid_list
||
[];
if
(
uid_list
.
length
===
0
)
{
// Nothing to paste, go away
uid_list
=
[
'
XXX
'
];
}
extended_search
=
updateSearchQueryFromSelection
(
''
,
uid_list
,
'
catalog.uid
'
,
true
);
return
gadget
.
redirect
({
command
:
'
display_dialog_with_history
'
,
options
:
{
"
jio_key
"
:
gadget
.
state
.
jio_key
,
"
view
"
:
view
,
"
extended_search
"
:
extended_search
}
},
true
);
});
}
return
gadget
.
redirect
({
command
:
'
display_dialog_with_history
'
,
options
:
{
"
jio_key
"
:
gadget
.
state
.
jio_key
,
"
view
"
:
view
,
"
extended_search
"
:
extended_search
}
},
true
);
}
rJS
(
window
)
rJS
(
window
)
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
// Acquired methods
// Acquired methods
...
@@ -457,4 +368,4 @@
...
@@ -457,4 +368,4 @@
.
allowPublicAcquisition
(
"
triggerListboxClipboardAction
"
,
triggerListboxClipboardAction
);
.
allowPublicAcquisition
(
"
triggerListboxClipboardAction
"
,
triggerListboxClipboardAction
);
}(
window
,
rJS
,
RSVP
,
calculatePageTitle
,
SimpleQuery
,
ComplexQuery
,
Query
,
}(
window
,
rJS
,
RSVP
,
calculatePageTitle
,
SimpleQuery
,
ComplexQuery
,
Query
,
QueryFactory
,
ensureArray
));
QueryFactory
,
ensureArray
,
triggerListboxClipboardAction
));
\ No newline at end of file
\ No newline at end of file
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_pt_form_list_js.xml
View file @
f8b47669
...
@@ -228,7 +228,7 @@
...
@@ -228,7 +228,7 @@
</item>
</item>
<item>
<item>
<key>
<string>
serial
</string>
</key>
<key>
<string>
serial
</string>
</key>
<value>
<string>
974.4
2905.62205.2184
</string>
</value>
<value>
<string>
974.4
8318.49230.61986
</string>
</value>
</item>
</item>
<item>
<item>
<key>
<string>
state
</string>
</key>
<key>
<string>
state
</string>
</key>
...
@@ -246,7 +246,7 @@
...
@@ -246,7 +246,7 @@
</tuple>
</tuple>
<state>
<state>
<tuple>
<tuple>
<float>
155
3854591.89
</float>
<float>
155
4109391.26
</float>
<string>
UTC
</string>
<string>
UTC
</string>
</tuple>
</tuple>
</state>
</state>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment