Browse Source

处方序号优化

lihong 1 year ago
parent
commit
c038c2acbe
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main/resources/static/js/mz/clinic.js

+ 1 - 1
src/main/resources/static/js/mz/clinic.js

@@ -10605,7 +10605,7 @@ function setTableHtml(prescriptionDetail) {
     var html = "";
     for (var j = 0; j < prescriptionDetail.length; j++) {
         var detail = prescriptionDetail[j];
-        html += "<tr><td>" + detail.groupOrder + "</td>";
+        html += "<tr><td>" + (j+1) + "</td>";
         html += "<td colspan='2'>";
         html += detail.name + "(" + detail.specification + ")";
         html += "</td>";