Commit 2d464956 by Jung Kwangkyu

Merge branch 'feature/1.4.0_kim-ec' into 'feature/1.4.0'

課題表#121 VRの契約がない場合は常に空白になる

See merge request !20
parents 97e1881f 2ed5e185
......@@ -3011,7 +3011,7 @@ CHK.createOperationList = function(operationList, isSearched = false) {
var operationStartDateTd = $("<td/>", {class: "operationStartDate"}).text(setOperationDate(operationList[i].operationStartDate));
var operationEndDateTd = $("<td/>", {class: "operationEndDate"}).text(setOperationDate(operationList[i].operationEndDate));
var iconTd = operationList[i].operationType == CHK.OPERATION_TYPE.VTOUR ? $("<td class='p-2'> <button class='btn btn-outline-primary fs-8 py-2' onclick=\"javascript:CHK_L.sendAppCommand('goPanoramaEdit', '" + operationList[i].operationId + "', '" + operationList[i].contentId + "');\">VR</button> </td>") : $("<td class='p-2 text-center align-middle'>-</td>");
var iconTd = operationList[i].operationType == CHK.OPERATION_TYPE.VTOUR ? $("<td class='p-2'> <button class='btn btn-outline-primary fs-8 py-2' onclick=\"javascript:CHK_L.sendAppCommand('goPanoramaEdit', '" + operationList[i].operationId + "', '" + operationList[i].contentId + "');\">VR</button> </td>") : $("<td class='p-2 align-middle'>&nbsp;&emsp;-</td>");
operationTR.append(operationNameTd);
operationTR.append(operationStartDateTd);
......
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