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
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
erp5
Commits
b30ede57
Commit
b30ede57
authored
Nov 07, 2019
by
Romain Courteaud
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[erp5_web_renderjs_ui] Listfield: always send the default_%s:int:0 value
Compatibility
parent
dab26b0d
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
169 additions
and
159 deletions
+169
-159
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_listfield_js.js
...plateItem/web_page_module/rjs_gadget_erp5_listfield_js.js
+6
-8
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_listfield_js.xml
...lateItem/web_page_module/rjs_gadget_erp5_listfield_js.xml
+163
-151
No files found.
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_listfield_js.js
View file @
b30ede57
/*global window, rJS, isEmpty, getFirstNonEmpty, ensureArray */
/*global window, rJS, isEmpty, getFirstNonEmpty, ensureArray
, isEmpty
*/
/*jslint nomen: true, indent: 2, maxerr: 3, maxlen: 80 */
(
function
(
window
,
rJS
,
getFirstNonEmpty
,
ensureArray
)
{
(
function
(
window
,
rJS
,
getFirstNonEmpty
,
ensureArray
,
isEmpty
)
{
"
use strict
"
;
rJS
(
window
)
...
...
@@ -63,7 +63,7 @@
text_content
=
item_list
[
i
][
0
];
}
}
if
(
text_content
===
undefined
)
{
if
(
(
text_content
===
undefined
)
&&
!
isEmpty
(
this
.
state
.
value
)
)
{
text_content
=
'
??? (
'
+
this
.
state
.
value
+
'
)
'
;
}
state
.
text_content
=
text_content
;
...
...
@@ -90,6 +90,7 @@
})
.
declareMethod
(
'
getContent
'
,
function
()
{
var
context
=
this
;
if
(
this
.
state
.
editable
)
{
return
this
.
getDeclaredGadget
(
'
sub
'
)
.
push
(
function
(
gadget
)
{
...
...
@@ -100,10 +101,7 @@
// Automatically add default_%s:int:0
// https://lab.nexedi.com/nexedi/erp5/blob/8ae0706177/product/Formulator/Widget.py#L1147
/*jslint maxlen: 80 */
var
key_list
=
Object
.
keys
(
result
),
i
;
for
(
i
=
0
;
i
<
key_list
.
length
;
i
+=
1
)
{
result
[
"
default_
"
+
key_list
[
i
]
+
"
:int
"
]
=
0
;
}
result
[
"
default_
"
+
context
.
state
.
name
+
"
:int
"
]
=
0
;
return
result
;
});
}
...
...
@@ -120,4 +118,4 @@
return
true
;
},
{
mutex
:
'
changestate
'
});
}(
window
,
rJS
,
getFirstNonEmpty
,
ensureArray
));
\ No newline at end of file
}(
window
,
rJS
,
getFirstNonEmpty
,
ensureArray
,
isEmpty
));
\ No newline at end of file
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_listfield_js.xml
View file @
b30ede57
This diff is collapsed.
Click to expand it.
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