Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
JSH ERP
Commits
cd38395a
Commit
cd38395a
authored
Oct 08, 2017
by
季圣华
Browse files
修复单据编号的bug
parent
789c2c98
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/webapp/js/common/common.js
View file @
cd38395a
...
...
@@ -186,7 +186,7 @@ function getNowFormatDateTwo() {
if
(
strDate
>=
0
&&
strDate
<=
9
)
{
strDate
=
"
0
"
+
strDate
;
}
var
currentdate
=
date
.
getFullYear
()
+
month
+
strDate
;
var
currentdate
=
date
.
getFullYear
()
+
month
.
toString
()
+
strDate
.
toString
()
;
return
currentdate
;
}
...
...
@@ -199,14 +199,26 @@ function getNowFormatDateNum() {
var
seperator2
=
"
:
"
;
var
month
=
date
.
getMonth
()
+
1
;
var
strDate
=
date
.
getDate
();
var
strHours
=
date
.
getHours
();
var
strMinutes
=
date
.
getMinutes
();
var
strSeconds
=
date
.
getSeconds
();
if
(
month
>=
1
&&
month
<=
9
)
{
month
=
"
0
"
+
month
;
}
if
(
strDate
>=
0
&&
strDate
<=
9
)
{
strDate
=
"
0
"
+
strDate
;
}
var
currentdate
=
date
.
getFullYear
()
+
month
+
strDate
+
date
.
getHours
()
+
date
.
getMinutes
()
+
date
.
getSeconds
();
if
(
strHours
>=
0
&&
strHours
<=
9
)
{
strHours
=
"
0
"
+
strHours
;
}
if
(
strMinutes
>=
0
&&
strMinutes
<=
9
)
{
strMinutes
=
"
0
"
+
strMinutes
;
}
if
(
strSeconds
>=
0
&&
strSeconds
<=
9
)
{
strSeconds
=
"
0
"
+
strSeconds
;
}
var
currentdate
=
date
.
getFullYear
()
+
month
.
toString
()
+
strDate
.
toString
()
+
strHours
+
strMinutes
+
strSeconds
;
return
currentdate
;
}
...
...
Write
Preview
Supports
Markdown
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