Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nouiWithSpringMVC
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gechengyang
nouiWithSpringMVC
Commits
3c702010
Commit
3c702010
authored
Jun 11, 2021
by
fukai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改对nulleditable的兼容
parent
ecadd0e6
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
NoUiPresentationUtil.java
.../org/sss/presentation/noui/util/NoUiPresentationUtil.java
+5
-0
eibs-container-3.5.0.jar
src/main/webapp/WEB-INF/lib/eibs-container-3.5.0.jar
+0
-0
No files found.
src/main/java/org/sss/presentation/noui/util/NoUiPresentationUtil.java
View file @
3c702010
...
...
@@ -131,7 +131,12 @@ public class NoUiPresentationUtil {
if
(
dataType
.
equals
(
Integer
.
TYPE
)
||
dataType
.
equals
(
Integer
.
class
))
{
String
data
=
value
.
toString
().
trim
();
if
(
StringUtils
.
isEmpty
(
data
))
{
if
(
dataField
.
isNullable
())
dataField
.
setValue
(
null
);
else
dataField
.
setValue
(
0
);
}
else
dataField
.
setValue
(
Double
.
valueOf
(
data
.
replaceAll
(
","
,
""
)).
intValue
());
return
;
...
...
src/main/webapp/WEB-INF/lib/eibs-container-3.5.0.jar
View file @
3c702010
No preview for this file type
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