28169 vor 9 Monaten
Ursprung
Commit
a4308bee7b

+ 9 - 0
src/api/drug/drug.js Datei anzeigen

@@ -800,4 +800,13 @@ export function deleteSelfWarehouseOut(id,params){
800 800
     method:"get",
801 801
     params:params
802 802
   })
803
+}
804
+
805
+export function getSelfDrugWarehouseOutById(id,params){
806
+  
807
+  return request({
808
+    url:"/api/drug/getselfdrugwarehouseoutbyid?id="+id,
809
+    method:"get",
810
+    params:params
811
+  })
803 812
 }

+ 8 - 0
src/router/modules/selfPreparedMedicine.js Datei anzeigen

@@ -50,6 +50,14 @@ export default {
50 50
       hidden: true,
51 51
       is_menu: false,
52 52
     },
53
+    {
54
+      path: '/stock/selfwarehouse/out/edit',
55
+      component: () => import('@/xt_pages/stock/selfPreparedMedicine/editWarehouseOut'),
56
+      name: 'SelfeditWarehouseOut',
57
+      meta: { title: '自备药编辑出库', noCache: true },
58
+      hidden: true,
59
+      is_menu: false,
60
+    },
53 61
     {
54 62
       path: '/stock/selfstockquery',
55 63
       component: () => import('@/xt_pages/stock/selfPreparedMedicine/stockquery'),

+ 7 - 0
src/xt_pages/dialysis/details/dialog/AssessmentAfterDislysis.vue Datei anzeigen

@@ -1270,6 +1270,13 @@ export default {
1270 1270
              ParamsQuery.weight_loss = (this.predialysis_evaluation.weight_before - this.form.weight_after).toFixed(1)
1271 1271
           }
1272 1272
 
1273
+          if(ParamsQuery.additional_weight == 0){
1274
+            if(this.additional_weight!=null){
1275
+              ParamsQuery.additional_weight = this.predialysis_evaluation.additional_weight
1276
+            }
1277
+            
1278
+          }
1279
+
1273 1280
           console.log("Paramsquery",data)
1274 1281
 
1275 1282
           postAssessmentAfterDislysis(ParamsQuery, data)

Datei-Diff unterdrückt, da er zu groß ist
+ 1236 - 0
src/xt_pages/stock/selfPreparedMedicine/editWarehouseOut.vue


+ 3 - 3
src/xt_pages/stock/selfPreparedMedicine/warehouseOut.vue Datei anzeigen

@@ -467,7 +467,7 @@ export default {
467 467
     },
468 468
     clicks: function () {},
469 469
      handleWarehouse: function () {
470
-      this.$router.push({path:"/stock/selfwarehouse/info/add"})
470
+      this.$router.push({path:"/stock/selfwarehouse/out/add"})
471 471
     },
472 472
     handleSelectionChange: function (val) {
473 473
       this.multipleSelection = val;
@@ -511,7 +511,7 @@ export default {
511 511
 
512 512
     handleEdit: function (index, row) {
513 513
 
514
-      this.$router.push({path:"/stock/selfwarehouse/info/edit?id="+row.id+"&is_sys="+row.is_sys+"&is_check="+row.is_check})
514
+      this.$router.push({path:"/stock/selfwarehouse/out/edit?id="+row.id+"&is_sys="+row.is_sys+"&is_check="+row.is_check})
515 515
       
516 516
     },
517 517
     search(){
@@ -567,7 +567,7 @@ export default {
567 567
                 type: 'success',
568 568
                 duration: 2000
569 569
               })
570
-              this.tableData.splice(index, 1)
570
+              this.tableList.splice(index, 1)
571 571
 
572 572
             }
573 573
           })

+ 8 - 6
src/xt_pages/user/components/PatientDetail.vue Datei anzeigen

@@ -281,8 +281,14 @@
281 281
                 </el-checkbox-group>
282 282
               </el-form-item>
283 283
              </el-col>
284
+
285
+             <el-col :span="8">
286
+              <el-form-item label="家庭住址 : " prop="homeAddress">
287
+                <el-input v-model="form.homeAddress" disabled style="width: 350px;"></el-input>
288
+              </el-form-item>
289
+            </el-col>
284 290
             
285
-             <el-col :span="6" :style="isEdit ? 'width:380px' : ''">
291
+             <el-col :span="8" :style="isEdit ? 'width:280px' : ''">
286 292
                 <el-form-item
287 293
                   label="打印日期:"
288 294
                   label-width="150px"
@@ -634,11 +640,7 @@
634 640
                 ></el-input>
635 641
               </el-form-item>
636 642
             </el-col>
637
-            <el-col :span="8">
638
-              <el-form-item label="家庭住址 : " prop="homeAddress">
639
-                <el-input v-model="form.homeAddress" disabled style="width: 350px;"></el-input>
640
-              </el-form-item>
641
-            </el-col>
643
+           
642 644
 
643 645
             <div v-show="!generic_info_fold">
644 646
               <el-col :span="8">

+ 8 - 6
src/xt_pages/user/components/PatientForm.vue Datei anzeigen

@@ -333,7 +333,13 @@
333 333
               </el-form-item>
334 334
             </el-col>
335 335
 
336
-            <el-col :span="6" :style="isEdit ? 'width:380px' : ''">
336
+            <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
337
+                <el-form-item label="家庭住址 : " prop="homeAddress"  class="is-required">
338
+                  <el-input v-model="form.homeAddress" style="width: 280px;"></el-input>
339
+                </el-form-item>
340
+            </el-col>
341
+
342
+            <el-col :span="8" :style="isEdit ? 'width:280px' : ''">
337 343
                 <el-form-item
338 344
                   label="打印日期:"
339 345
                   label-width="150px"
@@ -676,11 +682,7 @@
676 682
                 </el-form-item>
677 683
               </el-col>
678 684
 
679
-              <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
680
-                <el-form-item label="家庭住址 : " prop="homeAddress"  class="is-required">
681
-                  <el-input v-model="form.homeAddress" style="width: 350px;"></el-input>
682
-                </el-form-item>
683
-              </el-col>
685
+            
684 686
 
685 687
               <div v-show="!generic_info_fold">
686 688
                 <el-col :span="8" :style="isEdit ? 'width:360px' : ''">