Selaa lähdekoodia

11月14日 库存扣减更新

XMLWAN 3 vuotta sitten
vanhempi
commit
f1942a7eef

+ 8 - 0
src/api/supply.js Näytä tiedosto

@@ -80,6 +80,14 @@ export function getGoodOrderDetail(id, params) {
80 80
   })
81 81
 }
82 82
 
83
+export function getGoodOrderDetailList(id, ids, params) {
84
+  return request({
85
+    url: '/api/supply/getgoodorderdetaillist?id=' + id + '&ids=' + ids,
86
+    method: 'get',
87
+    params: params
88
+  })
89
+}
90
+
83 91
 export function updateGoodOrder(data, supplier_name, start, arrearage, payment, warehose_out_id, number, rate_of_concession, discount_amount, good_number) {
84 92
   return request({
85 93
     url: '/api/supply/updategoodorder?supplier_id=' + supplier_name + '&start=' + start + '&arrerage=' + arrearage + '&payment=' + payment + '&warehose_out_id=' + warehose_out_id + '&number=' + number + '&rate_of_concession=' + rate_of_concession + '&discount_amount=' + discount_amount + '&good_number=' + good_number,

+ 1 - 1
src/xt_pages/stock/drugs/drugStockOutOrder.vue Näytä tiedosto

@@ -628,7 +628,7 @@ export default {
628 628
 
629 629
     handleEdit: function(index, row) {
630 630
    
631
-      this.$router.push({path:"/drug/out/drugstockoutorderedit?id="+row.id+"&type="+this.type+"&is_sys="+row.is_sys})
631
+      this.$router.push({path:"/drug/out/drugstockoutorderedit?id="+row.id+"&type="+this.type+"&is_sys="+row.is_sys+"&supply_cancel_out_id="+row.supply_cancel_out_id})
632 632
     },
633 633
     handleSearch(val){
634 634
       

+ 3 - 0
src/xt_pages/stock/drugs/drugStockOutOrderEdit.vue Näytä tiedosto

@@ -818,6 +818,9 @@
818 818
       if(sys == 1){
819 819
         this.drug_show = true
820 820
       }
821
+      if(parseInt(this.$route.query.supply_cancel_out_id)>0){
822
+        this.drug_show = true
823
+      }
821 824
      this.unitList =  getDataConfig('hemodialysis','units')
822 825
 
823 826
     }

+ 1 - 2
src/xt_pages/stock/stockOutOrder.vue Näytä tiedosto

@@ -954,8 +954,7 @@ export default {
954 954
       }
955 955
     },
956 956
     handleEdit: function(index, row) {
957
-      
958
-      this.$router.push({path:'/stock/stockoutorderedit?id='+row.id+"&is_sys="+row.is_sys})
957
+      this.$router.push({path:'/stock/stockoutorderedit?id='+row.id+"&is_sys="+row.is_sys+"&supply_cancel_out_id="+row.supply_cancel_out_id})
959 958
        
960 959
     },
961 960
     handleDelete: function(index, row) {

+ 6 - 1
src/xt_pages/stock/stockOutOrderEdit.vue Näytä tiedosto

@@ -25,7 +25,7 @@
25 25
 
26 26
       <div class="cell clearfix">
27 27
         <label class="title"><span class="name">出库时间</span> : </label>
28
-        <el-date-picker size="small" v-model="warehouse_out_time" prefix-icon="el-icon-date" :editable="false"
28
+        <el-date-picker size="small" v-model="warehouse_out_time" prefix-icon="el-icon-date" :disabled="stockShow"
29 29
                         style="width: 200px;"
30 30
                         type="date" placeholder="选择日期时间" align="right" format="yyyy-MM-dd"
31 31
                         value-format="yyyy-MM-dd"></el-date-picker>
@@ -60,6 +60,7 @@
60 60
                       @input="changeGoodName(scope.$index)"
61 61
                       style="width:150px;"
62 62
                       :disabled="stockShow"
63
+                      
63 64
                     >
64 65
                       <i class="el-icon-search el-input__icon" slot="suffix"></i>
65 66
                     <template slot-scope="{ item }">
@@ -321,6 +322,7 @@
321 322
         numberList:[],
322 323
         stockShow:false,
323 324
         stockTrue:true,
325
+       
324 326
       }
325 327
     },
326 328
     methods: {
@@ -794,6 +796,9 @@
794 796
       if(is_sys == 1){
795 797
         this.stockShow = true
796 798
       }
799
+      if(parseInt(this.$route.query.supply_cancel_out_id) >0){
800
+        this.stockShow = true
801
+      }
797 802
       
798 803
     }
799 804
 

+ 10 - 10
src/xt_pages/supply/components/addGoodOrder.vue Näytä tiedosto

@@ -1405,9 +1405,9 @@ export default {
1405 1405
       getSupplyWarehouseOutById(id).then((response) => {
1406 1406
         if (response.data.state == 1) {
1407 1407
           var cancelList = response.data.data.cancelList;
1408
-          console.log("退库单", cancelList);
1408
+          // console.log("退库单", cancelList);
1409 1409
            var drugList = response.data.data.drugList;
1410
-          console.log("药品列表", drugList);
1410
+          // console.log("药品列表", drugList);
1411 1411
           var cancelOrderList = response.data.data.cancelOrderList;
1412 1412
           console.log("退库单详情", cancelOrderList);
1413 1413
           var ids =""
@@ -1416,7 +1416,7 @@ export default {
1416 1416
           }
1417 1417
           if (cancelList.length > 0) {
1418 1418
             var outList = response.data.data.outList;
1419
-            console.log("购货单2322323",outList)
1419
+            // console.log("购货单2322323",outList)
1420 1420
             for(let i=0;i<outList.length;i++){
1421 1421
               if(outList[i].is_source == 1){
1422 1422
                 for(let j=0;j<drugList.length;j++){
@@ -1435,7 +1435,7 @@ export default {
1435 1435
                 for(let j=0;j<drugList.length;j++){
1436 1436
                   if(cancelOrderList[i].project_id == drugList[j].id){
1437 1437
                     if(cancelOrderList[i].supply_unit == drugList[j].max_unit){
1438
-                      cancelOrderList[i].count = cancelOrderList[i].count * drugList[j].min_number
1438
+                      cancelOrderList[i].supply_count = cancelOrderList[i].supply_count * drugList[j].min_number
1439 1439
                     }
1440 1440
                   }
1441 1441
                  }
@@ -1452,7 +1452,7 @@ export default {
1452 1452
                   objInfo[project_id] = {
1453 1453
                     project_id,
1454 1454
                     child: [],
1455
-                    count: 0,
1455
+                    supply_count: 0,
1456 1456
                   };
1457 1457
                 }
1458 1458
               });
@@ -1469,7 +1469,7 @@ export default {
1469 1469
 
1470 1470
             for (let i = 0; i < newArr.length; i++) {
1471 1471
               for (let j = 0; j < newArr[i].child.length; j++) {
1472
-                newArr[i].count += newArr[i].child[j].count;
1472
+                newArr[i].supply_count += newArr[i].child[j].supply_count;
1473 1473
               }
1474 1474
             }
1475 1475
 
@@ -1482,22 +1482,22 @@ export default {
1482 1482
                 for (let j = 0; j < newArr.length; j++) {
1483 1483
                   if (outList[i].project_id == newArr[j].project_id) {
1484 1484
                     //根据商品ID比较数量大小,把数量不足的商品ID储存,表示退货单的数量未满足采购单的数据,可以继续生成退货单
1485
-                    if (outList[i].count > newArr[j].count) {
1485
+                    if (outList[i].count > newArr[j].supply_count) {
1486 1486
                        arr.push(outList[i].project_id);
1487 1487
                     }
1488 1488
                   }
1489 1489
                 }
1490 1490
               }
1491 1491
               //如果total的长度等于 采购单的长度,怎表示该采购订单已经全部生成
1492
-
1492
+              console.log("arr2332233223322332",arr)
1493 1493
               if (arr.length == 0) {
1494
-                this.$message.error("该订单已全部生成退单,请知悉!");
1494
+                this.$message.error("该订单已全部生成退单,请知悉!");
1495 1495
                 return
1496 1496
               }
1497 1497
               console.log("arr23323232232323",arr)
1498 1498
               if (arr.length > 0) {
1499 1499
                 str = arr.join(",");
1500
-                this.$router.push({ path: "/good/return/edit?id=" + id + "&ids=" + str});
1500
+                this.$router.push({ path: "/good/return/add?id=" + id + "&ids=" + str});
1501 1501
               }
1502 1502
              }
1503 1503
 

+ 3 - 2
src/xt_pages/supply/components/addGoodReturn.vue Näytä tiedosto

@@ -407,7 +407,7 @@ import BreadCrumb from "@/xt_pages/components/bread-crumb";
407 407
 import { uParseTime } from "@/utils/tools";
408 408
 import {
409 409
   getInitOrder,
410
-  getGoodOrderDetail,
410
+  getGoodOrderDetailList,
411 411
   saveGoodReturnOrder,
412 412
   checkReturnOrder,
413 413
   updateGoodReturn,
@@ -852,7 +852,8 @@ export default {
852 852
     },
853 853
     getGoodOrderDetail() {
854 854
       var id = this.$route.query.id;
855
-      getGoodOrderDetail(id).then((response) => {
855
+      var ids = this.$route.query.ids;
856
+      getGoodOrderDetailList(id,ids).then((response) => {
856 857
         if (response.data.state == 1) {
857 858
           var out = response.data.data.out;
858 859
           this.id = out.id;

+ 1 - 1
src/xt_pages/supply/components/addPurchaseOrder.vue Näytä tiedosto

@@ -906,7 +906,7 @@ export default {
906 906
             if (response.data.state == 1) {
907 907
               var info = response.data.data.info;
908 908
               this.is_check = info.is_check
909
-              this.showOne = false
909
+              this.showOne = true
910 910
               this.showTwo = false
911 911
               this.showThree = true
912 912
               this.disabled = true;

+ 10 - 14
src/xt_pages/supply/components/editGoodOrder.vue Näytä tiedosto

@@ -1281,14 +1281,13 @@ export default {
1281 1281
           }
1282 1282
           if (cancelList.length > 0) {
1283 1283
             var outList = response.data.data.outList;
1284
-            console.log("购货单2322323", outList);
1284
+            // console.log("购货单2322323", outList);
1285 1285
             for (let i = 0; i < outList.length; i++) {
1286 1286
               if (outList[i].is_source == 1) {
1287 1287
                 for (let j = 0; j < drugList.length; j++) {
1288 1288
                   if (outList[i].project_id == drugList[j].id) {
1289 1289
                     if (outList[i].supply_unit == drugList[j].max_unit) {
1290
-                      outList[i].count =
1291
-                        outList[i].count * drugList[j].min_number;
1290
+                      outList[i].count = outList[i].count * drugList[j].min_number;
1292 1291
                     }
1293 1292
                   }
1294 1293
                 }
@@ -1299,11 +1298,8 @@ export default {
1299 1298
               if (cancelOrderList[i].is_source == 1) {
1300 1299
                 for (let j = 0; j < drugList.length; j++) {
1301 1300
                   if (cancelOrderList[i].project_id == drugList[j].id) {
1302
-                    if (
1303
-                      cancelOrderList[i].supply_unit == drugList[j].max_unit
1304
-                    ) {
1305
-                      cancelOrderList[i].count =
1306
-                        cancelOrderList[i].count * drugList[j].min_number;
1301
+                    if ( cancelOrderList[i].supply_unit == drugList[j].max_unit) {
1302
+                      cancelOrderList[i].supply_count = cancelOrderList[i].supply_count * drugList[j].min_number;
1307 1303
                     }
1308 1304
                   }
1309 1305
                 }
@@ -1320,7 +1316,7 @@ export default {
1320 1316
                   objInfo[project_id] = {
1321 1317
                     project_id,
1322 1318
                     child: [],
1323
-                    count: 0,
1319
+                    supply_count: 0,
1324 1320
                   };
1325 1321
                 }
1326 1322
               });
@@ -1337,7 +1333,7 @@ export default {
1337 1333
 
1338 1334
               for (let i = 0; i < newArr.length; i++) {
1339 1335
                 for (let j = 0; j < newArr[i].child.length; j++) {
1340
-                  newArr[i].count += newArr[i].child[j].count;
1336
+                  newArr[i].supply_count += newArr[i].child[j].supply_count;
1341 1337
                 }
1342 1338
               }
1343 1339
 
@@ -1350,23 +1346,23 @@ export default {
1350 1346
                   for (let j = 0; j < newArr.length; j++) {
1351 1347
                     if (outList[i].project_id == newArr[j].project_id) {
1352 1348
                       //根据商品ID比较数量大小,把数量不足的商品ID储存,表示退货单的数量未满足采购单的数据,可以继续生成退货单
1353
-                      if (outList[i].count > newArr[j].count) {
1349
+                      if (outList[i].count > newArr[j].supply_count) {
1354 1350
                         arr.push(outList[i].project_id);
1355 1351
                       }
1356 1352
                     }
1357 1353
                   }
1358 1354
                 }
1359 1355
                 //如果total的长度等于 采购单的长度,怎表示该采购订单已经全部生成
1360
-
1356
+                console.log("arr233322323322332",arr)
1361 1357
                 if (arr.length == 0) {
1362
-                  this.$message.error("该订单已全部生成退单,请知悉!");
1358
+                  this.$message.error("该订单已全部生成退单,请知悉!");
1363 1359
                   return;
1364 1360
                 }
1365 1361
                 console.log("arr23323232232323", arr);
1366 1362
                 if (arr.length > 0) {
1367 1363
                   str = arr.join(",");
1368 1364
                   this.$router.push({
1369
-                    path: "/good/return/edit?id=" + id + "&ids=" + str,
1365
+                    path: "/good/return/add?id=" + id + "&ids=" + str,
1370 1366
                   });
1371 1367
                 }
1372 1368
               }

+ 9 - 8
src/xt_pages/supply/components/editGoodReturn.vue Näytä tiedosto

@@ -1114,14 +1114,15 @@ export default {
1114 1114
                   orderInfo[i].min_number =  drugList[j].min_number
1115 1115
                   orderInfo[i].max_unit =drugList[j].max_unit
1116 1116
                   orderInfo[i].min_unit =drugList[j].min_unit
1117
+                 
1117 1118
                   orderInfo[i].sum_count = this.getWarehoseInfoTwo(drugList[j].drug_warehouse_info,drugList[j].max_unit,drugList[j].min_unit,drugList[j].min_number)
1118
-                  orderInfo[i].count = this.getWarehoseInfoSix(drugList[j].drug_warehouse_info,drugList[j].max_unit,drugList[j].min_unit,drugList[j].min_number,orderInfo[i].supply_warehouse_detail_info)
1119
-                  orderInfo[i].supply_total = this.getWarehoseInfoSix(drugList[j].drug_warehouse_info,drugList[j].max_unit,drugList[j].min_unit,drugList[j].min_number,orderInfo[i].supply_warehouse_detail_info)
1119
+                  // orderInfo[i].count = this.getWarehoseInfoSix(drugList[j].drug_warehouse_info,drugList[j].max_unit,drugList[j].min_unit,drugList[j].min_number,orderInfo[i].supply_warehouse_detail_info)
1120
+                 // orderInfo[i].supply_total = this.getWarehoseInfoSix(drugList[j].drug_warehouse_info,drugList[j].max_unit,drugList[j].min_unit,drugList[j].min_number,orderInfo[i].supply_warehouse_detail_info)
1120 1121
                 }
1121 1122
                 
1122 1123
               }
1123
-             // orderInfo[i].count = orderInfo[i].count 
1124
-
1124
+             orderInfo[i].count = orderInfo[i].count 
1125
+             orderInfo[i].supply_total = orderInfo[i].supply_total
1125 1126
              
1126 1127
             }
1127 1128
             if (orderInfo[i].is_source == 2) {
@@ -1130,13 +1131,13 @@ export default {
1130 1131
                   orderInfo[i].unitList = [{ id: 1, name: "" }];
1131 1132
                   orderInfo[i].unitList[0].name = goodList[j].packing_unit;
1132 1133
                 }
1133
-                orderInfo[i].count = this.getTotalStockCountTwo(goodList[j].good_warehouse_info);
1134
-                orderInfo[i].supply_total = this.getTotalStockCountTwo(goodList[j].good_warehouse_info);
1134
+                // orderInfo[i].count = this.getTotalStockCountTwo(goodList[j].good_warehouse_info);
1135
+               // orderInfo[i].supply_total = this.getTotalStockCountTwo(goodList[j].good_warehouse_info);
1135 1136
               }
1136 1137
               orderInfo[i].sum_count = orderInfo[i].count
1137 1138
               orderInfo[i].min_number = 0
1138
-              //orderInfo[i].count = orderInfo[i].count;
1139
-            
1139
+              orderInfo[i].count = orderInfo[i].count;
1140
+              orderInfo[i].supply_total = orderInfo[i].supply_total
1140 1141
              
1141 1142
               orderInfo[i].max_unit =""
1142 1143
               orderInfo[i].min_unit =""

+ 15 - 1
src/xt_pages/supply/components/goodOrderPrint.vue Näytä tiedosto

@@ -72,7 +72,8 @@
72 72
                 <tr>
73 73
                   <td colspan="3" style="line-height: 18px">合计</td>
74 74
                   <td colspan="1" style="line-height: 18px">{{getAllCount()}}</td>
75
-                  <td colspan="5" style="line-height: 18px"></td>
75
+                  <td colspan="1" style="line-height: 18px"></td>
76
+                  <td style="line-height: 18px">{{getAllPriceOne()}}</td>
76 77
                 </tr>
77 78
                  <tr>
78 79
                   <td colspan="9" style="line-height: 18px">合计  金额大写 {{getAllPrice()}}</td>
@@ -361,6 +362,19 @@ export default {
361 362
         return ""
362 363
       }
363 364
      
365
+    },
366
+    getAllPriceOne() {
367
+      var total_price = 0;
368
+      for (let i = 0; i < this.tableList.length; i++) {
369
+        total_price +=(this.tableList[i].price *this.tableList[i].count)
370
+      }
371
+      this.total_price = total_price;
372
+      if(total_price > 0){
373
+         return total_price.toFixed(2);
374
+      }else{
375
+        return ""
376
+      }
377
+     
364 378
     },
365 379
      smallToBIG(price) {
366 380
         let fraction = ['角', '分'];

+ 19 - 15
src/xt_pages/supply/components/goodReturnPrint.vue Näytä tiedosto

@@ -27,7 +27,6 @@
27 27
                 {{ getSupplyName(supplier_id) }}
28 28
             </div>
29 29
             <div style="margin-bottom: 1px; font-size: 18px">
30
-              单据日期:
31 30
              单据日期:{{ getTimes(document_date) }}
32 31
             </div>
33 32
             <div style="margin-bottom: 1px; font-size: 18px">
@@ -73,17 +72,19 @@
73 72
                     <span v-if="item.deposit_rate >0">{{item.deposit_rate}}</span>
74 73
                   </td>
75 74
                   <td style="line-height: 18px">
76
-                    <span v-if="(item.supply_count * item.price *item.deposit_rate/100) >0">{{(item.supply_count * item.price *item.deposit_rate/100).toFixed(2)}}</span>
75
+                    <span v-if="(item.supply_count * item.price*item.deposit_rate) >0">{{(item.supply_count * item.price *item.deposit_rate/100).toFixed(2)}}</span>
77 76
                   </td>
78 77
                   <td style="line-height: 18px">
79
-                    <span v-if="discount_amount > 0">{{ discount_amount }}</span>
78
+                    <span v-if="(item.supply_count * item.price) >0">{{(item.supply_count * item.price).toFixed(2)}}</span>
80 79
                   </td>
80
+                 
81 81
                 
82 82
                 </tr>
83 83
                 <tr>
84 84
                   <td colspan="3" style="line-height: 18px">合计</td>
85 85
                   <td colspan="1" style="line-height: 18px">{{getAllCount()}}</td>
86
-                  <td colspan="5" style="line-height: 18px"></td>
86
+                  <td colspan="3" style="line-height: 18px"></td>
87
+                  <td style="line-height: 18px">{{getAllPriceTwo()}}</td>
87 88
                 </tr>
88 89
                  <tr>
89 90
                   <td colspan="9" style="line-height: 18px">合计  金额大写 {{getAllPrice()}}</td>
@@ -100,16 +101,6 @@
100 101
               flex-wrap: wrap;
101 102
             "
102 103
           >
103
-            <div
104
-              style="
105
-                width: 25%;
106
-                text-align: left;
107
-                margin-bottom: 1px;
108
-                font-size: 18px;
109
-              "
110
-            >
111
-              供应商: {{ getSupplyName(supplier_id) }}
112
-            </div>
113 104
             <div
114 105
               style="
115 106
                 width: 25%;
@@ -368,7 +359,7 @@ export default {
368 359
     getAllPrice() {
369 360
       var total_price = 0;
370 361
       for (let i = 0; i < this.tableList.length; i++) {
371
-        total_price +=(this.tableList[i].supply_price *this.tableList[i].supply_count - (this.tableList[i].supply_price * this.tableList[i].supply_count*this.tableList[i].deposit_rate/100))
362
+        total_price +=(this.tableList[i].price *this.tableList[i].supply_count - (this.tableList[i].price * this.tableList[i].supply_count*this.tableList[i].deposit_rate/100))
372 363
       }
373 364
       this.total_price = total_price;
374 365
       if(total_price > 0){
@@ -377,6 +368,19 @@ export default {
377 368
         return ""
378 369
       }
379 370
      
371
+    },
372
+   getAllPriceTwo() {
373
+      var total_price = 0;
374
+      for (let i = 0; i < this.tableList.length; i++) {
375
+        total_price +=(this.tableList[i].price *this.tableList[i].supply_count - (this.tableList[i].price * this.tableList[i].supply_count*this.tableList[i].deposit_rate/100))
376
+      }
377
+      this.total_price = total_price;
378
+      if(total_price > 0){
379
+         return total_price.toFixed(2);
380
+      }else{
381
+        return ""
382
+      }
383
+     
380 384
     },
381 385
      smallToBIG(price) {
382 386
         let fraction = ['角', '分'];

+ 14 - 12
src/xt_pages/supply/components/purchaseOrderPrint.vue Näytä tiedosto

@@ -19,7 +19,7 @@
19 19
         <div class="print_main_content">
20 20
           <div class="order_title_panl">
21 21
             <div style="font-size: 22px; font-weight: bold">{{ orgName }}</div>
22
-            <span style="font-weight: 500; font-size: 18px">购货单</span>
22
+            <span style="font-weight: 500; font-size: 18px">采购订单</span>
23 23
           </div>
24 24
           <div style="display: flex; justify-content: space-between">
25 25
             <div style="text-align: left; margin-bottom: 1px; font-size: 18px">
@@ -70,7 +70,8 @@
70 70
                 <tr>
71 71
                   <td colspan="3" style="line-height: 18px">合计</td>
72 72
                   <td colspan="1" style="line-height: 18px">{{getAllCount()}}</td>
73
-                  <td colspan="2" style="line-height: 18px"></td>
73
+                  <td colspan="1" style="line-height: 18px"></td>
74
+                  <td colspan="2" style="line-height: 18px">{{getTotalPrice()}}</td>
74 75
                 </tr>
75 76
                  <tr>
76 77
                   <td colspan="6" style="line-height: 18px">合计  金额大写 {{getAllPrice()}}</td>
@@ -110,16 +111,6 @@
110 111
               flex-wrap: wrap;
111 112
             "
112 113
           >
113
-            <div
114
-              style="
115
-                width: 25%;
116
-                text-align: left;
117
-                margin-bottom: 1px;
118
-                font-size: 18px;
119
-              "
120
-            >
121
-              供应商:{{ getSupplyName(supplier_id) }}
122
-            </div>
123 114
             <div
124 115
               style="
125 116
                 width: 25%;
@@ -389,6 +380,17 @@ export default {
389 380
         return ""
390 381
       } 
391 382
     },
383
+    getTotalPrice(){
384
+     var total = 0
385
+      for(let i=0;i<this.tableList.length;i++){
386
+         total +=(this.tableList[i].count*this.tableList[i].price)
387
+      }  
388
+      if(total > 0){
389
+       return total.toFixed(2)
390
+      }else{
391
+        return ""
392
+      } 
393
+    }
392 394
   },
393 395
   created() {
394 396
     this.orgName = this.$store.getters.xt_user.org.org_name;