24小时制班次在考勤数据中的特殊处理

weaver-chenwnj
chenwei 2 years ago
parent c85ed2786f
commit 526607fefd

@ -59,15 +59,15 @@ public class SaveShiftManagementBaseFormCmdIntercept extends AbstractCommandProx
Integer is24HourView = Util.getIntValue(Util.null2String(jsonObj.get("is24HourView")));
basebean.writeLog("is24HourView: " + is24HourView);
String syncIs24Sql = "update kq_ShiftManagement set is24HourView = ? where id = ? ";//同步是否24小时制字段值
if ( is24HourView ==-1 || is24HourView ==0) {//否
basebean.writeLog("is24HourView do 0 ");
rs.executeUpdate(syncIs24Sql,0,shifMaId);
String syncIs24NoSql = "update kq_ShiftManagement set is24HourView = ? where id = ? ";//同步是否24小时制字段值
rs.executeUpdate(syncIs24NoSql,0,shifMaId);
} else {
basebean.writeLog("is24HourView do 1 ");
rs.executeUpdate(syncIs24Sql,1,shifMaId);
String syncIs24Sql = "update kq_ShiftManagement set is24HourView = ?,worktime = ? where id = ? ";//同步是否24小时制与worktime字段值
rs.executeUpdate(syncIs24Sql,1,"1440",shifMaId);
}
}

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save