瀏覽代碼

Merge remote-tracking branch 'origin/20230223_pc_vue_new_branch' into 20230223_pc_vue_new_branch

yq1 9 月之前
父節點
當前提交
2c5381059d

+ 1 - 1
src/xt_pages/dialysis/batch_print/batch_print_order_forty.vue 查看文件

490
                                 <td width="20">mg</td>
490
                                 <td width="20">mg</td>
491
                                 <td width="10">)</td>
491
                                 <td width="10">)</td>
492
                                 <td width="100">
492
                                 <td width="100">
493
-                                    <label-box :isChecked="record.prescription.anticoagulant==6?true:record.prescription.anticoagulant==7?true:false" showValue='低分子肝素'></label-box> 
493
+                                    <label-box :isChecked="record.prescription.anticoagulant==3?true:false" showValue='低分子肝素'></label-box> 
494
                                 </td>
494
                                 </td>
495
                                 
495
                                 
496
                                 <td width="10">(</td>
496
                                 <td width="10">(</td>

+ 1 - 1
src/xt_pages/dialysis/details/dialog/AssessmentAfterDislysis.vue 查看文件

459
         <el-row :gutter="20"> -->
459
         <el-row :gutter="20"> -->
460
 
460
 
461
         <el-col :span="8" v-if="isShow('实际置换量')">
461
         <el-col :span="8" v-if="isShow('实际置换量')">
462
-          <el-form-item v-if="this.template_id == 20 || this.template_id == 21 || this.org_id ==10702 || this.org_id ==10702" label="实际置换量(ml): " :prop="isName('实际置换量')" :rules="isCheckmust('实际置换量')">
462
+          <el-form-item v-if="this.template_id == 20 || this.template_id == 21" label="实际置换量(ml): " :prop="isName('实际置换量')" :rules="isCheckmust('实际置换量')">
463
             <el-input v-model="form.actual_displacement"></el-input>
463
             <el-input v-model="form.actual_displacement"></el-input>
464
           </el-form-item>
464
           </el-form-item>
465
           <el-form-item v-else label="实际置换量(L): " :prop="isName('实际置换量')" :rules="isCheckmust('实际置换量')">
465
           <el-form-item v-else label="实际置换量(L): " :prop="isName('实际置换量')" :rules="isCheckmust('实际置换量')">

+ 1 - 1
src/xt_pages/dialysis/template/DialysisPrintOrderForty.vue 查看文件

576
                   <td width="20">mg</td>
576
                   <td width="20">mg</td>
577
                   <td width="10">)</td>
577
                   <td width="10">)</td>
578
                   <td width="100">
578
                   <td width="100">
579
-                      <label-box :isChecked="prescription.anticoagulant==6?true:prescription.anticoagulant==7?true:false" showValue='低分子肝素'></label-box> 
579
+                      <label-box :isChecked="prescription.anticoagulant==3?true:false" showValue='低分子肝素'></label-box> 
580
                   </td>
580
                   </td>
581
                   
581
                   
582
                   <td width="10">(</td>
582
                   <td width="10">(</td>

+ 10 - 1
src/xt_pages/stock/drugs/drugStockInOrderAdd.vue 查看文件

356
             </template>
356
             </template>
357
           </el-table-column>
357
           </el-table-column>
358
 
358
 
359
+          <el-table-column label="药品追溯码" width="150" align="center">
360
+            <template slot-scope="scope">
361
+              <el-input v-model="scope.row.drug_code"  placeholder="请输入药品追溯码"></el-input>
362
+            </template>
363
+          </el-table-column>
364
+
359
           <el-table-column label="备注" width="150" align="center">
365
           <el-table-column label="备注" width="150" align="center">
360
             <template slot-scope="scope">
366
             <template slot-scope="scope">
361
-              <el-input v-model="scope.row.remark"></el-input>
367
+              <el-input v-model="scope.row.remark"  placeholder="请输入备注"></el-input>
362
             </template>
368
             </template>
363
           </el-table-column>
369
           </el-table-column>
364
 
370
 
706
       tempObj["last_price"] = "";
712
       tempObj["last_price"] = "";
707
       tempObj["count_unit"] = "";
713
       tempObj["count_unit"] = "";
708
       tempObj["min_number"] = "";
714
       tempObj["min_number"] = "";
715
+      tempObj["drug_code"] = ""
709
       this.recordInfo.recordData.push(tempObj);
716
       this.recordInfo.recordData.push(tempObj);
710
     },
717
     },
711
     handleDelete: function (index, row) {
718
     handleDelete: function (index, row) {
919
                 list[i].last_price = list[i].price
926
                 list[i].last_price = list[i].price
920
                 list[i].warehousing_count = list[i].warehousing_count.toString()
927
                 list[i].warehousing_count = list[i].warehousing_count.toString()
921
                 list[i].unitList = []
928
                 list[i].unitList = []
929
+                list[i].drug_code = list[i].drug_code
922
                 var obj = {id:1,name:""}
930
                 var obj = {id:1,name:""}
923
                 obj.name = list[i].drug.max_unit
931
                 obj.name = list[i].drug.max_unit
924
                 var objOne = {id:2,name:""}
932
                 var objOne = {id:2,name:""}
1178
     tempObj["number"] = "";
1186
     tempObj["number"] = "";
1179
     tempObj["count_unit"] = "";
1187
     tempObj["count_unit"] = "";
1180
     tempObj["min_number"] = "";
1188
     tempObj["min_number"] = "";
1189
+    tempObj["drug_code"] = ""
1181
     this.recordInfo.recordData.push(tempObj);
1190
     this.recordInfo.recordData.push(tempObj);
1182
 
1191
 
1183
     this.GetConfigInfo();
1192
     this.GetConfigInfo();

+ 14 - 1
src/xt_pages/stock/drugs/drugStockInOrderEdit.vue 查看文件

339
             </template>
339
             </template>
340
           </el-table-column>
340
           </el-table-column>
341
 
341
 
342
+          <el-table-column label="药品追溯码" width="150" align="center">
343
+            <template slot-scope="scope">
344
+              <el-input v-model="scope.row.drug_code"  placeholder="请输入药品追溯码" :disabled="disabled"></el-input>
345
+            </template>
346
+          </el-table-column>
347
+
342
           <el-table-column label="备注" width="150" align="center">
348
           <el-table-column label="备注" width="150" align="center">
343
             <template slot-scope="scope">
349
             <template slot-scope="scope">
344
-              <el-input v-model="scope.row.remark" :disabled="disabled"></el-input>
350
+              <el-input v-model="scope.row.remark"  placeholder="请输入备注" :disabled="disabled"></el-input>
345
             </template>
351
             </template>
346
           </el-table-column>
352
           </el-table-column>
347
 
353
 
354
+         
355
+
348
           <el-table-column
356
           <el-table-column
349
             label="操作"
357
             label="操作"
350
             fixed="right"
358
             fixed="right"
618
       tempObj['retail_price'] = ""
626
       tempObj['retail_price'] = ""
619
       tempObj['drug_name'] = ""
627
       tempObj['drug_name'] = ""
620
       tempObj['manufacturer'] = ""
628
       tempObj['manufacturer'] = ""
629
+      tempObj["drug_code"] = ""
621
       this.recordInfo.recordData.push(tempObj);
630
       this.recordInfo.recordData.push(tempObj);
622
     },
631
     },
623
     handleDelete: function(index, row) {
632
     handleDelete: function(index, row) {
764
                 }
773
                 }
765
                 list[i].last_price = list[i].price
774
                 list[i].last_price = list[i].price
766
                 list[i].warehousing_count = list[i].warehousing_count.toString()
775
                 list[i].warehousing_count = list[i].warehousing_count.toString()
776
+
777
+                list[i].drug_code = list[i].drug_code
767
                 list[i].unitList = []
778
                 list[i].unitList = []
768
                 var obj = {id:1,name:""}
779
                 var obj = {id:1,name:""}
769
                 obj.name = list[i].drug.max_unit
780
                 obj.name = list[i].drug.max_unit
829
 
840
 
830
             response.data.data.info[i].drug_type = response.data.data.info[i].drug.drug_type
841
             response.data.data.info[i].drug_type = response.data.data.info[i].drug.drug_type
831
 
842
 
843
+            response.data.data.info[i].drug_code = response.data.data.info[i].drug_code
844
+
832
            if(response.data.data.info[i].manufacturer == 0){
845
            if(response.data.data.info[i].manufacturer == 0){
833
                response.data.data.info[i].manufacturer = ""
846
                response.data.data.info[i].manufacturer = ""
834
             }
847
             }

+ 2 - 2
src/xt_pages/stock/selfPreparedMedicine/warehouseInfo.vue 查看文件

954
       },
954
       },
955
       GetDrugTypeName(drug_type){
955
       GetDrugTypeName(drug_type){
956
         var name = ""
956
         var name = ""
957
-        console.log("drugTypeList---------------",this.drugTypeList)
957
+        // console.log("drugTypeList---------------",this.drugTypeList)
958
         for(let i=0;i<this.drugTypeList.length;i++){
958
         for(let i=0;i<this.drugTypeList.length;i++){
959
-          if(drug_type == this.drugTypeList[i].value){
959
+          if(drug_type == this.drugTypeList[i].id){
960
              name = this.drugTypeList[i].name
960
              name = this.drugTypeList[i].name
961
           }
961
           }
962
         }
962
         }