Commit 983fc3ae by NGUYEN HOANG SON

Merge commit '1c77e25e' into feature/1.4.3_dev

* commit '1c77e25e':
  #19120 fix bug not show operation enableAddReport  = false
parents fbf72a47 1c77e25e
...@@ -156,6 +156,7 @@ CHK_pu.createNewReportList = function(operationList, isSearched = false) { ...@@ -156,6 +156,7 @@ CHK_pu.createNewReportList = function(operationList, isSearched = false) {
$('#notFoundNewReport').addClass('d-none'); $('#notFoundNewReport').addClass('d-none');
for (var i = 0; i < operationList.length; i++) { for (var i = 0; i < operationList.length; i++) {
if(operationList[i].enableAddReport != 1 ) continue;
//TODO aタグlist.html 転移処理 //TODO aタグlist.html 転移処理
var messageli = $("<li class='item list-unstyled rounded border mb-2'name = 'operationId_" + operationList[i].operationId + "' ></li>"); var messageli = $("<li class='item list-unstyled rounded border mb-2'name = 'operationId_" + operationList[i].operationId + "' ></li>");
......
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