출퇴근 지문 디비 접속정보 변경
This commit is contained in:
parent
220b3ef2d4
commit
704f201f92
@ -31,8 +31,8 @@ spring.main.datasource.password=itntest123
|
|||||||
|
|
||||||
#
|
#
|
||||||
spring.commute.datasource.driverClassName=net.sf.log4jdbc.sql.jdbcapi.DriverSpy
|
spring.commute.datasource.driverClassName=net.sf.log4jdbc.sql.jdbcapi.DriverSpy
|
||||||
spring.commute.datasource.jdbc-url=jdbc:log4jdbc:mysql://192.168.0.200:3312/biostar2_ac?serverTimezone=Asia/Seoul
|
#spring.commute.datasource.jdbc-url=jdbc:log4jdbc:mysql://192.168.0.200:3312/biostar2_ac?serverTimezone=Asia/Seoul
|
||||||
#spring.commute.datasource.jdbc-url=jdbc:log4jdbc:mysql://192.168.0.30:3312/biostar2_ac?serverTimezone=Asia/Seoul
|
spring.commute.datasource.jdbc-url=jdbc:log4jdbc:mysql://192.168.0.31:3312/biostar2_ac?serverTimezone=Asia/Seoul
|
||||||
spring.commute.datasource.username=root
|
spring.commute.datasource.username=root
|
||||||
spring.commute.datasource.password=itntest!
|
spring.commute.datasource.password=itntest!
|
||||||
|
|
||||||
|
|||||||
@ -168,7 +168,7 @@ function fn_oneTranferCntAndTime(userId){
|
|||||||
$('#divOneSmsCard .transferCnt').text(cnt);
|
$('#divOneSmsCard .transferCnt').text(cnt);
|
||||||
let text = $('#divOneSmsCard .insertCnt').text();
|
let text = $('#divOneSmsCard .insertCnt').text();
|
||||||
let numberOnly = text.match(/\d+/)[0];
|
let numberOnly = text.match(/\d+/)[0];
|
||||||
if(cnt >= numberOnly){
|
if(cnt >= Number(numberOnly)){
|
||||||
oneStopTransferTimer();
|
oneStopTransferTimer();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -237,7 +237,7 @@ function fn_oneReportCntAndTime(userId){
|
|||||||
contentType: 'application/json',
|
contentType: 'application/json',
|
||||||
// async: true,
|
// async: true,
|
||||||
success: function (data) {
|
success: function (data) {
|
||||||
console.log('tranfer data : ', data);
|
console.log('findByLogMoveCntWhereMessage data : ', data);
|
||||||
|
|
||||||
if (data.status == 'OK') {
|
if (data.status == 'OK') {
|
||||||
var cnt = data.data;
|
var cnt = data.data;
|
||||||
|
|||||||
@ -159,7 +159,7 @@ function fn_twoTranferCntAndTime(userId){
|
|||||||
contentType: 'application/json',
|
contentType: 'application/json',
|
||||||
// async: true,
|
// async: true,
|
||||||
success: function (data) {
|
success: function (data) {
|
||||||
// console.log('tranfer data : ', data);
|
console.log('tranfer data : ', data);
|
||||||
|
|
||||||
if (data.status == 'OK') {
|
if (data.status == 'OK') {
|
||||||
var cnt = data.data;
|
var cnt = data.data;
|
||||||
@ -167,9 +167,6 @@ function fn_twoTranferCntAndTime(userId){
|
|||||||
$('#divTwoSmsCard .transferCnt').text(cnt);
|
$('#divTwoSmsCard .transferCnt').text(cnt);
|
||||||
let text = $('#divTwoSmsCard .insertCnt').text();
|
let text = $('#divTwoSmsCard .insertCnt').text();
|
||||||
let numberOnly = text.match(/\d+/)[0];
|
let numberOnly = text.match(/\d+/)[0];
|
||||||
// console.log('numberOnly : ', numberOnly);
|
|
||||||
// console.log('cnt : ', cnt);
|
|
||||||
// console.log('cnt >= numberOnly : ', cnt >= Number(numberOnly));
|
|
||||||
if(cnt >= Number(numberOnly)){
|
if(cnt >= Number(numberOnly)){
|
||||||
twoStopTransferTimer();
|
twoStopTransferTimer();
|
||||||
}
|
}
|
||||||
@ -240,7 +237,7 @@ function fn_twoReportCntAndTime(userId){
|
|||||||
contentType: 'application/json',
|
contentType: 'application/json',
|
||||||
// async: true,
|
// async: true,
|
||||||
success: function (data) {
|
success: function (data) {
|
||||||
console.log('tranfer data : ', data);
|
console.log('findByLogMoveCntWhereMessage data : ', data);
|
||||||
|
|
||||||
if (data.status == 'OK') {
|
if (data.status == 'OK') {
|
||||||
var cnt = data.data;
|
var cnt = data.data;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user