修复单据编号的bug
This commit is contained in:
@@ -186,7 +186,7 @@ function getNowFormatDateTwo() {
|
|||||||
if (strDate >= 0 && strDate <= 9) {
|
if (strDate >= 0 && strDate <= 9) {
|
||||||
strDate = "0" + strDate;
|
strDate = "0" + strDate;
|
||||||
}
|
}
|
||||||
var currentdate = date.getFullYear() + month + strDate;
|
var currentdate = date.getFullYear() + month.toString() + strDate.toString();
|
||||||
return currentdate;
|
return currentdate;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -199,14 +199,26 @@ function getNowFormatDateNum() {
|
|||||||
var seperator2 = ":";
|
var seperator2 = ":";
|
||||||
var month = date.getMonth() + 1;
|
var month = date.getMonth() + 1;
|
||||||
var strDate = date.getDate();
|
var strDate = date.getDate();
|
||||||
|
var strHours = date.getHours();
|
||||||
|
var strMinutes = date.getMinutes();
|
||||||
|
var strSeconds = date.getSeconds();
|
||||||
if (month >= 1 && month <= 9) {
|
if (month >= 1 && month <= 9) {
|
||||||
month = "0" + month;
|
month = "0" + month;
|
||||||
}
|
}
|
||||||
if (strDate >= 0 && strDate <= 9) {
|
if (strDate >= 0 && strDate <= 9) {
|
||||||
strDate = "0" + strDate;
|
strDate = "0" + strDate;
|
||||||
}
|
}
|
||||||
var currentdate = date.getFullYear() + month + strDate + date.getHours()
|
if (strHours >= 0 && strHours <= 9) {
|
||||||
+ date.getMinutes() + date.getSeconds();
|
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;
|
return currentdate;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user