Commit 4b2305a4 by Takatoshi Miura

作業期間の検索処理を修正

parent 8112cedc
...@@ -2922,10 +2922,10 @@ CHK.search = function() { ...@@ -2922,10 +2922,10 @@ CHK.search = function() {
result = result * operation.operationName.includes(searchKeyword); result = result * operation.operationName.includes(searchKeyword);
} }
if (searchStartDate.length) { if (searchStartDate.length) {
result = result * (operation.operationEndDate >= searchStartDate); result = result * (operation.operationStartDate >= searchStartDate);
} }
if (searchEndDate.length) { if (searchEndDate.length) {
result = result * (operation.operationStartDate <= searchEndDate); result = result * (operation.operationEndDate <= searchEndDate);
} }
if (operationGroupMasterId != 0) { if (operationGroupMasterId != 0) {
var operationGroupMasterIdList = CHK.operationGroupMasterRelation.operationGroupMasterRelationList.filter(function(operationGroupMasterRelation) { var operationGroupMasterIdList = CHK.operationGroupMasterRelation.operationGroupMasterRelationList.filter(function(operationGroupMasterRelation) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment