Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
hg-smart
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
platform
hg-smart
Commits
8860b951
Commit
8860b951
authored
Oct 31, 2024
by
liuyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化销售开票选择任务添加金额校验
parent
ae3bab55
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
HGCW010A.js
src/main/webapp/HG/CW/HGCW010A.js
+1
-1
HGCW010D.js
src/main/webapp/HG/CW/HGCW010D.js
+1
-1
HGCW010E.js
src/main/webapp/HG/CW/HGCW010E.js
+1
-1
No files found.
src/main/webapp/HG/CW/HGCW010A.js
View file @
8860b951
...
...
@@ -87,7 +87,7 @@ function saveFunc() {
flag
=
false
;
return
false
;
}
if
(
!
isNumber
(
thisAmount
)
&&
!
isPositiveNumber
(
thisAmount
)
)
{
if
(
!
isNumber
(
thisAmount
)
&&
thisAmount
<=
0
)
{
message
(
"勾选的第"
+
(
index
+
1
)
+
"行本次收票金额必须是大于0的数字"
);
flag
=
false
;
return
false
;
...
...
src/main/webapp/HG/CW/HGCW010D.js
View file @
8860b951
...
...
@@ -63,7 +63,7 @@ function saveFunc() {
flag
=
false
;
return
false
;
}
if
(
!
isNumber
(
thisAmount
)
&&
!
isPositiveNumber
(
thisAmount
)
)
{
if
(
!
isNumber
(
thisAmount
)
&&
thisAmount
<=
0
)
{
message
(
"勾选的第"
+
(
index
+
1
)
+
"行本次收票金额必须是大于0的数字"
);
flag
=
false
;
return
false
;
...
...
src/main/webapp/HG/CW/HGCW010E.js
View file @
8860b951
...
...
@@ -63,7 +63,7 @@ function saveFunc() {
flag
=
false
;
return
false
;
}
if
(
!
isNumber
(
thisAmount
)
&&
!
isPositiveNumber
(
thisAmount
)
)
{
if
(
!
isNumber
(
thisAmount
)
&&
thisAmount
<=
0
)
{
message
(
"勾选的第"
+
(
index
+
1
)
+
"行本次收票金额必须是大于0的数字"
);
flag
=
false
;
return
false
;
...
...
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