Pārlūkot izejas kodu

518合并代码

XMLWAN 2 gadus atpakaļ
vecāks
revīzija
05bcc1227f
54 mainītis faili ar 3293 papildinājumiem un 795 dzēšanām
  1. 12 12
      src/api/drug/drug_stock.js
  2. 26 11
      src/api/stock.js
  3. 31 15
      src/api/warehouse.js
  4. 5 2
      src/lang/zh.js
  5. 7 2
      src/router/modules/hisTool.js
  6. 12 0
      src/router/modules/stock.js
  7. 55 16
      src/xt_pages/stock/cancelStockOrder.vue
  8. 26 12
      src/xt_pages/stock/cancelStockOrderAdd.vue
  9. 16 2
      src/xt_pages/stock/cancelStockOrderEdit.vue
  10. 48 47
      src/xt_pages/stock/detail/cancelStockDetail.vue
  11. 50 8
      src/xt_pages/stock/detail/stockInDetail.vue
  12. 77 37
      src/xt_pages/stock/detail/stockOutDetail.vue
  13. 56 11
      src/xt_pages/stock/drugs/cancelDrugStockOrder.vue
  14. 20 3
      src/xt_pages/stock/drugs/cancelDrugStockOrderAdd.vue
  15. 24 12
      src/xt_pages/stock/drugs/cancelDrugStockOrderEdit.vue
  16. 45 6
      src/xt_pages/stock/drugs/components/drugCancelDetail.vue
  17. 54 10
      src/xt_pages/stock/drugs/components/drugInOrder.vue
  18. 56 18
      src/xt_pages/stock/drugs/components/drugOutDetail.vue
  19. 25 9
      src/xt_pages/stock/drugs/drugBatchNumber.vue
  20. 39 0
      src/xt_pages/stock/drugs/drugDamaged.vue
  21. 39 25
      src/xt_pages/stock/drugs/drugStockFlow.vue
  22. 70 20
      src/xt_pages/stock/drugs/drugStockInOrder.vue
  23. 22 7
      src/xt_pages/stock/drugs/drugStockInOrderAdd.vue
  24. 33 18
      src/xt_pages/stock/drugs/drugStockInOrderEdit.vue
  25. 70 25
      src/xt_pages/stock/drugs/drugStockOutOrder.vue
  26. 51 9
      src/xt_pages/stock/drugs/drugStockOutOrderAdd.vue
  27. 3 1
      src/xt_pages/stock/drugs/drugStockOutOrderDetail.vue
  28. 64 8
      src/xt_pages/stock/drugs/drugStockOutOrderEdit.vue
  29. 41 3
      src/xt_pages/stock/drugs/inventory.vue
  30. 41 3
      src/xt_pages/stock/drugs/inventoryDetails.vue
  31. 234 35
      src/xt_pages/stock/drugs/query.vue
  32. 110 70
      src/xt_pages/stock/inventory.vue
  33. 42 0
      src/xt_pages/stock/inventoryDetails.vue
  34. 492 76
      src/xt_pages/stock/inventoryTransfer/Addtrans.vue
  35. 300 38
      src/xt_pages/stock/inventoryTransfer/index.vue
  36. 86 26
      src/xt_pages/stock/inventoryTransfer/transDetails.vue
  37. 24 12
      src/xt_pages/stock/stockBatchNumber.vue
  38. 43 24
      src/xt_pages/stock/stockDamaged.vue
  39. 31 20
      src/xt_pages/stock/stockFlow.vue
  40. 75 24
      src/xt_pages/stock/stockInOrder.vue
  41. 24 10
      src/xt_pages/stock/stockInOrderAdd.vue
  42. 37 7
      src/xt_pages/stock/stockInOrderEdit.vue
  43. 73 10
      src/xt_pages/stock/stockOutOrder.vue
  44. 58 18
      src/xt_pages/stock/stockOutOrderAdd.vue
  45. 105 53
      src/xt_pages/stock/stockOutOrderEdit.vue
  46. 381 8
      src/xt_pages/stock/stockQuery.vue
  47. 0 2
      src/xt_pages/supply/components/addGoodOrder.vue
  48. 29 0
      src/xt_pages/supply/components/addGoodReturn.vue
  49. 2 2
      src/xt_pages/supply/components/editGoodReturn.vue
  50. 2 1
      src/xt_pages/supply/purchaseOrderQuery.vue
  51. 1 0
      src/xt_pages/supply/supplyQuery.vue
  52. 15 3
      src/xt_pages/user/components/PatientDetail.vue
  53. 10 1
      src/xt_pages/user/components/PatientForm.vue
  54. 1 3
      src/xt_pages/user/doctorAdvice.vue

+ 12 - 12
src/api/drug/drug_stock.js Parādīt failu

@@ -1,8 +1,8 @@
1 1
 import request from '@/utils/request'
2 2
 
3
-export function postDrugWarehouse(params, warehousing_time, manufacturer_id, dealer_id, type) {
3
+export function postDrugWarehouse(params, warehousing_time, manufacturer_id, dealer_id, type, storehouse_id) {
4 4
   return request({
5
-    url: '/api/drugwarehouse/create?warehousing_time=' + warehousing_time + '&manufacturer_id=' + manufacturer_id + '&dealer_id=' + dealer_id + '&type=' + type,
5
+    url: '/api/drugwarehouse/create?warehousing_time=' + warehousing_time + '&manufacturer_id=' + manufacturer_id + '&dealer_id=' + dealer_id + '&type=' + type + '&storehouse_id=' + storehouse_id,
6 6
     method: 'post',
7 7
     data: params
8 8
   })
@@ -72,9 +72,9 @@ export function getDrugWarehouseOutInfoList(params) {
72 72
   })
73 73
 }
74 74
 
75
-export function postDrugWarehouseOut(params, warehousing_time, dealer_id, manufacturer_id, type) {
75
+export function postDrugWarehouseOut(params, warehousing_time, dealer_id, manufacturer_id, type, storehouse_id) {
76 76
   return request({
77
-    url: '/api/drugwarehouseout/create?warehousing_out_time=' + warehousing_time + '&dealer_id=' + dealer_id + '&manufacturer_id=' + manufacturer_id + '&type=' + type,
77
+    url: '/api/drugwarehouseout/create?warehousing_out_time=' + warehousing_time + '&dealer_id=' + dealer_id + '&manufacturer_id=' + manufacturer_id + '&type=' + type + '&storehouse_id=' + storehouse_id,
78 78
     method: 'post',
79 79
     data: params
80 80
   })
@@ -185,9 +185,9 @@ export function DeleteDrugWarehouseInfoItem(params) {
185 185
   })
186 186
 }
187 187
 
188
-export function EditDrugWarehouse(params, warehousing_time, id, type, manufacturer_id, dealer_id) {
188
+export function EditDrugWarehouse(params, warehousing_time, id, type, manufacturer_id, dealer_id, storehouse_id) {
189 189
   return request({
190
-    url: '/api/drugwarehouse/edit?warehousing_time=' + warehousing_time + '&id=' + id + '&type=' + type + '&manufacturer_id=' + manufacturer_id + '&dealer_id=' + dealer_id,
190
+    url: '/api/drugwarehouse/edit?warehousing_time=' + warehousing_time + '&id=' + id + '&type=' + type + '&manufacturer_id=' + manufacturer_id + '&dealer_id=' + dealer_id + '&storehouse_id=' + storehouse_id,
191 191
     method: 'post',
192 192
     data: params
193 193
   })
@@ -273,9 +273,9 @@ export function getDrugWarehouseOutInfo(params) {
273 273
   })
274 274
 }
275 275
 
276
-export function editDrugWarehouseoutInfo(params, warehouse_out_time, id, type, manufacturer_id, dealer_id) {
276
+export function editDrugWarehouseoutInfo(params, warehouse_out_time, id, type, manufacturer_id, dealer_id, storehouse_id) {
277 277
   return request({
278
-    url: '/api/drugwarehouseout/edit?warehouse_out_time=' + warehouse_out_time + '&id=' + id + '&type=' + type + '&manufacturer_id=' + manufacturer_id + '&dealer_id=' + dealer_id,
278
+    url: '/api/drugwarehouseout/edit?warehouse_out_time=' + warehouse_out_time + '&id=' + id + '&type=' + type + '&manufacturer_id=' + manufacturer_id + '&dealer_id=' + dealer_id + '&storehouse_id=' + storehouse_id,
279 279
     method: 'post',
280 280
     data: params
281 281
   })
@@ -289,9 +289,9 @@ export function getDrugCancelStockList(params) {
289 289
   })
290 290
 }
291 291
 
292
-export function editDrugCancelStockInfo(params, cancel_stock_time, id, type, manufacturer_id, dealer_id) {
292
+export function editDrugCancelStockInfo(params, cancel_stock_time, id, type, manufacturer_id, dealer_id, storehouse_id) {
293 293
   return request({
294
-    url: '/api/drugcancelstockinfo/edit?cancel_time=' + cancel_stock_time + '&id=' + id + '&type=' + type + '&manufacturer_id=' + manufacturer_id + '&dealer_id=' + dealer_id,
294
+    url: '/api/drugcancelstockinfo/edit?cancel_time=' + cancel_stock_time + '&id=' + id + '&type=' + type + '&manufacturer_id=' + manufacturer_id + '&dealer_id=' + dealer_id + '&storehouse_id=' + storehouse_id,
295 295
     method: 'post',
296 296
     data: params
297 297
   })
@@ -321,9 +321,9 @@ export function deleteDrugCancelStockInfo(params) {
321 321
   })
322 322
 }
323 323
 
324
-export function postDrugCancelStock(params, cancelStockTime, manufacturer_id, dealer_id, type) {
324
+export function postDrugCancelStock(params, cancelStockTime, manufacturer_id, dealer_id, type, storehouse_id) {
325 325
   return request({
326
-    url: '/api/drugcancelstock/create?time=' + cancelStockTime + '&manufacturer_id=' + manufacturer_id + '&dealer_id=' + dealer_id + '&type=' + type,
326
+    url: '/api/drugcancelstock/create?time=' + cancelStockTime + '&manufacturer_id=' + manufacturer_id + '&dealer_id=' + dealer_id + '&type=' + type + '&storehouse_id=' + storehouse_id,
327 327
     method: 'post',
328 328
     data: params
329 329
   })

+ 26 - 11
src/api/stock.js Parādīt failu

@@ -201,9 +201,9 @@ export function GetAllGoodInfo(params) {
201 201
   })
202 202
 }
203 203
 
204
-export function postWarehouse(params, warehousing_time, manufacturer_id, dealer_id, type) {
204
+export function postWarehouse(params, warehousing_time, manufacturer_id, dealer_id, type, storehouse_id) {
205 205
   return request({
206
-    url: '/api/warehouse/create?warehousing_time=' + warehousing_time + '&manufacturer_id=' + manufacturer_id + '&dealer_id=' + dealer_id + '&type=' + type,
206
+    url: '/api/warehouse/create?warehousing_time=' + warehousing_time + '&manufacturer_id=' + manufacturer_id + '&dealer_id=' + dealer_id + '&type=' + type + '&storehouse_id=' + storehouse_id,
207 207
     method: 'post',
208 208
     data: params
209 209
   })
@@ -273,9 +273,9 @@ export function getWarehouseOutInfoList(params) {
273 273
   })
274 274
 }
275 275
 
276
-export function postWarehouseOut(params, warehousing_time, dealer_id, manufacturer_id, type) {
276
+export function postWarehouseOut(params, warehousing_time, dealer_id, manufacturer_id, type, storehouse_id) {
277 277
   return request({
278
-    url: '/api/warehouseout/create?warehousing_out_time=' + warehousing_time + '&dealer_id=' + dealer_id + '&manufacturer_id=' + manufacturer_id + '&type=' + type,
278
+    url: '/api/warehouseout/create?warehousing_out_time=' + warehousing_time + '&dealer_id=' + dealer_id + '&manufacturer_id=' + manufacturer_id + '&type=' + type + '&storehouse_id=' + storehouse_id,
279 279
     method: 'post',
280 280
     data: params
281 281
   })
@@ -386,9 +386,9 @@ export function DeleteWarehouseInfoItem(params) {
386 386
   })
387 387
 }
388 388
 
389
-export function EditWarehouse(params, warehousing_time, id, type, manufacturer_id, dealer_id) {
389
+export function EditWarehouse(params, warehousing_time, id, type, manufacturer_id, dealer_id, storehouse_id) {
390 390
   return request({
391
-    url: '/api/warehouse/edit?warehousing_time=' + warehousing_time + '&id=' + id + '&type=' + type + '&manufacturer_id=' + manufacturer_id + '&dealer_id=' + dealer_id,
391
+    url: '/api/warehouse/edit?warehousing_time=' + warehousing_time + '&id=' + id + '&type=' + type + '&manufacturer_id=' + manufacturer_id + '&dealer_id=' + dealer_id + '&storehouse_id=' + storehouse_id,
392 392
     method: 'post',
393 393
     data: params
394 394
   })
@@ -474,9 +474,9 @@ export function getWarehouseOutInfo(params) {
474 474
   })
475 475
 }
476 476
 
477
-export function editWarehouseoutInfo(params, warehouse_out_time, id, type, manufacturer_id, dealer_id) {
477
+export function editWarehouseoutInfo(params, warehouse_out_time, id, type, manufacturer_id, dealer_id, storehouse_id) {
478 478
   return request({
479
-    url: '/api/warehouseout/edit?warehouse_out_time=' + warehouse_out_time + '&id=' + id + '&type=' + type + '&manufacturer_id=' + manufacturer_id + '&dealer_id=' + dealer_id,
479
+    url: '/api/warehouseout/edit?warehouse_out_time=' + warehouse_out_time + '&id=' + id + '&type=' + type + '&manufacturer_id=' + manufacturer_id + '&dealer_id=' + dealer_id + '&storehouse_id=' + storehouse_id,
480 480
     method: 'post',
481 481
     data: params
482 482
   })
@@ -522,9 +522,9 @@ export function deleteCancelStockInfo(params) {
522 522
   })
523 523
 }
524 524
 
525
-export function postCancelStock(params, cancelStockTime, manufacturer_id, dealer_id, type) {
525
+export function postCancelStock(params, cancelStockTime, manufacturer_id, dealer_id, type, storehouse_id) {
526 526
   return request({
527
-    url: '/api/cancelstock/create?time=' + cancelStockTime + '&manufacturer_id=' + manufacturer_id + '&dealer_id=' + dealer_id + '&type=' + type,
527
+    url: '/api/cancelstock/create?time=' + cancelStockTime + '&manufacturer_id=' + manufacturer_id + '&dealer_id=' + dealer_id + '&type=' + type + '&storehouse_id=' + storehouse_id,
528 528
     method: 'post',
529 529
     data: params
530 530
   })
@@ -779,7 +779,6 @@ export function saveReportStock(data) {
779 779
 }
780 780
 
781 781
 export function getReportStockList(params) {
782
-  console.log('params', params)
783 782
   return request({
784 783
     url: '/api/stock/getreportstocklist',
785 784
     method: 'get',
@@ -978,3 +977,19 @@ export function getInventoryExportList(params) {
978 977
     params: params
979 978
   })
980 979
 }
980
+
981
+export function getDrugDetailSummary(params) {
982
+  return request({
983
+    url: '/api/stock/getdrugdetailsummary',
984
+    method: 'get',
985
+    params: params
986
+  })
987
+}
988
+
989
+export function getGoodDetailSummary(params) {
990
+  return request({
991
+    url: '/api/stock/getgooddetialsummary',
992
+    method: 'Get',
993
+    params: params
994
+  })
995
+}

+ 31 - 15
src/api/warehouse.js Parādīt failu

@@ -1,6 +1,6 @@
1 1
 import request from '@/utils/request'
2 2
 
3
-//分页(已渲染)
3
+// 分页(已渲染)
4 4
 export function storehouselist(params) {
5 5
   return request({
6 6
     url: '/api/secondary/storehouselist',
@@ -9,7 +9,7 @@ export function storehouselist(params) {
9 9
   })
10 10
 }
11 11
 
12
-//获取当前机构的所有可用仓库名称接口(已渲染)
12
+// 获取当前机构的所有可用仓库名称接口(已渲染)
13 13
 export function getallstorehousename(params) {
14 14
   return request({
15 15
     url: '/api/secondary/getallstorehousename',
@@ -18,7 +18,7 @@ export function getallstorehousename(params) {
18 18
   })
19 19
 }
20 20
 
21
-//获取一条仓库数据接口(好像用不到了)
21
+// 获取一条仓库数据接口(好像用不到了)
22 22
 export function getonestorehouse(params) {
23 23
   return request({
24 24
     url: '/api/secondary/getonestorehouse',
@@ -27,7 +27,7 @@ export function getonestorehouse(params) {
27 27
   })
28 28
 }
29 29
 
30
-//修改仓库接口(已渲染)
30
+// 修改仓库接口(已渲染)
31 31
 export function updatestorehouse(data) {
32 32
   return request({
33 33
     url: '/api/secondary/updatestorehouse',
@@ -36,7 +36,7 @@ export function updatestorehouse(data) {
36 36
   })
37 37
 }
38 38
 
39
-//添加仓库接口(已渲染)
39
+// 添加仓库接口(已渲染)
40 40
 export function addstorehouse(data) {
41 41
   return request({
42 42
     url: '/api/secondary/addstorehouse',
@@ -45,7 +45,7 @@ export function addstorehouse(data) {
45 45
   })
46 46
 }
47 47
 
48
-//仓库地址查重接口(合并到新增)
48
+// 仓库地址查重接口(合并到新增)
49 49
 export function isstorehouseaddress(params) {
50 50
   return request({
51 51
     url: '/api/secondary/isstorehouseaddress',
@@ -54,7 +54,7 @@ export function isstorehouseaddress(params) {
54 54
   })
55 55
 }
56 56
 
57
-//仓库名称查重接口(合并到新增)
57
+// 仓库名称查重接口(合并到新增)
58 58
 export function isstorehousename(params) {
59 59
   return request({
60 60
     url: '/api/secondary/isstorehousename',
@@ -63,7 +63,7 @@ export function isstorehousename(params) {
63 63
   })
64 64
 }
65 65
 
66
-//删除仓库接口(已渲染)
66
+// 删除仓库接口(已渲染)
67 67
 export function deletestorehouse(params) {
68 68
   return request({
69 69
     url: '/api/secondary/deletestorehouse',
@@ -72,7 +72,7 @@ export function deletestorehouse(params) {
72 72
   })
73 73
 }
74 74
 
75
-//修改仓库状态接口(已渲染)
75
+// 修改仓库状态接口(已渲染)
76 76
 export function updatestatus(params) {
77 77
   return request({
78 78
     url: '/api/secondary/updatestatus',
@@ -81,7 +81,7 @@ export function updatestatus(params) {
81 81
   })
82 82
 }
83 83
 
84
-//获取仓库编号接口(已渲染)
84
+// 获取仓库编号接口(已渲染)
85 85
 export function getcode(params) {
86 86
   return request({
87 87
     url: '/api/secondary/getcode',
@@ -90,7 +90,7 @@ export function getcode(params) {
90 90
   })
91 91
 }
92 92
 
93
-//查询该机构的仓库配置(已渲染)
93
+// 查询该机构的仓库配置(已渲染)
94 94
 export function findstorehouseconfig(params) {
95 95
   return request({
96 96
     url: '/api/secondary/findstorehouseconfig',
@@ -99,7 +99,7 @@ export function findstorehouseconfig(params) {
99 99
   })
100 100
 }
101 101
 
102
-//更改耗材自动入库仓库(已渲染)
102
+// 更改耗材自动入库仓库(已渲染)
103 103
 export function updateinfo(params) {
104 104
   return request({
105 105
     url: '/api/secondary/updateinfo',
@@ -107,7 +107,7 @@ export function updateinfo(params) {
107 107
     params: params
108 108
   })
109 109
 }
110
-//更改耗材自动出库仓库(已渲染)
110
+// 更改耗材自动出库仓库(已渲染)
111 111
 export function updateoutinfo(params) {
112 112
   return request({
113 113
     url: '/api/secondary/updateoutinfo',
@@ -115,7 +115,7 @@ export function updateoutinfo(params) {
115 115
     params: params
116 116
   })
117 117
 }
118
-//更改药品自动入库仓库(已渲染)
118
+// 更改药品自动入库仓库(已渲染)
119 119
 export function updatedruginfo(params) {
120 120
   return request({
121 121
     url: '/api/secondary/updatedruginfo',
@@ -123,7 +123,7 @@ export function updatedruginfo(params) {
123 123
     params: params
124 124
   })
125 125
 }
126
-//更改药品自动出库仓库(已渲染)
126
+// 更改药品自动出库仓库(已渲染)
127 127
 export function updatedrugout(params) {
128 128
   return request({
129 129
     url: '/api/secondary/updatedrugout',
@@ -131,6 +131,22 @@ export function updatedrugout(params) {
131 131
     params: params
132 132
   })
133 133
 }
134
+// 获取管理员列表(已渲染)
135
+export function getusername(params) {
136
+  return request({
137
+    url: '/api/secondary/getusername',
138
+    method: 'get',
139
+    params: params
140
+  })
141
+}
142
+// 获取当前登录人的id(已渲染)
143
+export function getcreaterid(params) {
144
+  return request({
145
+    url: '/api/secondary/getcreaterid',
146
+    method: 'get',
147
+    params: params
148
+  })
149
+}
134 150
 //获取管理员列表(已渲染)
135 151
 export function getusername(params) {
136 152
   return request({

+ 5 - 2
src/lang/zh.js Parādīt failu

@@ -174,8 +174,10 @@ export default {
174 174
     selfPreparedMedicineQuery: '自备药查询',
175 175
     selfPreparedMedicineIndex: '自备药管理',
176 176
     selfPreparedMedicine: '自备药管理',
177
+    wareHouseManage: '仓库管理',
178
+    inventoryTransfer: '库存调拨',
177 179
     wareHouseManage:'仓库管理',
178
-    
180
+
179 181
     inventoryTransfer:'库存调拨',
180 182
 
181 183
     consumablesManagement: '耗材管理',
@@ -278,7 +280,8 @@ export default {
278 280
     labelPrint: '标签打印',
279 281
     faPiao: '发票设置',
280 282
     chargeDetailManagement: '收费明细',
281
-    yidiClear: '异地清分'
283
+    yidiClear: '异地清分',
284
+    zeroSummary: '零用明细汇总'
282 285
   },
283 286
   navbar: {
284 287
     logOut: '退出登录',

+ 7 - 2
src/router/modules/hisTool.js Parādīt failu

@@ -34,7 +34,7 @@ export default {
34 34
       component: () => import('@/xt_pages/outpatientRecord/outpatientRecord'),
35 35
       name: 'outpatientSickRecord',
36 36
       meta: { title: 'outpatientSickRecord', noCache: true }
37
-    },{
37
+    }, {
38 38
       path: '/hisTool/summary',
39 39
       component: () => import('@/xt_pages/outpatientTool/summary'),
40 40
       name: 'outpatientSickRecord',
@@ -63,6 +63,11 @@ export default {
63 63
       name: 'statistics',
64 64
       meta: { title: 'statistics', noCache: true }
65 65
     },
66
-
66
+    {
67
+      path: '/hisTool/zeroSummary',
68
+      component: () => import('@/xt_pages/outpatientTool/zeroSummary'),
69
+      name: 'zeroSummary',
70
+      meta: { title: 'zeroSummary', noCache: true }
71
+    }
67 72
   ]
68 73
 }

+ 12 - 0
src/router/modules/stock.js Parādīt failu

@@ -372,6 +372,18 @@ export default {
372 372
         title: '调拨详情',
373 373
         noCache: true
374 374
       }
375
+    },
376
+
377
+    {
378
+      path: '/stock/inventoryTransfer/transedit',
379
+      component: () => import('@/xt_pages/stock/inventoryTransfer/transEdit'),
380
+      hidden: true,
381
+      is_menu: false,
382
+      name: 'transEdit',
383
+      meta: {
384
+        title: '编辑调拨',
385
+        noCache: true
386
+      }
375 387
     }
376 388
   ]
377 389
 }

+ 55 - 16
src/xt_pages/stock/cancelStockOrder.vue Parādīt failu

@@ -15,12 +15,21 @@
15 15
 
16 16
     <div class="app-container">
17 17
       <div class="cell clearfix">
18
+        <label class="title"><span class="name">仓库</span> :</label>
19
+        <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px" @change="changeStoreHouse">
20
+            <el-option
21
+              v-for="(option, index) in houseList"
22
+              :key="index"
23
+              :label="option.storehouse_name"
24
+              :value="option.id">
25
+            </el-option>
26
+        </el-select> 
18 27
         <el-input
19 28
           size="small"
20
-          style="width: 400px;"
29
+          style="width: 200px;"
21 30
           class="filter-item"
22 31
           v-model.trim="searchKey"
23
-          placeholder="单据编码/制单人/厂商"
32
+          placeholder="单据编码/制单人"
24 33
         />
25 34
         <el-button
26 35
           size="small"
@@ -105,6 +114,12 @@
105 114
             </template>
106 115
           </el-table-column>
107 116
 
117
+          <el-table-column label="仓库名称" align="center">
118
+            <template slot-scope="scope">
119
+              {{getHouseName(scope.row.storehouse_id) }}
120
+            </template>
121
+          </el-table-column>
122
+
108 123
           <el-table-column label="制单人" align="center">
109 124
             <template slot-scope="scope">
110 125
               {{ getXuserName(scope.row.creater) }}
@@ -192,6 +207,12 @@
192 207
             </template>
193 208
           </el-table-column>
194 209
 
210
+         <el-table-column label="仓库名称" align="center">
211
+            <template slot-scope="scope">
212
+              {{getHouseName(scope.row.storehouse_id)}}
213
+            </template>
214
+          </el-table-column>
215
+
195 216
           <el-table-column label="退库数量" align="center">
196 217
             <template slot-scope="scope">
197 218
               {{ scope.row.count}}{{scope.row.GoodInfo.packing_unit}}
@@ -321,7 +342,9 @@ export default {
321 342
       tableList:[],
322 343
       showTable:false,
323 344
       order_id:"",
324
-      exportList:[]
345
+      exportList:[],
346
+      houseList:[],
347
+      storehouse_id:0,
325 348
     };
326 349
   },
327 350
   methods: {
@@ -332,7 +355,8 @@ export default {
332 355
         start_time: this.start_time,
333 356
         end_time: this.end_time,
334 357
         type: this.type,
335
-        keywords: this.searchKey
358
+        keywords: this.searchKey,
359
+        storehouse_id:this.storehouse_id,
336 360
       };
337 361
       this.cancelStockDate = [];
338 362
       getCancelStockList(Params).then(response => {
@@ -344,6 +368,7 @@ export default {
344 368
           for (let i = 0; i < response.data.data.list.length; i++) {
345 369
             this.cancelStockDate.push(response.data.data.list[i]);
346 370
           }
371
+          this.houseList = response.data.data.houseList
347 372
         }
348 373
       });
349 374
     },
@@ -359,7 +384,8 @@ export default {
359 384
         limit: this.limit,
360 385
         start_time: this.start_time,
361 386
         end_time: this.end_time,
362
-        type: this.type
387
+        type: this.type,
388
+        storehouse_id:this.storehouse_id,
363 389
       };
364 390
       this.cancelStockDate = [];
365 391
       getCancelStockList(Params).then(response => {
@@ -371,6 +397,13 @@ export default {
371 397
           for (let i = 0; i < response.data.data.list.length; i++) {
372 398
             this.cancelStockDate.push(response.data.data.list[i]);
373 399
           }
400
+          var obj = {id:0,storehouse_name:"全部"}
401
+          this.houseList = []
402
+          this.houseList.push(obj)
403
+          for(let i=0;i<response.data.data.houseList.length;i++){
404
+            this.houseList.push(response.data.data.houseList[i])
405
+          }
406
+        
374 407
         }
375 408
       });
376 409
     },
@@ -399,7 +432,7 @@ export default {
399 432
     },
400 433
     fetchAllAdminUsers() {
401 434
       fetchAllAdminUsers().then(response => {
402
-        console.log(response);
435
+     
403 436
         if (response.data.state == 1) {
404 437
           this.adminUserOptions = response.data.data.users;
405 438
           var alen = this.adminUserOptions.length;
@@ -474,7 +507,7 @@ export default {
474 507
       }
475 508
     },
476 509
     handleEdit: function(index, row) {
477
-      console.log("row22222",row.id)
510
+    
478 511
       this.$router.push({"path":"/stock/cancel/cancelstockorderedit?id="+row.id})
479 512
     },
480 513
     handleDelete: function(index, row) {
@@ -485,8 +518,7 @@ export default {
485 518
       const params = {
486 519
         ids: idStr
487 520
       };
488
-      console.log("params233223232323232323",params)
489
-     
521
+
490 522
       this.$confirm("确认删除退库单记录?", "删除退库单记录", {
491 523
         confirmButtonText: "确定",
492 524
         cancelButtonText: "取消",
@@ -583,18 +615,15 @@ export default {
583 615
       getSingCancelOrder(params).then(response=>{
584 616
         if(response.data.state == 1){
585 617
           var list = response.data.data.list
586
-          console.log("list0000000000",list)
587 618
           this.tableList = list
588 619
           this.showTable = true
589 620
         }
590 621
       }) 
591 622
     },
592 623
     toPrint(){
593
-      console.log("22222",this.order_id)
594 624
       if(this.order_id == ""){
595 625
         this.$message.error("请勾选退库单")
596 626
       }else{
597
-        console.log("232332332")
598 627
         this.$router.push({path:'/stock/drugs/cancelstockorderprint?order_id='+this.order_id+"&start_time="+this.start_time+"&end_time="+this.end_time})
599 628
       }
600 629
     },
@@ -614,11 +643,10 @@ export default {
614 643
         end_time: this.end_time,
615 644
         order_id:this.order_id,
616 645
       };
617
-      console.log("params2323232",Params)
646
+
618 647
      getCancelExportList(Params).then(response=>{
619 648
         if(response.data.state == 1){
620 649
           var list =  response.data.data.list
621
-          console.log("list2323232",list)
622 650
           this.exportList = list
623 651
         }
624 652
      })
@@ -630,7 +658,6 @@ export default {
630 658
         return
631 659
       }
632 660
      import('@/vendor/Export2Excel').then(excel => {
633
-      console.log("23232323",this.exportList)
634 661
       for(let i=0;i<this.exportList.length;i++){
635 662
         this.exportList[i].total_price = this.exportList[i].count * this.exportList[i].price
636 663
         this.exportList[i].good_name = this.exportList[i].GoodInfo.good_name
@@ -647,7 +674,7 @@ export default {
647 674
       }
648 675
       const tHeader = ['耗材名称',  '规格&单位','退库数量','退库单价','批次','品名/注册证号(备案凭证号)','生产厂家','生产日期','有效期','退库原因']
649 676
       const filterVal = ['good_name', 'unit','count','price','number','register_account','manufacturer','product_date','expiry_date','remark']
650
-      console.log("table",this.exportList)
677
+
651 678
      
652 679
       const data = this.formatJson(filterVal, this.exportList)
653 680
       excel.export_json_to_excel({
@@ -661,6 +688,18 @@ export default {
661 688
     formatJson(filterVal, jsonData) {
662 689
     return jsonData.map(v => filterVal.map(j => v[j]));
663 690
    },
691
+    getHouseName(id){
692
+      var storehouse_name = ""
693
+      for(let i=0;i<this.houseList.length;i++){
694
+        if(id == this.houseList[i].id){
695
+          storehouse_name = this.houseList[i].storehouse_name
696
+        }
697
+      }
698
+      return storehouse_name
699
+    },
700
+    changeStoreHouse(){
701
+      this.GetCancelStock()
702
+    }
664 703
   }
665 704
 };
666 705
 </script>

+ 26 - 12
src/xt_pages/stock/cancelStockOrderAdd.vue Parādīt failu

@@ -35,8 +35,16 @@
35 35
       ></stock-in-dialog>
36 36
       <div class="filter-container">
37 37
         <div class="cell clearfix">
38
+         <label class="title"><span class="name"><span style="color:red">*</span>仓库</span> :</label>
39
+         <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px">
40
+              <el-option
41
+                v-for="(option, index) in list"
42
+                :key="index"
43
+                :label="option.storehouse_name"
44
+                :value="option.id">
45
+              </el-option>
46
+         </el-select>
38 47
           <label class="title"><span class="name">退库时间</span> : </label>
39
-
40 48
           <el-date-picker
41 49
             size="small"
42 50
             v-model="return_time"
@@ -63,6 +71,7 @@
63 71
         >
64 72
        
65 73
          <el-table-column align="center" width="320" fixed="left">
74
+       
66 75
              <template slot="header" slot-scope="scope">
67 76
               <span>耗材名称</span>
68 77
             </template>
@@ -346,7 +355,9 @@ export default {
346 355
       goodInfo:[],
347 356
       numberList:[],
348 357
       dealerList:[],
349
-      manufacturerList:[]
358
+      manufacturerList:[],
359
+      list:[],
360
+      storehouse_id:"",
350 361
     };
351 362
   },
352 363
   methods: {
@@ -402,6 +413,8 @@ export default {
402 413
           this.dealer.splice(0, 0, { id: -1, dealer_name: '其他' })
403 414
           this.form.manufacturer = 0
404 415
           this.form.dealer = 0
416
+          this.list = response.data.data.list
417
+          this.storehouse_id = response.data.data.configlist.storehouse_out_info
405 418
         }
406 419
         loading.close()
407 420
       })
@@ -569,15 +582,14 @@ export default {
569 582
           const params = {
570 583
             cancelStock: this.recordInfo.recordData
571 584
           };
572
-        
573
-          console.log("parasm23233222332323",params)
574
-          
585
+         
575 586
           postCancelStock(
576 587
             params,
577 588
             this.return_time,
578 589
             this.form.manufacturer,
579 590
             this.form.dealer,
580
-            this.type
591
+            this.type,
592
+            this.storehouse_id,
581 593
           ).then(response => {
582 594
             if (response.data.state == 0) {
583 595
               this.$message.error(response.data.msg);
@@ -585,18 +597,22 @@ export default {
585 597
               return false;
586 598
             } else {
587 599
              var msg =  response.data.data.msg
600
+             var good_name = response.data.data.good_name
601
+             var specification_name = response.data.data.specification_name
602
+             var storehose_name = response.data.data.storehouse_name
603
+            var str = storehose_name + " " + good_name +"*" + specification_name +"该批次退库数量大于出库数量"
588 604
              if (msg == 1){
589 605
                 this.$message.error("无出库记录")
590 606
                 return
591 607
              }
592 608
              if(msg == 2){
593
-               this.$message.error("该批次退库数量大于出库数量")
609
+               this.$message.error(str)
594 610
              }
595 611
               if(msg == 4){
596
-               this.$message.error("该批次退库数量大于入库数量")
612
+               this.$message.error(str)
597 613
              }
598 614
              if(msg == 5){
599
-              this.$message.error("该批次退库数量大于入库数量")
615
+              this.$message.error(str)
600 616
              }
601 617
              if(msg == 3){
602 618
                this.$notify({
@@ -662,7 +678,7 @@ export default {
662 678
       this.currentIndex = val
663 679
     },
664 680
     handleSelect(val){
665
-      console.log("列表23323232332",this.recordInfo.recordData)
681
+     
666 682
       for(let i=0;i<this.recordInfo.recordData.length;i++){
667 683
         if(this.currentIndex == i){
668 684
           this.recordInfo.recordData[i].good_name = val.good_name
@@ -697,8 +713,6 @@ export default {
697 713
       getStockBatchNumber(params).then(response=>{
698 714
         if(response.data.state == 1){
699 715
           var list = response.data.data.list
700
-          console.log("list2243444",list)
701
-
702 716
           this.numberList = []
703 717
           this.numberList = list
704 718
         }

+ 16 - 2
src/xt_pages/stock/cancelStockOrderEdit.vue Parādīt failu

@@ -16,7 +16,16 @@
16 16
         v-on:dialog-cancle="cancle"
17 17
       ></stock-in-dialog>
18 18
       <div class="cell clearfix">
19
-
19
+      
20
+         <label class="title"><span class="name"><span style="color:red">*</span>仓库</span> :</label>
21
+         <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px" :disabled="true">
22
+              <el-option
23
+                v-for="(option, index) in list"
24
+                :key="index"
25
+                :label="option.storehouse_name"
26
+                :value="option.id">
27
+              </el-option>
28
+         </el-select>
20 29
         <label class="title"><span class="name">退库时间</span> : </label>
21 30
         <el-date-picker size="small" v-model="return_time" prefix-icon="el-icon-date" :editable="false" style="width: 196px;"
22 31
                         type="date" placeholder="选择日期时间" align="right" format="yyyy-MM-dd"
@@ -315,7 +324,9 @@
315 324
         manufacturerList:[],
316 325
         dealerList:[],
317 326
         numberList:[],
318
-        numberShow:true
327
+        numberShow:true,
328
+        storehouse_id:"",
329
+        list:[],
319 330
       }
320 331
     },
321 332
     methods: {
@@ -365,6 +376,8 @@
365 376
             this.dealer.splice(0, 0, { id: -1, dealer_name: '其他' })
366 377
             this.form.manufacturer = 0
367 378
             this.form.dealer = 0
379
+            this.list = response.data.data.list
380
+          
368 381
           }
369 382
           loading.close()
370 383
         })
@@ -598,6 +611,7 @@
598 611
               this.recordInfo.recordData.push(response.data.data.list[i])
599 612
             }
600 613
             this.cancelStock = response.data.data.info
614
+            this.storehouse_id = response.data.data.info.storehouse_id
601 615
             this.return_time = this.getTime(this.cancelStock.return_time, '{y}-{m}-{d}')
602 616
             this.form.manufacturer = this.cancelStock.manufacturer
603 617
             this.form.dealer = this.cancelStock.dealer

+ 48 - 47
src/xt_pages/stock/detail/cancelStockDetail.vue Parādīt failu

@@ -23,9 +23,18 @@
23 23
       >汇总导出
24 24
     </el-button>
25 25
     <div class="cell clearfix">
26
+     <label class="title"><span class="name">仓库</span> :</label>
27
+      <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px" @change="changeHouseList">
28
+          <el-option
29
+            v-for="(option, index) in houseList"
30
+            :key="index"
31
+            :label="option.storehouse_name"
32
+            :value="option.id">
33
+          </el-option>
34
+      </el-select>  
26 35
       <el-input
27 36
         size="small"
28
-        style="width: 400px;"
37
+        style="width:200px;"
29 38
         class="filter-item"
30 39
         v-model.trim="searchKey"
31 40
         placeholder="单据编码/制单人/规格名称/耗材名称"
@@ -38,7 +47,7 @@
38 47
         @click="search"
39 48
         >搜索</el-button
40 49
       >
41
-      <div style="margin-left:10px;">
50
+     
42 51
         <label class="title"><span class="name">日期查询</span> : </label>
43 52
         <el-date-picker
44 53
           size="small"
@@ -67,49 +76,10 @@
67 76
           value-format="yyyy-MM-dd"
68 77
           @change="endTimeChange"
69 78
         ></el-date-picker>
70
-      </div>
71
-    </div>
72
-
73 79
     
80
+    </div>
74 81
 
75
-    <!-- <div class="cell clearfix">
76
-      <label class="title"><span class="name">单据类型</span> : </label>
77
-      <el-select
78
-        size="small"
79
-        v-model="order_type"
80
-        clearable
81
-        placeholder="单据类型"
82
-        @change="changeType"
83
-      >
84
-        <el-option
85
-          v-for="item in orderTypeArr"
86
-          :key="item.value"
87
-          :label="item.label"
88
-          :value="item.value"
89
-        >
90
-        </el-option>
91
-      </el-select>
92
-    </div> -->
93
-
94
-    <!-- <div class="cell clearfix">
95
-      <label class="title"><span class="name">其它</span> : </label>
96
-      <el-select
97
-        size="small"
98
-        v-model="manufacturer_id"
99
-        clearable
100
-        placeholder="厂商"
101
-        @change="changeManufacturer"
102
-      >
103
-        <el-option
104
-          v-for="item in manufacturer"
105
-          :key="item.id"
106
-          :label="item.manufacturer_name"
107
-          :value="item.id"
108
-        >
109
-        </el-option>
110
-      </el-select>
111
-    </div> -->
112
-
82
+  
113 83
     <el-row :gutter="12" style="margin-top: 10px">
114 84
       <el-table
115 85
         :data="cancelStockDate"
@@ -166,6 +136,12 @@
166 136
           </template>
167 137
         </el-table-column>
168 138
 
139
+        <el-table-column label="仓库名称" align="center">
140
+          <template slot-scope="scope">
141
+            {{ getStorehouseName(scope.row.storehouse_id) }}
142
+          </template>
143
+        </el-table-column>
144
+
169 145
         <el-table-column label="数量" align="center">
170 146
           <template slot-scope="scope">
171 147
             {{ scope.row.count }}
@@ -280,6 +256,8 @@ export default {
280 256
       goodUnit:[],
281 257
       tableDataList:[],
282 258
       table:[],
259
+      houseList:[],
260
+      storehouse_id:0
283 261
     };
284 262
   },
285 263
   methods: {
@@ -390,9 +368,10 @@ export default {
390 368
         manufacturer: this.manufacturer_id,
391 369
         order_type: this.order_type,
392 370
         dealer: this.dealer_id,
393
-        keywords: this.searchKey
371
+        keywords: this.searchKey,
372
+        storehouse_id:this.storehouse_id,
394 373
       };
395
-      // console.log("Params23232233223232332",Params)
374
+    
396 375
       this.cancelStockDate = [];
397 376
       getStockDetail(Params).then(response => {
398 377
         if (response.data.state == 0) {
@@ -400,7 +379,12 @@ export default {
400 379
           return false;
401 380
         } else {
402 381
           this.total = response.data.data.total;
403
-          // console.log("数据源头",response.data.data.list)
382
+          var obj = {id:0,storehouse_name:"全部"}
383
+          this.houseList = []
384
+          this.houseList.push(obj)
385
+          for(let i=0;i<response.data.data.houseList.length;i++){
386
+           this.houseList.push(response.data.data.houseList[i])
387
+          }
404 388
           var total = 0
405 389
           for (let i = 0; i < response.data.data.list.length; i++) {
406 390
             
@@ -728,7 +712,24 @@ export default {
728 712
         }
729 713
       }
730 714
       return total
731
-    }
715
+    },
716
+   getStorehouseName(id){
717
+       var storehouse_name = ""
718
+       for(let i=0;i<this.houseList.length;i++){
719
+         if(id == this.houseList[i].id){
720
+           storehouse_name = this.houseList[i].storehouse_name
721
+         }
722
+       }
723
+       if(storehouse_name == "全部"){
724
+          return ""
725
+       }else{
726
+         return storehouse_name
727
+       }
728
+     },
729
+     changeHouseList(){
730
+       this.houseList = []
731
+       this.GetCancelStock()
732
+     }
732 733
   }
733 734
 };
734 735
 </script>

+ 50 - 8
src/xt_pages/stock/detail/stockInDetail.vue Parādīt failu

@@ -26,9 +26,18 @@
26 26
     </el-button>
27 27
 
28 28
     <div class="cell clearfix">
29
+      <label class="title"><span class="name">仓库</span> :</label>
30
+      <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px" @change="changeHouseList">
31
+          <el-option
32
+            v-for="(option, index) in houseList"
33
+            :key="index"
34
+            :label="option.storehouse_name"
35
+            :value="option.id">
36
+          </el-option>
37
+      </el-select>  
29 38
       <el-input
30 39
         size="small"
31
-        style="width: 400px;"
40
+        style="width: 180px;"
32 41
         class="filter-item"
33 42
         v-model.trim="searchKey"
34 43
         placeholder="单据编码/制单人/规格名称/耗材名称"
@@ -41,7 +50,7 @@
41 50
         @click="search"
42 51
         >搜索</el-button
43 52
       >
44
-      <div style="margin-left:10px;">
53
+    
45 54
         <label class="title"><span class="name">日期查询</span> : </label>
46 55
         <el-date-picker
47 56
           size="small"
@@ -70,7 +79,7 @@
70 79
           value-format="yyyy-MM-dd"
71 80
           @change="endTimeChange"
72 81
         ></el-date-picker>
73
-      </div>
82
+      
74 83
     </div>
75 84
 
76 85
     <el-row :gutter="12" style="margin-top: 10px">
@@ -102,12 +111,14 @@
102 111
         <el-table-column label="耗材名称" align="center">
103 112
           <template slot-scope="scope">
104 113
             {{ typeNameOne(scope.row.good_id) }}
114
+          
105 115
           </template>
106 116
         </el-table-column>
107 117
 
108 118
         <el-table-column label="规格型号" align="center">
109 119
           <template slot-scope="scope">
110 120
             {{ specificationName(scope.row.good_id) }}
121
+           
111 122
           </template>
112 123
         </el-table-column>
113 124
 
@@ -122,6 +133,11 @@
122 133
             {{ getXuserName(scope.row.Warehousing.creater) }}
123 134
           </template>
124 135
         </el-table-column>
136
+        <el-table-column label="仓库名称" align="center">
137
+          <template slot-scope="scope">
138
+            {{getStorehouseName(scope.row.storehouse_id) }}
139
+          </template>
140
+        </el-table-column>
125 141
         <el-table-column label="进货价" align="center">
126 142
           <template slot-scope="scope">
127 143
             {{ scope.row.price }}
@@ -247,6 +263,8 @@ export default {
247 263
       org_id:0,
248 264
       tableInfo:[],
249 265
       tableDataList:[],
266
+      houseList:[],
267
+      storehouse_id:0,
250 268
     };
251 269
   },
252 270
   methods: {
@@ -308,7 +326,8 @@ export default {
308 326
         start_time: this.start_time,
309 327
         end_time: this.end_time,
310 328
         type: this.type,
311
-        keywords: this.searchKey
329
+        keywords: this.searchKey,
330
+        storehouse_id:this.storehouse_id,
312 331
       };
313 332
       this.cancelStockDate = [];
314 333
       this.tableList = []
@@ -361,7 +380,8 @@ export default {
361 380
         manufacturer: this.manufacturer_id,
362 381
         order_type: this.order_type,
363 382
         dealer: this.dealer_id,
364
-        keywords: this.searchKey
383
+        keywords: this.searchKey,
384
+        storehouse_id:this.storehouse_id,
365 385
       };
366 386
       this.cancelStockDate = [];
367 387
       getStockDetail(Params).then(response => {
@@ -370,6 +390,12 @@ export default {
370 390
           return false;
371 391
         } else {
372 392
           this.total = response.data.data.total;
393
+          var obj = {id:0,storehouse_name:"全部"}
394
+          this.houseList = []
395
+          this.houseList.push(obj)
396
+          for(let i=0;i<response.data.data.houseList.length;i++){
397
+           this.houseList.push(response.data.data.houseList[i])
398
+          }
373 399
           var total_price = 0
374 400
           for (let i = 0; i < response.data.data.list.length; i++) {
375 401
             total_price += parseInt(response.data.data.list[i].warehousing_count) * response.data.data.list[i].price
@@ -379,6 +405,8 @@ export default {
379 405
             this.cancelStockDate.push(obj);
380 406
           }
381 407
           this.tableDataList = response.data.data.list
408
+          console.log("表格发3223332322332332323232332233",this.cancelStockDate)
409
+         
382 410
           this.cancelStockDate.push({
383 411
             warehousing_order: "合计",
384 412
             is_total: 1,
@@ -430,12 +458,10 @@ export default {
430 458
       this.multipleSelection = val;
431 459
     },
432 460
     handleSizeChange(val) {
433
-      console.log("val2332323223",val)
434 461
       this.limit = val;
435 462
       this.GetCancelStock();
436 463
     },
437 464
     handleCurrentChange(val) {
438
-      console.log("888888",val)
439 465
       this.page = val;
440 466
       this.GetCancelStock();
441 467
     },
@@ -795,10 +821,26 @@ export default {
795 821
       getGoodDetailPrintList(params).then(response=>{
796 822
         if(response.data.state == 1){
797 823
           var list = response.data.data.list
798
-          // console.log("入库详情单",list)
799 824
           this.tableInfo = list
800 825
         }
801 826
       })
827
+     },
828
+     getStorehouseName(id){
829
+       var storehouse_name = ""
830
+       for(let i=0;i<this.houseList.length;i++){
831
+         if(id == this.houseList[i].id){
832
+           storehouse_name = this.houseList[i].storehouse_name
833
+         }
834
+       }
835
+       if(storehouse_name == "全部"){
836
+          return ""
837
+       }else{
838
+         return storehouse_name
839
+       }
840
+     },
841
+     changeHouseList(){
842
+       this.houseList = []
843
+       this.GetCancelStock()
802 844
      }
803 845
   }
804 846
 };

+ 77 - 37
src/xt_pages/stock/detail/stockOutDetail.vue Parādīt failu

@@ -23,9 +23,18 @@
23 23
       >汇总导出
24 24
     </el-button>
25 25
     <div class="cell clearfix">
26
+      <label class="title"><span class="name">仓库</span> :</label>
27
+      <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px" @change="changeHouseList">
28
+          <el-option
29
+            v-for="(option, index) in houseList"
30
+            :key="index"
31
+            :label="option.storehouse_name"
32
+            :value="option.id">
33
+          </el-option>
34
+      </el-select>
26 35
       <el-input
27 36
         size="small"
28
-        style="width: 400px;"
37
+        style="width:180px;"
29 38
         class="filter-item"
30 39
         v-model.trim="searchKey"
31 40
         placeholder="单据编码/制单人/规格名称/耗材名称"
@@ -38,7 +47,7 @@
38 47
         @click="search"
39 48
         >搜索</el-button
40 49
       >
41
-      <div style="margin-left:10px;">
50
+
42 51
         <label class="title"><span class="name">日期查询</span> : </label>
43 52
         <el-date-picker
44 53
           size="small"
@@ -67,7 +76,7 @@
67 76
           value-format="yyyy-MM-dd"
68 77
           @change="endTimeChange"
69 78
         ></el-date-picker>
70
-      </div>
79
+
71 80
     </div>
72 81
 
73 82
     <el-row :gutter="12" style="margin-top: 10px">
@@ -123,13 +132,18 @@
123 132
           <template slot-scope="scope">
124 133
             {{ getXuserName(scope.row.WarehouseOut.creater) }}
125 134
           </template>
135
+        </el-table-column>
136
+         <el-table-column label="仓库名称" align="center">
137
+          <template slot-scope="scope">
138
+            {{ getStorehouseName(scope.row.storehouse_id) }}
139
+          </template>
126 140
         </el-table-column>
127 141
         <el-table-column label="出货价" align="center">
128 142
           <template slot-scope="scope">
129 143
             <span v-if="scope.row.is_total == 0 && (orgId == 9919)">{{scope.row.GoodInfo.buy_price}}</span>
130
-            <span v-else> 
131
-              <span v-if="scope.row.price > 0"> {{ scope.row.price }} </span> 
132
-               <span v-if="scope.row.price == 0"> {{ scope.row.GoodInfo.packing_price }} </span> 
144
+            <span v-else>
145
+              <span v-if="scope.row.price > 0"> {{ scope.row.price }} </span>
146
+               <span v-if="scope.row.price == 0"> {{ scope.row.GoodInfo.packing_price }} </span>
133 147
             </span>
134 148
           </template>
135 149
         </el-table-column>
@@ -170,7 +184,7 @@ import { deleteCancelStock, GetAllConfig, getStockDetail,getPrintStockGood,getGo
170 184
 
171 185
 export default {
172 186
   name: "stockOutDetail",
173
-  
187
+
174 188
   created() {
175 189
     var nowDate = new Date();
176 190
     var nowYear = nowDate.getFullYear();
@@ -201,7 +215,7 @@ export default {
201 215
       this.end_time = end_time
202 216
     }
203 217
     window.sessionStorage.removeItem('start')
204
-    window.sessionStorage.removeItem('end')  
218
+    window.sessionStorage.removeItem('end')
205 219
     this.getGoodDetailPrintList()
206 220
     this.GetCancelStock();
207 221
     this.GetConfigInfo();
@@ -209,8 +223,8 @@ export default {
209 223
     this.goodUnit = this.$store.getters.good_unit
210 224
     var org_id = this.$store.getters.xt_user.org.id
211 225
     this.orgId = org_id
212
-    
213
-    
226
+
227
+
214 228
   },
215 229
   data() {
216 230
     return {
@@ -249,6 +263,8 @@ export default {
249 263
       tableData:[],
250 264
       tableOut:[],
251 265
       tableDataList:[],
266
+      storehouse_id:0,
267
+      houseList:[],
252 268
     };
253 269
   },
254 270
   methods: {
@@ -256,7 +272,7 @@ export default {
256 272
       this.order_type = val;
257 273
       this.GetCancelStock();
258 274
       this.getGoodDetailPrintList()
259
-      
275
+
260 276
     },
261 277
     changeManufacturer: function(val) {
262 278
       this.manufacturer_id = val;
@@ -323,12 +339,12 @@ export default {
323 339
           var total = 0
324 340
           for (let i = 0; i < response.data.data.list.length; i++) {
325 341
             this.tableData.push(response.data.data.list[i])
326
-            
342
+
327 343
             var obj = response.data.data.list[i];
328 344
             total += response.data.data.list[i].price * response.data.data.list[i].count
329 345
             obj["is_total"] = 0;
330 346
             this.cancelStockDate.push(obj);
331
-       
347
+
332 348
           }
333 349
           this.cancelStockDate.push({
334 350
             warehouse_out_order_number: "合计",
@@ -338,6 +354,7 @@ export default {
338 354
               warehouse_out_time: 0
339 355
             }
340 356
           });
357
+
341 358
         }
342 359
       });
343 360
     },
@@ -357,7 +374,8 @@ export default {
357 374
         manufacturer: this.manufacturer_id,
358 375
         order_type: this.order_type,
359 376
         dealer: this.dealer_id,
360
-        keywords: this.searchKey
377
+        keywords: this.searchKey,
378
+        storehouse_id:this.storehouse_id,
361 379
       };
362 380
       this.cancelStockDate = [];
363 381
       getStockDetail(Params).then(response => {
@@ -367,7 +385,12 @@ export default {
367 385
         } else {
368 386
 
369 387
           this.total = response.data.data.total;
370
-         
388
+          var obj = {id:0,storehouse_name:"全部"}
389
+          this.houseList = []
390
+          this.houseList.push(obj)
391
+          for(let i=0;i<response.data.data.houseList.length;i++){
392
+           this.houseList.push(response.data.data.houseList[i])
393
+          }
371 394
           var total = 0
372 395
           for (let i = 0; i < response.data.data.list.length; i++) {
373 396
             this.tableData.push(response.data.data.list[i])
@@ -378,13 +401,13 @@ export default {
378 401
             if(response.data.data.list[i].price == 0){
379 402
                total += response.data.data.list[i].GoodInfo.packing_price * response.data.data.list[i].count
380 403
             }
381
-           
404
+
382 405
             obj["is_total"] = 0;
383 406
             this.cancelStockDate.push(obj);
384 407
           }
385
-          
408
+
386 409
           this.tableDataList = response.data.data.list
387
-          
410
+
388 411
           this.cancelStockDate.push({
389 412
             warehouse_out_order_number: "合计",
390 413
             is_total: 1,
@@ -393,7 +416,7 @@ export default {
393 416
               warehouse_out_time: 0
394 417
             }
395 418
           });
396
-          
419
+
397 420
         }
398 421
       });
399 422
     },
@@ -456,7 +479,7 @@ export default {
456 479
         this.cancelStockDate = []
457 480
         this.GetCancelStock();
458 481
         this.getGoodDetailPrintList()
459
-       
482
+
460 483
       }
461 484
     },
462 485
     endTimeChange(val) {
@@ -649,7 +672,7 @@ export default {
649 672
     //   getPrintStockGood(params).then(response=>{
650 673
     //       if(response.data.state == 1){
651 674
     //         var stockTotal =  response.data.data.stockTotal
652
-          
675
+
653 676
     //         this.stockTotal = stockTotal
654 677
     //         var list =  response.data.data.list
655 678
     //         this.tableList = []
@@ -727,7 +750,7 @@ export default {
727 750
           is_mark:"",
728 751
           manufacturer:"",
729 752
         }
730
-       
753
+
731 754
         getGoodInfoList(params).then(response => {
732 755
           if (response.data.state == 0) {
733 756
             this.$message.error(response.data.msg)
@@ -737,7 +760,7 @@ export default {
737 760
             for (let i = 0; i < response.data.data.list.length; i++) {
738 761
               this.goodInfoData.push(response.data.data.list[i])
739 762
             }
740
-           
763
+
741 764
           }
742 765
         })
743 766
       },
@@ -758,9 +781,9 @@ export default {
758 781
         }else{
759 782
           this.tableOut[i].total_price = (this.getStockCount(this.tableOut[i].good_id) * this.tableOut[i].retail_price).toFixed(2)
760 783
         }
761
-       
784
+
762 785
         if(this.orgId  == 10265 || this.orgId ==10215 ){
763
-        
786
+
764 787
          this.tableOut[i].out_count = this.getMySelfCount(this.tableOut[i].good_id)
765 788
         }
766 789
         if(this.orgId!=10265 && this.orgId !=10215){
@@ -773,8 +796,8 @@ export default {
773 796
        const filterVal = ['index','good_name', 'specification_name', 'packing_unit','out_count','packing_price','total_price','remark']
774 797
 
775 798
        const data = this.formatJson(filterVal, this.tableOut)
776
-       console.log("date2332323232",data)
777
-      
799
+
800
+
778 801
         excel.export_json_to_excel({
779 802
            header: tHeader,
780 803
            data,
@@ -802,19 +825,19 @@ export default {
802 825
             this.tableDataList[i].total_price = (this.tableDataList[i].count * this.tableDataList[i].price).toFixed(2)
803 826
             total += this.tableDataList[i].count * this.tableDataList[i].price
804 827
           }
805
-         
806
-         
828
+
829
+
807 830
         }
808 831
         obj.total_price = total.toFixed(2)
809
-      
832
+
810 833
         this.tableDataList.push(obj)
811 834
        import('@/vendor/Export2Excel').then(excel => {
812 835
        const tHeader = ['序号','单据编号', '耗材类型', '耗材名称','规格型号','操作时间','制单人','出货价','数量','总价']
813 836
        const filterVal = ['index','warehouse_out_order_number', 'good_type_name', 'good_name','specification_name','time','user_name','price','out_count','total_price']
814 837
 
815 838
        const data = this.formatJson(filterVal, this.tableDataList)
816
- 
817
-      
839
+
840
+
818 841
         excel.export_json_to_excel({
819 842
            header: tHeader,
820 843
            data,
@@ -842,7 +865,7 @@ export default {
842 865
        }
843 866
        return total_price
844 867
      },
845
-   
868
+
846 869
      getGoodDetailPrintList(){
847 870
         const params = {
848 871
           start_time:this.start_time,
@@ -853,16 +876,16 @@ export default {
853 876
       getGoodDetailPrintList(params).then(response=>{
854 877
         if(response.data.state == 1){
855 878
           var list = response.data.data.list
856
-          console.log("lisrt23323223233232232323232323",list)
879
+
857 880
           this.tableOut = list
858 881
           var stockTotal = response.data.data.stockTotal
859
-          console.log("list88888888888888888888",stockTotal)
882
+
860 883
           this.stockTotal = stockTotal
861 884
         }
862 885
       })
863 886
      },
864 887
      getStockCount(id){
865
-     
888
+
866 889
         var count = ""
867 890
         for(let i=0;i<this.stockTotal.length;i++){
868 891
             if(id == this.stockTotal[i].good_id){
@@ -870,7 +893,7 @@ export default {
870 893
             }
871 894
         }
872 895
         return count
873
-    }, 
896
+    },
874 897
     getMySelfCount(good_id){
875 898
        var total = 0
876 899
        for(let i=0;i<this.tableOut.length;i++){
@@ -887,6 +910,23 @@ export default {
887 910
        }
888 911
        return total
889 912
      },
913
+    getStorehouseName(id){
914
+       var storehouse_name = ""
915
+       for(let i=0;i<this.houseList.length;i++){
916
+         if(id == this.houseList[i].id){
917
+           storehouse_name = this.houseList[i].storehouse_name
918
+         }
919
+       }
920
+       if(storehouse_name == "全部"){
921
+          return ""
922
+       }else{
923
+         return storehouse_name
924
+       }
925
+     },
926
+     changeHouseList(){
927
+       this.houseList = []
928
+       this.GetCancelStock()
929
+     }
890 930
   }
891 931
 };
892 932
 </script>

+ 56 - 11
src/xt_pages/stock/drugs/cancelDrugStockOrder.vue Parādīt failu

@@ -14,13 +14,23 @@
14 14
     </div>
15 15
 
16 16
     <div class="app-container">
17
+      
17 18
       <div class="cell clearfix">
19
+        <label class="title"><span class="name">仓库</span> :</label>
20
+        <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px" @change="changeStoreHouse">
21
+            <el-option
22
+              v-for="(option, index) in houseList"
23
+              :key="index"
24
+              :label="option.storehouse_name"
25
+              :value="option.id">
26
+            </el-option>
27
+        </el-select> 
18 28
         <el-input
19 29
           size="small"
20
-          style="width: 400px;"
30
+          style="width: 200px;"
21 31
           class="filter-item"
22 32
           v-model.trim="searchKey"
23
-          placeholder="单据编码/制单人/厂商"
33
+          placeholder="单据编码/制单人"
24 34
         />
25 35
         <el-button
26 36
           size="small"
@@ -104,6 +114,13 @@
104 114
           </template>
105 115
         </el-table-column>
106 116
 
117
+        <el-table-column label="仓库名称" align="center">
118
+          <template slot-scope="scope">
119
+            {{getHouseName(scope.row.storehouse_id)}}
120
+          </template>
121
+        </el-table-column>
122
+
123
+
107 124
         <el-table-column label="制单人" align="center">
108 125
           <template slot-scope="scope">
109 126
             {{ getXuserName(scope.row.creater) }}
@@ -187,6 +204,14 @@
187 204
                 {{ scope.row.BaseDrugLib.medical_insurance_number}}
188 205
               </template>
189 206
             </el-table-column>
207
+
208
+
209
+            <el-table-column label="仓库名称" align="center">
210
+              <template slot-scope="scope">
211
+                {{getHouseName(scope.row.storehouse_id)}}
212
+              </template>
213
+            </el-table-column>
214
+
190 215
             <el-table-column label="退库数量" align="center">
191 216
               <template slot-scope="scope">
192 217
                 {{ scope.row.count}}
@@ -326,7 +351,9 @@ export default {
326 351
       tableList:[],
327 352
       showTable:false,
328 353
       order_id:"",
329
-      exportList:[]
354
+      exportList:[],
355
+      houseList:[],
356
+      storehouse_id:0,
330 357
     };
331 358
   },
332 359
   methods: {
@@ -337,7 +364,8 @@ export default {
337 364
         start_time: this.start_time,
338 365
         end_time: this.end_time,
339 366
         type: this.type,
340
-        keywords: this.searchKey
367
+        keywords: this.searchKey,
368
+        storehouse_id:this.storehouse_id,
341 369
       };
342 370
       this.cancelStockDate = [];
343 371
       getDrugCancelStockList(Params).then(response => {
@@ -364,7 +392,8 @@ export default {
364 392
         limit: this.limit,
365 393
         start_time: this.start_time,
366 394
         end_time: this.end_time,
367
-        type: this.type
395
+        type: this.type,
396
+        storehouse_id:this.storehouse_id,
368 397
       };
369 398
       this.cancelStockDate = [];
370 399
       getDrugCancelStockList(Params).then(response => {
@@ -372,12 +401,18 @@ export default {
372 401
           this.$message.error(response.data.msg);
373 402
           return false;
374 403
         } else {
375
-          console.log("列表23232323232323",response.data.data.list)
404
+         
376 405
           
377 406
           this.total = response.data.data.total;
378 407
           for (let i = 0; i < response.data.data.list.length; i++) {
379 408
             this.cancelStockDate.push(response.data.data.list[i]);
380 409
           }
410
+          var obj= {id:0,storehouse_name:"全部"}
411
+          this.houseList = []
412
+          this.houseList.push(obj)
413
+          for(let i=0;i<response.data.data.houseList.length;i++){
414
+            this.houseList.push(response.data.data.houseList[i])
415
+          }
381 416
         }
382 417
       });
383 418
     },
@@ -555,8 +590,7 @@ export default {
555 590
         confirmButtonText: "确定",
556 591
         cancelButtonText: "取消",
557 592
         type: "warning"
558
-      })
559
-        .then(() => {
593
+      }).then(() => {
560 594
           deleteDrugCancelStock(params).then(response => {
561 595
             if (response.data.state == 0) {
562 596
               this.$message.error(response.data.msg);
@@ -582,23 +616,22 @@ export default {
582 616
         .catch(() => {});
583 617
     },
584 618
     handleCurrentChangeOne(val) {
619
+     if(val!=null){
585 620
       this.getCancelStockDetail(val.id)
621
+     }
586 622
     },
587 623
     getCancelStockDetail(id){
588
-      console.log("id232233223",id)
589 624
         var params = {
590 625
           id:id
591 626
         }
592 627
       getCancelStockDetail(params).then(response=>{
593 628
        if(response.data.state == 1){
594 629
          var list =  response.data.data.list
595
-         console.log("hhhh23233323223",list)
596 630
          for(let i=0;i<list.length;i++){
597 631
            list[i].product_date = this.getTime(list[i].product_date,"{y}-{h}-{d}")
598 632
            list[i].expiry_date = this.getTime(list[i].expiry_date,"{y}-{h}-{d}")
599 633
          }
600 634
          this.tableList = list
601
-        //  console.log("list23232",list)
602 635
          this.showTable = true
603 636
        }
604 637
       })
@@ -669,6 +702,18 @@ export default {
669 702
     formatJson(filterVal, jsonData) {
670 703
     return jsonData.map(v => filterVal.map(j => v[j]));
671 704
    },
705
+   getHouseName(id){
706
+    var storehouse_name = ""
707
+    for(let i=0;i<this.houseList.length;i++){
708
+        if(id == this.houseList[i].id){
709
+          storehouse_name = this.houseList[i].storehouse_name
710
+        }
711
+    }
712
+    return storehouse_name
713
+  },
714
+  changeStoreHouse(){
715
+    this.GetCancelStock()
716
+  }
672 717
   }
673 718
 };
674 719
 </script>

+ 20 - 3
src/xt_pages/stock/drugs/cancelDrugStockOrderAdd.vue Parādīt failu

@@ -38,8 +38,16 @@
38 38
 
39 39
       <div class="filter-container">
40 40
         <div class="cell clearfix">
41
+          <label class="title"><span class="name"><span style="color:red">*</span>仓库</span> :</label>
42
+          <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px">
43
+              <el-option
44
+                v-for="(option, index) in list"
45
+                :key="index"
46
+                :label="option.storehouse_name"
47
+                :value="option.id">
48
+              </el-option>
49
+            </el-select>
41 50
           <label class="title"><span class="name">退库时间</span> : </label>
42
-
43 51
           <el-date-picker
44 52
             size="small"
45 53
             v-model="return_time"
@@ -365,7 +373,9 @@ export default {
365 373
       dealerList:[],
366 374
       manufacturerList:[],
367 375
       numberList:[],
368
-      unitList:[]
376
+      unitList:[],
377
+      list:[],
378
+      storehouse_id:"",
369 379
     };
370 380
   },
371 381
   methods: {
@@ -425,6 +435,8 @@ export default {
425 435
 
426 436
           this.form.manufacturer = 0
427 437
           this.form.dealer = 0
438
+          this.list = response.data.data.list
439
+          this.storehouse_id = response.data.data.configlist.drug_storehouse_out
428 440
         }
429 441
         loading.close()
430 442
       })
@@ -546,6 +558,10 @@ export default {
546 558
       this.$router.go(-1);
547 559
     },
548 560
     submit() {
561
+      if(this.storehouse_id == ""){
562
+        this.$message.error("仓库不能为空!")
563
+        return
564
+      }
549 565
       this.$refs["tableForm"].validate(valid => {
550 566
         if (valid) {
551 567
           const array = this.recordInfo.recordData;
@@ -584,7 +600,8 @@ export default {
584 600
             this.return_time,
585 601
             this.form.manufacturer,
586 602
             this.form.dealer,
587
-            this.type
603
+            this.type,
604
+            this.storehouse_id,
588 605
           ).then(response => {
589 606
             if (response.data.state == 0) {
590 607
               this.$message.error(response.data.msg);

+ 24 - 12
src/xt_pages/stock/drugs/cancelDrugStockOrderEdit.vue Parādīt failu

@@ -18,7 +18,15 @@
18 18
       >
19 19
       </drugs-stock-dialog>
20 20
       <div class="cell clearfix">
21
-
21
+        <label class="title"><span class="name"><span style="color:red">*</span>仓库</span> :</label>
22
+          <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px" :disabled="true">
23
+            <el-option
24
+              v-for="(option, index) in houseList"
25
+              :key="index"
26
+              :label="option.storehouse_name"
27
+              :value="option.id">
28
+            </el-option>
29
+          </el-select>
22 30
         <label class="title"><span class="name">退库时间</span> : </label>
23 31
         <el-date-picker size="small" v-model="return_time" prefix-icon="el-icon-date" :editable="false" style="width: 196px;"
24 32
                         type="date" placeholder="选择日期时间" align="right" format="yyyy-MM-dd"
@@ -342,7 +350,9 @@
342 350
         dealerList:[],
343 351
         numberList:[],
344 352
         unitList:[],
345
-        canCelShow:true
353
+        canCelShow:true,
354
+        storehouse_id:"",
355
+        houseList:[],
346 356
       }
347 357
     },
348 358
     methods: {
@@ -420,7 +430,7 @@
420 430
         }
421 431
         return name;
422 432
       },  specificationName: function(drug_id) {
423
-        console.log(this.goodInfo)
433
+
424 434
         let name = "";
425 435
         for (let i = 0; i < this.goodInfo.length; i++) {
426 436
           if (this.goodInfo[i].id == drug_id) {
@@ -555,9 +565,9 @@
555 565
             const params = {
556 566
               'cancelStock': this.recordInfo.recordData
557 567
             }
558
-            console.log("232323223",this.recordInfo.recordData)
568
+           
559 569
             
560
-            editDrugCancelStockInfo(params, this.return_time, this.$route.query.id, this.$route.query.type,this.form.manufacturer,this.form.dealer).then(response => {
570
+            editDrugCancelStockInfo(params, this.return_time, this.$route.query.id, this.$route.query.type,this.form.manufacturer,this.form.dealer,this.storehouse_id).then(response => {
561 571
               if (response.data.state == 0) {
562 572
                 this.$message.error(response.data.msg)
563 573
                 return false
@@ -590,7 +600,7 @@
590 600
             this.$message.error(response.data.msg)
591 601
             return false
592 602
           } else {
593
-            console.log("list232323",response.data.data.list)
603
+           
594 604
             for (let i = 0; i < response.data.data.list.length; i++) {
595 605
               response.data.data.list[i].count = response.data.data.list[i].count.toString()
596 606
               response.data.data.list[i].price = response.data.data.list[i].price.toString()
@@ -603,10 +613,12 @@
603 613
               this.recordInfo.recordData.push(response.data.data.list[i])
604 614
             }
605 615
             this.cancelStock = response.data.data.info
606
-            console.log("hhhh23hh2hh23h223",this.cancelStock)
616
+           
617
+            this.storehouse_id = response.data.data.info.storehouse_id
607 618
             this.return_time = this.getTime(this.cancelStock.return_time, '{y}-{m}-{d}')
608 619
             this.form.manufacturer = this.cancelStock.manufacturer
609 620
             this.form.dealer = this.cancelStock.dealer
621
+            this.houseList = response.data.data.houselist
610 622
           }
611 623
           if (this.recordInfo.recordData.length == 0) {
612 624
             const tempObj = {}
@@ -634,7 +646,7 @@
634 646
             searchArray = response.data.data.list;
635 647
             
636 648
              var list = response.data.data.list
637
-             console.log("猎豹22222222222",list)
649
+      
638 650
 
639 651
              this.drugList = list
640 652
              var manufacturerList = response.data.data.manufacturerList
@@ -672,13 +684,13 @@
672 684
             arr.push(this.recordInfo.recordData[i].drug_id)
673 685
          }
674 686
          var str = arr.join(",")
675
-         console.log("str",str)
687
+       
676 688
          if(str.indexOf(val.id)!=-1){
677 689
             this.$message.error("该药品已存在列表中")
678 690
             return
679 691
          }
680 692
          this.getDrugBatchNumber(val.id)
681
-         console.log("val2323232323223",val)
693
+
682 694
          for(let i=0;i<this.recordInfo.recordData.length;i++){
683 695
            if(i == this.currentIndex){
684 696
              this.recordInfo.recordData[i].drug_id  = val.id
@@ -699,7 +711,7 @@
699 711
             
700 712
            }
701 713
         }
702
-        console.log("333333",this.recordInfo.recordData)
714
+       
703 715
       },
704 716
       getDrugBatchNumber(id){
705 717
           var params = {
@@ -708,7 +720,7 @@
708 720
         getDrugBatchNumber(params).then(response=>{
709 721
            if(response.data.state == 1){
710 722
              var list = response.data.data.list
711
-             console.log("list2222",list)
723
+       
712 724
              for(let i=0;i<list.length;i++){
713 725
                this.numberList.push(list[i])
714 726
              }

+ 45 - 6
src/xt_pages/stock/drugs/components/drugCancelDetail.vue Parādīt failu

@@ -23,9 +23,18 @@
23 23
       >汇总导出
24 24
     </el-button>
25 25
     <div class="cell clearfix">
26
+     <label class="title"><span class="name">仓库</span> :</label>
27
+      <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px" @change="changeHouseList">
28
+          <el-option
29
+            v-for="(option, index) in houseList"
30
+            :key="index"
31
+            :label="option.storehouse_name"
32
+            :value="option.id">
33
+          </el-option>
34
+      </el-select>  
26 35
       <el-input
27 36
         size="small"
28
-        style="width: 400px;"
37
+        style="width: 200px;"
29 38
         class="filter-item"
30 39
         v-model.trim="searchKey"
31 40
         placeholder="单据编码/制单人/药品名称"
@@ -38,7 +47,7 @@
38 47
         @click="search"
39 48
         >搜索</el-button
40 49
       >
41
-      <div style="margin-left:10px;">
50
+    
42 51
         <label class="title"><span class="name">日期查询</span> : </label>
43 52
         <el-date-picker
44 53
           size="small"
@@ -67,7 +76,7 @@
67 76
           value-format="yyyy-MM-dd"
68 77
           @change="endTimeChange"
69 78
         ></el-date-picker>
70
-      </div>
79
+     
71 80
     </div>
72 81
 
73 82
     <el-row :gutter="12" style="margin-top: 10px">
@@ -128,6 +137,11 @@
128 137
           {{getAdminUser(scope.row.creater)}}
129 138
           </template>
130 139
         </el-table-column>
140
+       <el-table-column label="仓库名称" align="center">
141
+          <template slot-scope="scope">
142
+          {{getStorehouseName(scope.row.storehouse_id)}}
143
+          </template>
144
+        </el-table-column>
131 145
         <el-table-column label="退货价" align="center">
132 146
           <template slot-scope="scope">
133 147
           {{scope.row.price}}
@@ -235,6 +249,8 @@ export default {
235 249
       tableList:[],
236 250
       tableDataList:[],
237 251
       drugTypeList:[],
252
+      storehouse_id:0,
253
+      houseList:[],
238 254
     };
239 255
   },
240 256
   methods: {
@@ -272,7 +288,7 @@ export default {
272 288
    
273 289
     fetchAllAdminUsers() {
274 290
       fetchAllAdminUsers().then(response => {
275
-        console.log(response);
291
+     
276 292
         if (response.data.state == 1) {
277 293
           this.adminUserOptions = response.data.data.users;
278 294
         }
@@ -343,12 +359,18 @@ export default {
343 359
         keyword:this.searchKey,
344 360
         limit:this.limit,
345 361
         page:this.page,
362
+        storehouse_id:this.storehouse_id,
346 363
        }
347 364
       getDrugCancelDetail(params).then(response=>{
348 365
          if(response.data.state == 1){
349 366
            var order =  response.data.data.order
350 367
            var list = response.data.data.orderPrint
351
-           //this.drugTypeList = response.data.data.drugTypeList
368
+           var obj = {id:0,storehouse_name:"全部"}
369
+            this.houseList = []
370
+            this.houseList.push(obj)
371
+            for(let i=0;i<response.data.data.houseList.length;i++){
372
+            this.houseList.push(response.data.data.houseList[i])
373
+            }
352 374
            for(let i=0;i<list.length;i++){
353 375
              list[i].child = []
354 376
             for(let j=0;j<order.length;j++){
@@ -489,7 +511,24 @@ export default {
489 511
         }
490 512
       }
491 513
       return name
492
-    } 
514
+    },
515
+    getStorehouseName(id){
516
+       var storehouse_name = ""
517
+       for(let i=0;i<this.houseList.length;i++){
518
+         if(id == this.houseList[i].id){
519
+           storehouse_name = this.houseList[i].storehouse_name
520
+         }
521
+       }
522
+       if(storehouse_name == "全部"){
523
+          return ""
524
+       }else{
525
+         return storehouse_name
526
+       }
527
+     },
528
+     changeHouseList(){
529
+       this.houseList = []
530
+       this.getlist()
531
+     }  
493 532
   }
494 533
 };
495 534
 </script>

+ 54 - 10
src/xt_pages/stock/drugs/components/drugInOrder.vue Parādīt failu

@@ -23,11 +23,20 @@
23 23
       type="primary"
24 24
       >汇总导出
25 25
     </el-button>
26
-
26
+   
27 27
     <div class="cell clearfix">
28
+      <label class="title"><span class="name">仓库</span> :</label>
29
+      <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px" @change="changeHouseList">
30
+          <el-option
31
+            v-for="(option, index) in houseList"
32
+            :key="index"
33
+            :label="option.storehouse_name"
34
+            :value="option.id">
35
+          </el-option>
36
+      </el-select>  
28 37
       <el-input
29 38
         size="small"
30
-        style="width: 400px;"
39
+        style="width: 200px;"
31 40
         class="filter-item"
32 41
         v-model.trim="searchKey"
33 42
         placeholder="单据编码/制单人/药品名称"
@@ -40,7 +49,6 @@
40 49
         @click="search"
41 50
         >搜索</el-button
42 51
       >
43
-      <div style="margin-left:10px;">
44 52
         <label class="title"><span class="name">日期查询</span> : </label>
45 53
         <el-date-picker
46 54
           size="small"
@@ -70,7 +78,6 @@
70 78
           value-format="yyyy-MM-dd"
71 79
           @change="endTimeChange"
72 80
         ></el-date-picker>
73
-      </div>
74 81
     </div>
75 82
 
76 83
     <el-row :gutter="12" style="margin-top: 10px">
@@ -124,6 +131,11 @@
124 131
            {{getAdminUser(scope.row.creater)}}
125 132
           </template>
126 133
         </el-table-column>
134
+        <el-table-column label="仓库名称" align="center">
135
+          <template slot-scope="scope">
136
+           {{getStorehouseName(scope.row.storehouse_id)}}
137
+          </template>
138
+        </el-table-column>
127 139
         <el-table-column label="进货价" align="center">
128 140
           <template slot-scope="scope">
129 141
             {{scope.row.price}}
@@ -134,6 +146,11 @@
134 146
             {{scope.row.warehousing_count}}
135 147
           </template>
136 148
         </el-table-column>
149
+        <el-table-column label="单位" align="center">
150
+          <template slot-scope="scope">
151
+            {{scope.row.count_unit}}
152
+          </template>
153
+        </el-table-column>
137 154
         <el-table-column label="总价" align="center">
138 155
           <template slot-scope="scope">
139 156
             {{scope.row.total_price}}
@@ -190,7 +207,6 @@ export default {
190 207
     
191 208
     var end_time =  window.sessionStorage.getItem('drug_end_in_time')
192 209
     if(start_time !=null){
193
-      console.log("hh232323232红红火火")
194 210
       this.start_time = start_time
195 211
     }
196 212
     if(end_time!=null){
@@ -238,6 +254,8 @@ export default {
238 254
       tableList:[],
239 255
       tabelePrintList:[],
240 256
       drugTypeList:[],
257
+      storehouse_id:0,
258
+      houseList:[],
241 259
     };
242 260
   },
243 261
   methods: {
@@ -342,16 +360,24 @@ export default {
342 360
         keyword:this.searchKey,
343 361
         limit:this.limit,
344 362
         page:this.page,
363
+        storehouse_id:this.storehouse_id,
345 364
        }
346 365
       getDrugIndetail(params).then(response=>{
347 366
         if(response.data.state == 1){
348 367
           var drugInOrder = response.data.data.detail
349 368
           var drugTypeParent = response.data.data.drugTypeParent
350
-          console.log("药品类型",drugTypeParent)
351
-        //  this.drugTypeList = drugTypeParent
369
+          var obj = {id:0,storehouse_name:"全部"}
370
+          this.houseList = []
371
+          this.houseList.push(obj)
372
+          for(let i=0;i<response.data.data.houseList.length;i++){
373
+           this.houseList.push(response.data.data.houseList[i])
374
+          }
352 375
           var total_price = 0
353 376
           for(let i=0;i<drugInOrder.length;i++){
354 377
              drugInOrder[i].specification_name  = drugInOrder[i].dose + drugInOrder[i].dose_unit + "*" + drugInOrder[i].min_number +  drugInOrder[i].min_unit + "/" + drugInOrder[i].max_unit
378
+             if(drugInOrder[i].storehouse_id > 0){
379
+               drugInOrder[i].total_price = (drugInOrder[i].warehousing_count * drugInOrder[i].price).toFixed(2)
380
+             }
355 381
              drugInOrder[i].is_total = 0
356 382
              total_price += drugInOrder[i].warehousing_count * drugInOrder[i].price
357 383
           }
@@ -362,6 +388,7 @@ export default {
362 388
             ctime:"",
363 389
             total_price:total_price.toFixed(2),
364 390
           });
391
+          console.log("drugInOrder232332322323233232322332322332",drugInOrder)
365 392
           this.cancelStockDate = drugInOrder
366 393
            let objInfo = {}
367 394
           drugInOrder.forEach((item,index)=>{
@@ -416,7 +443,7 @@ export default {
416 443
         end_time:this.end_time,
417 444
         order_type:this.order_type,
418 445
       }
419
-     console.log("药品入库232323223",params)
446
+    
420 447
      getDrugWarehouseInfoPrint(params).then(response=>{
421 448
           if(response.data.state == 1){
422 449
             var list = response.data.data.list
@@ -443,7 +470,7 @@ export default {
443 470
       return name
444 471
     },
445 472
      exportList(){
446
-        console.log("hhh233223232323",this.tabelePrintList)
473
+       
447 474
         for(let i=0;i<this.tabelePrintList.length;i++){
448 475
           this.tabelePrintList[i].index = i+1
449 476
           this.tabelePrintList[i].drug_name = this.tabelePrintList[i].XtBaseDrug.drug_name
@@ -517,7 +544,24 @@ export default {
517 544
         }
518 545
       }
519 546
       return name
520
-    }
547
+    },
548
+   getStorehouseName(id){
549
+       var storehouse_name = ""
550
+       for(let i=0;i<this.houseList.length;i++){
551
+         if(id == this.houseList[i].id){
552
+           storehouse_name = this.houseList[i].storehouse_name
553
+         }
554
+       }
555
+       if(storehouse_name == "全部"){
556
+          return ""
557
+       }else{
558
+         return storehouse_name
559
+       }
560
+     },
561
+     changeHouseList(){
562
+       this.houseList = []
563
+       this.getlist()
564
+     }
521 565
   }
522 566
 };
523 567
 </script>

+ 56 - 18
src/xt_pages/stock/drugs/components/drugOutDetail.vue Parādīt failu

@@ -24,9 +24,18 @@
24 24
     </el-button>
25 25
    
26 26
     <div class="cell clearfix">
27
+       <label class="title"><span class="name">仓库</span> :</label>
28
+      <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px" @change="changeHouseList">
29
+          <el-option
30
+            v-for="(option, index) in houseList"
31
+            :key="index"
32
+            :label="option.storehouse_name"
33
+            :value="option.id">
34
+          </el-option>
35
+      </el-select>  
27 36
       <el-input
28 37
         size="small"
29
-        style="width: 400px;"
38
+        style="width: 200px;"
30 39
         class="filter-item"
31 40
         v-model.trim="searchKey"
32 41
         placeholder="单据编码/制单人/药品名称"
@@ -39,7 +48,6 @@
39 48
         @click="search"
40 49
         >搜索</el-button
41 50
       >
42
-      <div style="margin-left:10px;">
43 51
         <label class="title"><span class="name">日期查询</span> : </label>
44 52
         <el-date-picker
45 53
           size="small"
@@ -68,7 +76,7 @@
68 76
           value-format="yyyy-MM-dd"
69 77
           @change="endTimeChange"
70 78
         ></el-date-picker>
71
-      </div>
79
+     
72 80
     </div>
73 81
 
74 82
   
@@ -125,6 +133,11 @@
125 133
            {{getAdminUser(scope.row.creater)}}
126 134
           </template>
127 135
         </el-table-column>
136
+        <el-table-column label="仓库名称" align="center">
137
+          <template slot-scope="scope">
138
+           {{getStorehouseName(scope.row.storehouse_id)}}
139
+          </template>
140
+        </el-table-column>
128 141
         <el-table-column label="出货价" align="center">
129 142
           <template slot-scope="scope">
130 143
            <span v-if="org_id == 9919">{{scope.row.last_price}} </span> 
@@ -265,6 +278,8 @@ export default {
265 278
       tablePrint:[],
266 279
       org_id:0,
267 280
       drugTypeList:[],
281
+      storehouse_id:0,
282
+      houseList:[],
268 283
     };
269 284
   },
270 285
   methods: {
@@ -317,7 +332,7 @@ export default {
317 332
     },
318 333
     fetchAllAdminUsers() {
319 334
       fetchAllAdminUsers().then(response => {
320
-        console.log(response);
335
+       
321 336
         if (response.data.state == 1) {
322 337
           this.adminUserOptions = response.data.data.users;
323 338
         }
@@ -396,13 +411,19 @@ export default {
396 411
          keyword:this.searchKey,
397 412
          page:this.page,
398 413
          limit:this.limit,
414
+         storehouse_id:this.storehouse_id,
399 415
       }  
400 416
       getDrugOutDetail(params).then(response=>{
401 417
         this.tableData = []
402 418
         this.tableList = []
403 419
         if(response.data.state == 1){
404 420
           var order = response.data.data.order
405
-          console.log("出库数据",order)
421
+          var obj = {id:0,storehouse_name:"全部"}
422
+          this.houseList = []
423
+          this.houseList.push(obj)
424
+          for(let i=0;i<response.data.data.houseList.length;i++){
425
+           this.houseList.push(response.data.data.houseList[i])
426
+          }
406 427
           var total_price = 0
407 428
           for(let i=0;i<order.length;i++){
408 429
              order[i].specification_name  = order[i].dose + order[i].dose_unit + "*" + order[i].min_number +  order[i].min_unit + "/" + order[i].max_unit
@@ -424,7 +445,7 @@ export default {
424 445
              }
425 446
             
426 447
           }
427
-          console.log("total_price23322332232332323232",order)
448
+         
428 449
            order.push({
429 450
             warehouse_out_order_number: "合计",
430 451
             is_total: 1,
@@ -437,7 +458,7 @@ export default {
437 458
             order[i].total_price = order[i].total_price.toFixed(2)
438 459
           }
439 460
        
440
-          console.log("order232233232232323232332",order)
461
+         
441 462
           this.tableData = order
442 463
            let objInfo = {}
443 464
           order.forEach((item,index)=>{
@@ -526,7 +547,7 @@ export default {
526 547
     },
527 548
 
528 549
      exportList(){
529
-        console.log("hh23233223",this.tablePrint)
550
+    
530 551
         for(let i=0;i<this.tablePrint.length;i++){
531 552
           this.tablePrint[i].index = i+1
532 553
         }
@@ -544,7 +565,7 @@ export default {
544 565
               this.tablePrint[i].total = this.getTotalPriceOne(this.tablePrint[i].child,this.tablePrint[i].max_unit,this.tablePrint[i].min_number,this.tablePrint[i].min_price) 
545 566
            }
546 567
         }
547
-       console.log("列表数据333333333",this.tablePrint)
568
+  
548 569
        
549 570
        import('@/vendor/Export2Excel').then(excel => {
550 571
        const tHeader = ['序号','药品名称', '规格型号', '单位','数量','单价','总价','备注']
@@ -556,7 +577,7 @@ export default {
556 577
        obj.total_price = obj.total_price.toFixed(2)
557 578
        this.tablePrint.push(obj)
558 579
        const data = this.formatJson(filterVal, this.tablePrint)
559
-       console.log("data",data)
580
+  
560 581
        
561 582
        excel.export_json_to_excel({
562 583
            header: tHeader,
@@ -610,7 +631,7 @@ export default {
610 631
          }
611 632
        }
612 633
        const data = this.formatJson(filterVal, this.tableData)
613
-       console.log("data",data)
634
+  
614 635
      
615 636
        excel.export_json_to_excel({
616 637
            header: tHeader,
@@ -641,7 +662,7 @@ export default {
641 662
             for (let i = 0; i < response.data.data.list.length; i++) {
642 663
               this.drugList.push(response.data.data.list[i])
643 664
             }
644
-            console.log("药品列表",this.drugList)
665
+ 
645 666
           }
646 667
         })
647 668
       },
@@ -651,11 +672,11 @@ export default {
651 672
          end_time:this.end_time,
652 673
          order_type:2,
653 674
       }  
654
-      console.log("poara232323223233223",params)
675
+     
655 676
      getDrugOutOrderPrint(params).then(response=>{
656 677
         if(response.data.state == 1){
657 678
             var list = response.data.data.list
658
-            console.log("药品出库详情",list)
679
+          
659 680
             let objInfo = {}
660 681
             if(this.org_id == 9671 || this.org_id == 9919){
661 682
               list.forEach((item,index)=>{
@@ -712,7 +733,7 @@ export default {
712 733
               }
713 734
             }
714 735
            this.tablePrint = newArr
715
-           console.log(" this.tablePrint",this.tablePrint)  
736
+          
716 737
         }
717 738
      })
718 739
     },
@@ -755,7 +776,7 @@ export default {
755 776
         for(let j=0;j<arr.length;j++){
756 777
           total +=arr[j].count
757 778
         }
758
-        console.log("total23232",total)
779
+        
759 780
         return (total*min_price).toFixed(2)
760 781
       },
761 782
 
@@ -771,7 +792,7 @@ export default {
771 792
         for(let j=0;j<arr.length;j++){
772 793
           total +=arr[j].count
773 794
         }
774
-        console.log("total23232",total)
795
+     
775 796
         return total*min_price
776 797
       },
777 798
       getCountSix(drug_id,val){
@@ -813,7 +834,24 @@ export default {
813 834
           }
814 835
         }
815 836
         return price
816
-      } 
837
+      },
838
+      getStorehouseName(id){
839
+       var storehouse_name = ""
840
+       for(let i=0;i<this.houseList.length;i++){
841
+         if(id == this.houseList[i].id){
842
+           storehouse_name = this.houseList[i].storehouse_name
843
+         }
844
+       }
845
+       if(storehouse_name == "全部"){
846
+          return ""
847
+       }else{
848
+         return storehouse_name
849
+       }
850
+     },
851
+     changeHouseList(){
852
+       this.houseList = []
853
+       this.getlist()
854
+     } 
817 855
   }
818 856
 };
819 857
 </script>

+ 25 - 9
src/xt_pages/stock/drugs/drugBatchNumber.vue Parādīt failu

@@ -44,7 +44,7 @@
44 44
         :data="tableList"
45 45
         border
46 46
         style="width: 100%">
47
-        <el-table-column prop="date" label="序号" width="180" align="center">
47
+        <el-table-column prop="date" label="序号" width="100" align="center">
48 48
            <template  slot-scope="scope">
49 49
               {{scope.$index + 1}}
50 50
            </template>
@@ -73,6 +73,11 @@
73 73
            <template slot-scope="scope">
74 74
               {{scope.row.batch_number}}
75 75
            </template>
76
+        </el-table-column>
77
+        <el-table-column prop="drug_name" label="仓库名称" width="200" align="center">
78
+           <template slot-scope="scope">
79
+              <span>{{getHouseName(scope.row.storehouse_id)}}</span>
80
+           </template>
76 81
         </el-table-column>
77 82
          <el-table-column prop="drug_name" label="数量" align="center">
78 83
            <template slot-scope="scope">
@@ -187,6 +192,7 @@
187 192
         minCount:[],
188 193
         drugOutList:[],
189 194
         drug:{},
195
+        houseList:[],
190 196
       }
191 197
     },
192 198
     methods:{
@@ -199,13 +205,14 @@
199 205
         getBatchOrderDetail(params).then(response=>{
200 206
            if(response.data.state == 1){
201 207
               var detail =  response.data.data.detail
202
-              console.log("detail2343434",detail)
208
+             
203 209
               this.tableList = detail
204 210
               this.manufacturerList = response.data.data.manufacturerList
205 211
               var total = response.data.data.total
206
-              console.log("total",total)
212
+              
207 213
               this.total = total
208 214
               this.drug =  response.data.data.drug
215
+              this.houseList = response.data.data.houseList
209 216
            }
210 217
         })
211 218
       },
@@ -244,16 +251,16 @@
244 251
       getDrugCountList(params).then(response=>{
245 252
           if(response.data.state == 1){
246 253
             var countlist =  response.data.data.countList
247
-            console.log("入库数据",countlist)
254
+          
248 255
             this.countList = countlist
249 256
             var outcountlist = response.data.data.outCountList
250
-            console.log("出库数据",outcountlist)
257
+           
251 258
             this.outCountList = outcountlist
252 259
             var aucountlist = response.data.data.auCountList
253
-            console.log("自动数据",aucountlist)
260
+           
254 261
             this.autoCountList = aucountlist
255 262
              var minCount = response.data.data.minCount
256
-            console.log("minCount",minCount)
263
+            
257 264
             this.minCount = minCount
258 265
             var info = response.data.data.info
259 266
             for(let i=0;i<info.length;i++){
@@ -261,7 +268,7 @@
261 268
                  info[i].count = info[i].count * info[i].min_number
262 269
               }
263 270
             }
264
-            console.log("info2222222",info)
271
+          
265 272
             this.drugOutList = info
266 273
           }
267 274
         })
@@ -362,7 +369,16 @@
362 369
            name = this.drug.drug_name
363 370
         }
364 371
         return name
365
-     }
372
+     },
373
+     getHouseName(id){
374
+      var storehouse_name = ""
375
+      for(let i=0;i<this.houseList.length;i++){
376
+        if(id == this.houseList[i].id){
377
+          storehouse_name = this.houseList[i].storehouse_name
378
+        }
379
+      }
380
+      return storehouse_name
381
+     },
366 382
     }
367 383
   }
368 384
 </script>

+ 39 - 0
src/xt_pages/stock/drugs/drugDamaged.vue Parādīt failu

@@ -1,6 +1,14 @@
1 1
 <template>
2 2
   <div>
3 3
     <div  style="margin-bottom:10px;">
4
+    <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px" @change="changehouseList">
5
+        <el-option
6
+          v-for="(option, index) in houseList"
7
+          :key="index"
8
+          :label="option.storehouse_name"
9
+          :value="option.id">
10
+        </el-option>
11
+      </el-select>   
4 12
       <el-input
5 13
       size="small"
6 14
       style="width: 200px;"
@@ -60,6 +68,11 @@
60 68
               {{getTotalPrice(scope.row.drug_id,scope.row.min_price)}}
61 69
             </template>
62 70
         </el-table-column>
71
+        <el-table-column prop="name" label="仓库名称" align="center">
72
+            <template slot-scope="scope">
73
+              {{getHouseName(scope.row.storehouse_id)}}
74
+            </template>
75
+        </el-table-column>
63 76
         <el-table-column prop="name" label="操作人" align="center">
64 77
             <template slot-scope="scope">
65 78
               {{getDoctorName(scope.row.creater)}}
@@ -219,6 +232,7 @@ export default {
219 232
                 product_date:"",
220 233
                 stock_max_number:"",
221 234
                 stock_min_number:"",
235
+                storehouse_id:"",
222 236
             },
223 237
             drugList:[],
224 238
             manufacturerList:[],
@@ -258,6 +272,7 @@ export default {
258 272
             min_unit:"",
259 273
             min_price:0,
260 274
             drug_id:0,
275
+            storehouse_id:0,
261 276
         }
262 277
     },
263 278
     methods:{
@@ -295,6 +310,7 @@ export default {
295 310
           start_time:this.start_time,
296 311
           end_time:this.end_time,
297 312
           keyword:this.searchKey,
313
+          storehouse_id:this.storehouse_id,
298 314
         }
299 315
 
300 316
         getDrugDamageList(params).then(response=>{
@@ -304,6 +320,12 @@ export default {
304 320
              this.doctorList = response.data.data.doctorList
305 321
              var datamagelist = response.data.data.damagelist
306 322
              this.datamageList = datamagelist
323
+             var obj = {id:0,storehouse_name:"全部"}
324
+             this.houseList = []
325
+             this.houseList.push(obj)
326
+             for(let i=0;i<response.data.data.houseList.length;i++){
327
+              this.houseList.push(response.data.data.houseList[i])
328
+             }
307 329
            }
308 330
         })
309 331
       },
@@ -432,6 +454,23 @@ export default {
432 454
        all_count =  total_count * this.min_number
433 455
 
434 456
        return (count / all_count).toFixed(2)*100
457
+     },
458
+     changehouseList(){
459
+       this.houseList = []
460
+       this.getlist()
461
+     },
462
+     getHouseName(id){
463
+      var storehouse_name  = ""
464
+      for(let i=0;i<this.houseList.length;i++){
465
+        if(id == this.houseList[i].id){
466
+          storehouse_name = this.houseList[i].storehouse_name
467
+        }
468
+      }
469
+      if(storehouse_name == "全部"){
470
+        return ""
471
+      }else{
472
+        return storehouse_name
473
+      }
435 474
      }
436 475
     },
437 476
     created(){

+ 39 - 25
src/xt_pages/stock/drugs/drugStockFlow.vue Parādīt failu

@@ -71,16 +71,18 @@
71 71
              <span v-if="scope.row.consumable_type == 7">自动退库</span>
72 72
              <span v-if="scope.row.consumable_type == 5">报损数量</span>
73 73
              <span v-if="scope.row.consumable_type == 10">盘盈</span>
74
-            <span v-if="scope.row.consumable_type == 11">盘亏</span>
74
+             <span v-if="scope.row.consumable_type == 11">盘亏</span>
75
+             <span v-if="scope.row.consumable_type == 12">调拨出库</span>
76
+             <span v-if="scope.row.consumable_type == 13">调拨入库</span>
75 77
            </template>
76 78
         </el-table-column>
77 79
         <el-table-column prop="drug_name" label="出/入库单据编码" align="center">
78 80
            <template slot-scope="scope">
79 81
              <span v-if="scope.row.consumable_type == 1">{{scope.row.warehousing_order}}</span>
80
-              <span v-if="scope.row.consumable_type == 2 || scope.row.consumable_type == 3">{{scope.row.warehouse_out_order_number}}</span>
82
+              <span v-if="scope.row.consumable_type == 2 || scope.row.consumable_type == 3 || scope.row.consumable_type == 12">{{scope.row.warehouse_out_order_number}}</span>
81 83
               <span v-if="scope.row.consumable_type == 4 || scope.row.consumable_type == 7">{{scope.row.cancel_order_number}}</span>
82 84
               <span v-if="scope.row.consumable_type == 5">{{scope.row.warehouse_out_order_number}}</span>
83
-              <span v-if="scope.row.consumable_type == 10 || scope.row.consumable_type == 11">{{scope.row.warehousing_order}}</span>
85
+              <span v-if="scope.row.consumable_type == 10 || scope.row.consumable_type == 11 || scope.row.consumable_type == 13">{{scope.row.warehousing_order}}</span>
84 86
            </template>
85 87
         </el-table-column>
86 88
         <el-table-column prop="drug_name" label="操作日期" align="center">
@@ -88,6 +90,11 @@
88 90
              {{getTime(scope.row.ctime,"{y}-{h}-{d}")}}
89 91
            </template>
90 92
         </el-table-column>
93
+        <el-table-column prop="drug_name" label="仓库名称" align="center">
94
+           <template slot-scope="scope">
95
+              <span>{{getHouseName(scope.row.storehouse_id)}}</span>
96
+           </template>
97
+        </el-table-column>
91 98
         <el-table-column prop="drug_name" label="数量" align="center">
92 99
            <template slot-scope="scope">
93 100
               {{scope.row.count}}
@@ -184,10 +191,7 @@
184 191
       var drugCategory = getDictionaryDataConfig('system','drug_category')
185 192
       this.drugCategory.push(...drugCategory)
186 193
       this.drugTypeList = getDictionaryDataConfig('system','drug_type') 
187
-      // this.getlist()
188
-      // this.getOutList()
189
-      // this.getDrugCountList()
190
-
194
+  
191 195
       this.getDrugFlow()
192 196
     },
193 197
     components: {
@@ -234,7 +238,9 @@
234 238
           {id:3,name:"自动出库"},
235 239
           {id:4,name:"手动退库"},
236 240
           {id:10,name:"盘盈"},
237
-          {id:11,name:"盘亏"}
241
+          {id:11,name:"盘亏"},
242
+          {id:12,name:"调拨出库"},
243
+          {id:13,name:"调拨入库"}
238 244
         ],
239 245
         outList:[],
240 246
         countList:[],
@@ -243,11 +249,11 @@
243 249
         drugOutList:[],
244 250
         total:0,
245 251
         drug:{},
252
+        houseList:[],
246 253
       }
247 254
     },
248 255
     methods:{
249 256
        getlist(){
250
-         console.log("2332233232",this.$route.query.drug_id)
251 257
            var params = {
252 258
              drug_id:this.$route.query.drug_id,
253 259
              start_time:this.start_time,
@@ -256,11 +262,10 @@
256 262
              limit:this.limit,
257 263
              stock_type:this.stock_type,  
258 264
            }
259
-          console.log("params23322323232332",params)
260 265
          getDrugStockFlow(params).then(response=>{
261 266
            if(response.data.state == 1){
262 267
             var list = response.data.data.list
263
-            console.log("库存数量",list)
268
+          
264 269
             for(let i=0;i<list.length;i++){
265 270
                list[i].drug_way = 4
266 271
                this.tableList.push(list[i])
@@ -286,7 +291,7 @@
286 291
          getOutDrugStockFlow(params).then(response=>{
287 292
             if(response.data.state == 1){
288 293
                var outList = response.data.data.outList
289
-               console.log("outlist",outList)
294
+              
290 295
 
291 296
               for(let i=0;i<outList.length;i++){
292 297
                
@@ -294,13 +299,13 @@
294 299
                   outList[i].drug_way = 2
295 300
                 }
296 301
                 if(outList[i].is_sys == 0){
297
-                  console.log("进来22222")
302
+                 
298 303
                   outList[i].drug_way = 1
299 304
                 }
300 305
                 this.tableList.push(outList[i])
301 306
               }
302 307
               this.total = response.data.data.total
303
-              console.log("出库列表数据",this.tableList)
308
+            
304 309
             }
305 310
          })
306 311
        },
@@ -360,16 +365,16 @@
360 365
       getDrugCountList(params).then(response=>{
361 366
           if(response.data.state == 1){
362 367
             var countlist =  response.data.data.countList
363
-            // console.log("入库数据",countlist)
368
+           
364 369
             this.countList = countlist
365 370
             var outcountlist = response.data.data.outCountList
366
-            // console.log("出库数据",outcountlist)
371
+         
367 372
             this.outCountList = outcountlist
368 373
             var aucountlist = response.data.data.auCountList
369
-            // console.log("自动数据",aucountlist)
374
+            
370 375
             this.autoCountList = aucountlist
371 376
              var minCount = response.data.data.minCount
372
-            // console.log("minCount",minCount)
377
+           
373 378
             this.minCount = minCount
374 379
             var info = response.data.data.info
375 380
             for(let i=0;i<info.length;i++){
@@ -377,7 +382,7 @@
377 382
                  info[i].count = info[i].count * info[i].min_number
378 383
               }
379 384
             }
380
-            // console.log("info2222222",info)
385
+           
381 386
             this.drugOutList = info
382 387
           }
383 388
         })
@@ -469,8 +474,6 @@
469 474
        if((count%min_number)!=0){
470 475
          str_min = count%min_number + min_unit
471 476
        }
472
-       console.log("str2323222",str)
473
-       console.log("str22333333",str_min)
474 477
        return str+str_min
475 478
      },
476 479
 
@@ -486,16 +489,18 @@
486 489
        getDrugFlow(params).then(response=>{
487 490
           if(response.data.state ==1){
488 491
             var list = response.data.data.list
489
-            console.log("list232323232",list)
492
+           
490 493
             this.tableList = list
491 494
             var total = response.data.data.total
492
-            console.log("total23232",total)
495
+           
493 496
             this.total =total
494 497
             this.manufacturerList = response.data.data.manufacturerList
495 498
             this.dealerList = response.data.data.dealerList
496 499
             var drug = response.data.data.drug
497
-            console.log("drug233223232323223",drug)
500
+           
498 501
             this.drug = drug
502
+
503
+            this.houseList = response.data.data.houseList
499 504
           }
500 505
        })
501 506
      },
@@ -527,7 +532,16 @@
527 532
          min_price = this.drug.min_price
528 533
        }
529 534
        return min_price
530
-     }
535
+     },
536
+     getHouseName(id){
537
+      var storehouse_name = ""
538
+      for(let i=0;i<this.houseList.length;i++){
539
+        if(id == this.houseList[i].id){
540
+          storehouse_name = this.houseList[i].storehouse_name
541
+        }
542
+      }
543
+      return storehouse_name
544
+     },
531 545
     }
532 546
   }
533 547
 </script>

+ 70 - 20
src/xt_pages/stock/drugs/drugStockInOrder.vue Parādīt failu

@@ -15,9 +15,18 @@
15 15
 
16 16
     <div class="app-container">
17 17
       <div class="cell clearfix">
18
+       <label class="title"><span class="name">仓库</span> :</label>
19
+        <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px" @change="changeStoreHouse">
20
+            <el-option
21
+              v-for="(option, index) in houseList"
22
+              :key="index"
23
+              :label="option.storehouse_name"
24
+              :value="option.id">
25
+            </el-option>
26
+        </el-select> 
18 27
         <el-input
19 28
           size="small"
20
-          style="width: 400px;"
29
+          style="width: 200px;"
21 30
           v-model.trim="searchKey"
22 31
           class="filter-item"
23 32
           placeholder="单据编码/制单人/药品名称"
@@ -31,6 +40,7 @@
31 40
           >搜索</el-button
32 41
         >
33 42
         <div style="margin-left:10px;">
43
+
34 44
           <label class="title"><span class="name">入库时间</span> : </label>
35 45
           <el-date-picker
36 46
             size="small"
@@ -107,12 +117,25 @@
107 117
           </template>
108 118
         </el-table-column>
109 119
 
120
+        <el-table-column label="仓库名称" align="center">
121
+          <template slot-scope="scope">
122
+            {{getHouseName(scope.row.storehouse_id)}}
123
+          </template>
124
+        </el-table-column>
125
+
110 126
         <el-table-column label="制单人" align="center">
111 127
           <template slot-scope="scope">
112 128
             {{ getXuserName(scope.row.creater) }}
113 129
           </template>
114 130
         </el-table-column>
115 131
 
132
+       <el-table-column label="入库方式" align="center">
133
+          <template slot-scope="scope">
134
+           <span v-if="scope.row.is_sys == 13">调拨入库</span>
135
+           <span v-else>手动入库</span>
136
+          </template>
137
+        </el-table-column>
138
+
116 139
         <el-table-column label="操作" align="center" width="240">
117 140
           <template slot-scope="scope">
118 141
 
@@ -200,6 +223,11 @@
200 223
             {{scope.row.batch_number}}
201 224
           </template>
202 225
         </el-table-column>
226
+        <el-table-column label="仓库名称" align="center">
227
+          <template slot-scope="scope">
228
+            {{getHouseName(scope.row.storehouse_id)}}
229
+          </template>
230
+        </el-table-column>
203 231
         <el-table-column label="入库数量" align="center">
204 232
           <template slot-scope="scope">
205 233
             {{scope.row.warehousing_count}}{{scope.row.max_unit}}
@@ -437,6 +465,8 @@ export default {
437 465
       order_id:"",
438 466
       dealerList:[],
439 467
       exportList:[],
468
+      houseList:[],
469
+      storehouse_id:0,
440 470
     };
441 471
   },
442 472
   methods: {
@@ -447,9 +477,9 @@ export default {
447 477
         start_time: this.start_time,
448 478
         end_time: this.end_time,
449 479
         type: this.type,
450
-        keywords: this.searchKey
480
+        keywords: this.searchKey,
481
+        storehouse_id:this.storehouse_id,
451 482
       };
452
-      console.log("parasm2222222",Params)
453 483
       this.Warehouse.warehouseDate = [];
454 484
       getDrugWarehouseList(Params).then(response => {
455 485
         if (response.data.state == 0) {
@@ -462,7 +492,6 @@ export default {
462 492
           for (let i = 0; i < response.data.data.list.length; i++) {
463 493
             this.Warehouse.warehouseDate.push(response.data.data.list[i]);
464 494
           }
465
-          
466 495
         }
467 496
       });
468 497
     },
@@ -474,6 +503,7 @@ export default {
474 503
         end_time: this.end_time,
475 504
         type: this.type,
476 505
         keywords:this.searchKey,
506
+        storehouse_id:this.storehouse_id,
477 507
       };
478 508
       this.Warehouse.warehouseDate = [];
479 509
       getDrugWarehouseList(Params).then(response => {
@@ -487,7 +517,12 @@ export default {
487 517
           for (let i = 0; i < response.data.data.list.length; i++) {
488 518
             this.Warehouse.warehouseDate.push(response.data.data.list[i]);
489 519
           }
490
-          // console.log("列表999988888",this.warehouse.warehouseDate)
520
+          var obj = {id:0,storehouse_name:"全部"}
521
+          this.houseList = []
522
+          this.houseList.push(obj)
523
+          for(let i=0;i<response.data.data.houseList.length;i++){
524
+             this.houseList.push(response.data.data.houseList[i])
525
+          }
491 526
         }
492 527
       });
493 528
     },
@@ -549,10 +584,10 @@ export default {
549 584
     },
550 585
     fetchAllAdminUsers() {
551 586
       fetchAllAdminUsers().then(response => {
552
-        console.log(response);
587
+       
553 588
         if (response.data.state == 1) {
554 589
           this.adminUserOptions = response.data.data.users;
555
-          console.log("制单人2222222",this.adminUserOptions)
590
+         
556 591
           var alen = this.adminUserOptions.length;
557 592
           for (let index = 0; index < alen; index++) {
558 593
             if (this.adminUserOptions[index].user_type == 2) {
@@ -563,7 +598,6 @@ export default {
563 598
       });
564 599
     },
565 600
     clicks: function() {
566
-      console.log(this.WarehouseInfo.warehouseInfoDate);
567 601
     },
568 602
     handleWarehouse: function() {
569 603
       this.$router.push({ path: "/drugstock/in/add", query: { type: this.type } });
@@ -619,7 +653,7 @@ export default {
619 653
     handleEdit:function(index,row){
620 654
        this.$router.push({
621 655
          name:"drugStockInOrderEdit",
622
-         query:{id:row.id,type:this.type,supply_warehouse_id:row.supply_warehouse_id}
656
+         query:{id:row.id,type:this.type,supply_warehouse_id:row.supply_warehouse_id,is_sys:row.is_sys}
623 657
        })
624 658
     },
625 659
     handleSearch(id){
@@ -631,18 +665,18 @@ export default {
631 665
       const params = {
632 666
         id: order_id
633 667
       };
634
-      console.log("parasm222222222",params)
668
+
635 669
       this.WarehouseInfo.warehouseInfoDate = []
636 670
       getDrugWarehouseInfoList(params).then(response => {
637 671
         if (response.data.state == 0) {
638 672
           this.$message.error(response.data.msg);
639 673
           return false;
640 674
         } else {
641
-          console.log("hhhhhhhhhh",response.data.data.info)
675
+         
642 676
           for (let i = 0; i < response.data.data.info.length; i++) {
643 677
             this.showOne = true
644 678
             this.WarehouseInfo.warehouseInfoDate.push(response.data.data.info[i]);
645
-            console.log("列表详情",this.WarehouseInfo.warehouseInfoDate)
679
+           
646 680
           }
647 681
           this.WarehouseInfo.warehouse = response.data.data.warehousing;
648 682
           this.getAllDrugList()
@@ -650,7 +684,10 @@ export default {
650 684
       });
651 685
     },
652 686
     handleDelete: function(index, row) {
653
-      console.log("rowe23323223",row)
687
+      if(row.is_sys ==13){
688
+        this.$message.error("调拨入库数据不能删除!")
689
+        return false
690
+      }
654 691
       if(row.supply_warehouse_id >0 ){
655 692
         this.$message.error("自动入库数据不能删除!")
656 693
         return false
@@ -717,10 +754,14 @@ export default {
717 754
       const ids = [];
718 755
       const idOne = []
719 756
       for (let i = 0; i < this.selectedTableData.length; i++) {
757
+        if(this.selectedTableData[i].is_sys== 13){
758
+          this.$message.error("调拨入库数据不能删除!")
759
+          return false
760
+        }
720 761
         ids.push(this.selectedTableData[i].id);
721 762
         idOne.push(this.selectedTableData[i].supply_warehouse_id)
722 763
       }
723
-      console.log("idson233223233223",idOne)
764
+     
724 765
       for(let i=0;i<idOne.length;i++){
725 766
         if(idOne[i] >0 ){
726 767
            this.$message.error("自动入库数据不能删除!")
@@ -830,7 +871,7 @@ export default {
830 871
       exportDrugList(params).then(response=>{
831 872
          if(response.data.state == 1){
832 873
           var list =  response.data.data.list
833
-          console.log("list23232323",list)
874
+          
834 875
           for(let i=0;i<list.length;i++){
835 876
             list[i].product_date = this.getTime(list[i].product_date)
836 877
             list[i].expiry_date = this.getTime(list[i].expiry_date)
@@ -839,7 +880,7 @@ export default {
839 880
           var manufacturerList = response.data.data.manufacturerList
840 881
           this.manufacturerList = manufacturerList
841 882
           var dealerList = response.data.data.dealerList
842
-          console.log("经销是,",dealerList)
883
+        
843 884
           this.dealerList = dealerList
844 885
          }
845 886
       })
@@ -849,7 +890,6 @@ export default {
849 890
       if(this.order_id == ""){
850 891
         this.$message.error("请勾选入库单")
851 892
       }
852
-      console.log("hhhh2323",this.exportList)
853 893
       for(let i=0;i<this.exportList.length;i++){
854 894
         this.exportList[i].index = i+1
855 895
         this.exportList[i].unit = this.exportList[i].dose + this.exportList[i].dose_unit + "*" + this.exportList[i].min_number + this.exportList[i].min_unit + "/"+this.exportList[i].max_unit
@@ -875,8 +915,6 @@ export default {
875 915
       }
876 916
       
877 917
       import('@/vendor/Export2Excel').then(excel => {
878
-        console.log("232323",this.drugTypeList)
879
-        console.log("hhh23",this.exportList)
880 918
          for(let i=0;i<this.exportList.length;i++){
881 919
            for(let j=0;j<this.drugTypeList.length;j++){
882 920
              if(this.exportList[i].drug_type == this.drugTypeList[j].id){
@@ -889,7 +927,7 @@ export default {
889 927
         const filterVal = ['index','drug_name', 'drug_type','unit','batch_number','warehousing_count','price','total_price','manufacturer','product_date','expiry_date','dealer','number','remark']
890 928
          
891 929
      
892
-        console.log("table",this.exportList)
930
+
893 931
         
894 932
         const data = this.formatJson(filterVal, this.exportList)
895 933
         excel.export_json_to_excel({
@@ -903,6 +941,18 @@ export default {
903 941
    formatJson(filterVal, jsonData) {
904 942
     return jsonData.map(v => filterVal.map(j => v[j]));
905 943
    },
944
+  getHouseName(id){
945
+    var storehouse_name = ""
946
+    for(let i=0;i<this.houseList.length;i++){
947
+        if(id == this.houseList[i].id){
948
+          storehouse_name = this.houseList[i].storehouse_name
949
+        }
950
+    }
951
+    return storehouse_name
952
+  },
953
+  changeStoreHouse(){
954
+    this.GetWarehouse()
955
+  }
906 956
   }
907 957
 };
908 958
 </script>

+ 22 - 7
src/xt_pages/stock/drugs/drugStockInOrderAdd.vue Parādīt failu

@@ -23,6 +23,15 @@
23 23
 
24 24
 
25 25
       <div class="cell clearfix">
26
+        <label class="title"><span class="name"><span style="color:red">*</span>仓库</span> :</label>
27
+        <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px">
28
+            <el-option
29
+              v-for="(option, index) in list"
30
+              :key="index"
31
+              :label="option.storehouse_name"
32
+              :value="option.id">
33
+            </el-option>
34
+          </el-select>
26 35
         <label class="title"><span class="name">入库时间</span> : </label>
27 36
         <el-date-picker size="small" v-model="warehousing_time" prefix-icon="el-icon-date" :editable="false"
28 37
                         style="width: 196px;" type="date" placeholder="选择日期时间" align="right" format="yyyy-MM-dd"
@@ -452,6 +461,8 @@
452 461
         totalPrice:0,
453 462
         unitList:[],
454 463
         loading:false,
464
+        list:[],
465
+        storehouse_id:"",
455 466
       }
456 467
     },
457 468
     methods: {
@@ -527,7 +538,7 @@
527 538
           } else {
528 539
             this.manufacturer = response.data.data.manufacturer;
529 540
             this.dealer = response.data.data.dealer;
530
-            console.log("2222333333",response.data.data.drugs)
541
+            
531 542
             for(let i = 0; i<  response.data.data.drugs.length;i++){
532 543
               this.goodType.push(response.data.data.drugs[i])
533 544
               if(response.data.data.drugs[i].drug_specs != null) {
@@ -541,6 +552,8 @@
541 552
 
542 553
             this.form.manufacturer = 0
543 554
             this.form.dealer = 0
555
+            this.list = response.data.data.list
556
+            this.storehouse_id = response.data.data.configlist.drug_storehouse_info
544 557
           }
545 558
           loading.close()
546 559
 
@@ -631,7 +644,7 @@
631 644
           manufacturer_id: this.form.manufacturer,
632 645
           dealer_id: this.form.dealer
633 646
         }
634
-        console.log("2222",this.form.dealer)
647
+      
635 648
         GetAllDrugInfoByID(params).then(response => {
636 649
           
637 650
             if (response.data.state == 0) {
@@ -708,7 +721,10 @@
708 721
           if (valid) {
709 722
             this.loading = true
710 723
             const array = this.recordInfo.recordData
711
-          
724
+            if(this.storehouse_id == 0){
725
+             this.$message.error("仓库不能为空!")
726
+             return false
727
+            }
712 728
             for (let i = 0; i < array.length; i++) {
713 729
 
714 730
               if (array[i].drug_id == 0) {
@@ -745,9 +761,8 @@
745 761
             const params = {
746 762
               'stockIn': this.recordInfo.recordData
747 763
             }
748
-            console.log("params2222222",params)
749 764
            
750
-            postDrugWarehouse(params, this.warehousing_time, this.form.manufacturer, this.form.dealer, this.type).then(response => {
765
+            postDrugWarehouse(params, this.warehousing_time, this.form.manufacturer, this.form.dealer, this.type,this.storehouse_id).then(response => {
751 766
               if (response.data.state == 0) {
752 767
                 this.loading = false
753 768
                 this.$message.error(response.data.msg)
@@ -814,7 +829,7 @@
814 829
             searchArray = response.data.data.list;
815 830
             
816 831
              var list = response.data.data.list
817
-             console.log("猎豹22222222222",list)
832
+            
818 833
 
819 834
              this.drugList = list
820 835
              var manufacturerList = response.data.data.manufacturerList
@@ -872,7 +887,7 @@
872 887
             
873 888
            }
874 889
         }
875
-        console.log("333333",this.recordInfo.recordData)
890
+       
876 891
       }
877 892
      
878 893
     }

+ 33 - 18
src/xt_pages/stock/drugs/drugStockInOrderEdit.vue Parādīt failu

@@ -36,6 +36,15 @@
36 36
       </drugs-stock-dialog>
37 37
 
38 38
       <div class="cell clearfix">
39
+        <label class="title"><span class="name"><span style="color:red">*</span>仓库</span> :</label>
40
+        <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px" :disabled="true">
41
+            <el-option
42
+              v-for="(option, index) in list"
43
+              :key="index"
44
+              :label="option.storehouse_name"
45
+              :value="option.id">
46
+            </el-option>
47
+        </el-select>
39 48
         <label class="title"><span class="name">入库时间</span> : </label>
40 49
         <el-date-picker
41 50
           size="small"
@@ -452,6 +461,8 @@ export default {
452 461
       drug_show:false,
453 462
       loading:false,
454 463
       disabled:false,
464
+      storehouse_id:"",
465
+      list:[],
455 466
     };
456 467
   },
457 468
   methods: {
@@ -491,9 +502,6 @@ export default {
491 502
           }
492 503
         }
493 504
       }
494
-
495
-      // console.log( this.recordInfo.recordData)
496
-
497 505
       this.currentIndex = -1;
498 506
     },
499 507
     cancle: function() {
@@ -551,7 +559,10 @@ export default {
551 559
       return name;
552 560
     },
553 561
     handleEdit: function(index, row) {
554
-      console.log("row23323223",row)
562
+      if(parseInt(this.$route.query.is_sys)==13){
563
+        this.$message.error("调拨入库数据不能新增!")
564
+        return false
565
+      }
555 566
       if(row.supply_warehouse_id > 0){
556 567
         this.$message.error("自动入库数据不能新增!")
557 568
         return false
@@ -573,6 +584,10 @@ export default {
573 584
       this.recordInfo.recordData.push(tempObj);
574 585
     },
575 586
     handleDelete: function(index, row) {
587
+      if(parseInt(this.$route.query.is_sys)==13){
588
+        this.$message.error("调拨入库数据不能删除!")
589
+        return false
590
+      }
576 591
       if(row.supply_warehouse_id > 0){
577 592
         this.$message.error("自动入库数据不能删除!")
578 593
         return false
@@ -587,8 +602,7 @@ export default {
587 602
           confirmButtonText: "确定",
588 603
           cancelButtonText: "取消",
589 604
           type: "warning"
590
-        })
591
-          .then(() => {
605
+        }).then(() => {
592 606
             DeleteDrugWarehouseInfoItem(params).then(response => {
593 607
               if (response.data.state == 0) {
594 608
                 this.$message.error(response.data.msg);
@@ -673,7 +687,10 @@ export default {
673 687
         if (valid) {
674 688
           this.loading = true
675 689
           const array = this.recordInfo.recordData;
676
-        
690
+          if(this.storehouse_id == 0){
691
+            this.$message.error("仓库不能为空!")
692
+            return false
693
+          }
677 694
           for (let i = 0; i < array.length; i++) {
678 695
             if (array[i].drug_id == 0) {
679 696
               this.$message.error("药品名称或者药品规格名称不能为空");
@@ -710,15 +727,14 @@ export default {
710 727
           const params = {
711 728
             stockIn: this.recordInfo.recordData
712 729
           };
713
-          console.log("params22222222222",params)
714
-        
715 730
           EditDrugWarehouse(
716 731
             params,
717 732
             this.warehousing_time,
718 733
             this.$route.query.id,
719 734
             this.$route.query.type,
720 735
             this.form.manufacturer,
721
-            this.form.dealer
736
+            this.form.dealer,
737
+            this.storehouse_id,
722 738
           ).then(response => {
723 739
             if (response.data.state == 0) {
724 740
               this.$message.error(response.data.msg);
@@ -753,7 +769,7 @@ export default {
753 769
           var dealerList  = response.data.data.dealerList
754 770
         
755 771
           this.dealerList = dealerList
756
-          console.log("详情32332323232323232232323323232323232",response.data.data.info)
772
+         
757 773
           for (let i = 0; i < response.data.data.info.length; i++) {
758 774
             response.data.data.info[i].product_date = this.getTime(
759 775
               response.data.data.info[i].product_date,
@@ -805,13 +821,9 @@ export default {
805 821
                }
806 822
             }
807 823
           }
808
-          console.log("列表详情",this.recordInfo.recordData)
809
-
810
-
811 824
           this.warehouse = response.data.data.warehousing;
812
-          // this.form.manufacturer = this.warehouse.manufacturer;
813
-          // this.form.dealer = this.warehouse.dealer;
814
-
825
+          this.storehouse_id = response.data.data.warehousing.storehouse_id
826
+          this.list = response.data.data.list
815 827
           this.warehousing_time = this.getTime(
816 828
             this.warehouse.warehousing_time,
817 829
             "{y}-{m}-{d}"
@@ -867,7 +879,6 @@ export default {
867 879
         this.currentIndex = val
868 880
       },
869 881
       handleSelect(val){
870
-        console.log("val2222",val)
871 882
         for(let i=0;i<this.recordInfo.recordData.length;i++){
872 883
            if(i == this.currentIndex){
873 884
              this.recordInfo.recordData[i].drug_id = val.id
@@ -912,6 +923,10 @@ export default {
912 923
     if( parseInt(this.$route.query.supply_warehouse_id)>0){
913 924
       this.disabled = true
914 925
     }
926
+    if(parseInt(this.$route.query.is_sys) == 13){
927
+      this.disabled = true
928
+    }
929
+
915 930
   }
916 931
 };
917 932
 </script>

+ 70 - 25
src/xt_pages/stock/drugs/drugStockOutOrder.vue Parādīt failu

@@ -13,9 +13,18 @@
13 13
     </div>
14 14
     <div class="app-container">
15 15
       <div class="cell clearfix">
16
+        <label class="title"><span class="name">仓库</span> :</label>
17
+        <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px" @change="changeStoreHouse">
18
+            <el-option
19
+              v-for="(option, index) in houseList"
20
+              :key="index"
21
+              :label="option.storehouse_name"
22
+              :value="option.id">
23
+            </el-option>
24
+        </el-select>
16 25
         <el-input
17 26
           size="small"
18
-          style="width: 400px;"
27
+          style="width: 200px;"
19 28
           class="filter-item"
20 29
           v-model.trim="searchKey"
21 30
           placeholder="单据编码/制单人/厂商"
@@ -103,6 +112,12 @@
103 112
           </template>
104 113
         </el-table-column>
105 114
 
115
+        <el-table-column label="仓库名称" align="center">
116
+          <template slot-scope="scope">
117
+            {{getHouseName(scope.row.storehouse_id)}}
118
+          </template>
119
+        </el-table-column>
120
+
106 121
         <el-table-column label="制单人" align="center">
107 122
           <template slot-scope="scope">
108 123
             {{ getXuserName(scope.row.creater) }}
@@ -115,23 +130,11 @@
115 130
           </template>
116 131
           <template slot-scope="scope">
117 132
             <span v-if="scope.row.is_sys == 1">{{"自动出库"}}</span>
118
-            <span v-if="scope.row.is_sys != 1">{{"手动出库"}}</span>
119
-
120
-          </template>
121
-        </el-table-column>
122
-
123
-        <!-- <el-table-column label="厂家" align="center">
124
-          <template slot-scope="scope">
125
-            {{scope.row.manufacturers ? scope.row.manufacturers.manufacturer_name:''}}
133
+            <span v-if="scope.row.is_sys == 0">{{"手动出库"}}</span>
134
+            <span v-if="scope.row.is_sys == 12">{{"调拨出库"}}</span>
126 135
           </template>
127 136
         </el-table-column>
128 137
 
129
-        <el-table-column label="经销商" align="center">
130
-          <template slot-scope="scope">
131
-            {{scope.row.dealers ? scope.row.dealers.dealer_name:''}}
132
-          </template>
133
-        </el-table-column> -->
134
-
135 138
 
136 139
         <el-table-column label="操作" align="center" width="240">
137 140
           <template slot-scope="scope">
@@ -216,12 +219,24 @@
216 219
               {{scope.row.medical_insurance_number}}
217 220
             </template>
218 221
           </el-table-column>
222
+          <el-table-column label="仓库名称" align="center">
223
+          <template slot-scope="scope">
224
+            {{getHouseName(scope.row.storehouse_id)}}
225
+          </template>
226
+        </el-table-column>
227
+
219 228
           <el-table-column label="出库数量" align="center">
220 229
             <template slot-scope="scope">
221 230
               <!-- <span v-if="scope.row.is_sys ==  0">{{getTotalCount(scope.row.drug_id,scope.row.min_number,scope.row.max_unit,scope.row.min_unit)}}</span> -->
222 231
               <span> {{getTotalCountOne(scope.row.drug_id,scope.row.min_number,scope.row.max_unit,scope.row.min_unit)}}</span>
223 232
             </template>
224 233
           </el-table-column>
234
+          <el-table-column label="出库对象" align="center" v-if="is_sys == 0">
235
+            <template slot-scope="scope">
236
+              <span>{{getXuserName(scope.row.admin_user_id)}} </span>
237
+            </template>
238
+          </el-table-column>
239
+          <el-table-column label="出货单价" align="center">
225 240
           <el-table-column label="出库单价" align="center">
226 241
             <template slot-scope="scope">
227 242
               <span v-if="scope.row.price > 0"> {{scope.row.price}}</span>
@@ -488,6 +503,9 @@ export default {
488 503
       exportList:[],
489 504
       batchNumberList:[],
490 505
       drugFlowList:[],
506
+      houseList:[],
507
+      storehouse_id:0,
508
+      is_sys:0,
491 509
     };
492 510
   },
493 511
   methods: {
@@ -498,7 +516,8 @@ export default {
498 516
         start_time: this.start_time,
499 517
         end_time: this.end_time,
500 518
         type: this.type,
501
-        keywords: this.searchKey
519
+        keywords: this.searchKey,
520
+        storehouse_id:this.storehouse_id,
502 521
       };
503 522
       this.warehouseOutDate = [];
504 523
       getDrugWarehouseOutList(Params).then(response => {
@@ -510,6 +529,7 @@ export default {
510 529
           for (let i = 0; i < response.data.data.list.length; i++) {
511 530
             this.warehouseOutDate.push(response.data.data.list[i]);
512 531
           }
532
+          this.houseList = response.data.data.houseList
513 533
         }
514 534
       });
515 535
     },
@@ -526,7 +546,8 @@ export default {
526 546
         start_time: this.start_time,
527 547
         end_time: this.end_time,
528 548
         type: this.type,
529
-        keywords: this.searchKey
549
+        keywords: this.searchKey,
550
+        storehouse_id:this.storehouse_id,
530 551
       };
531 552
       this.warehouseOutDate = [];
532 553
       getDrugWarehouseOutList(Params).then(response => {
@@ -538,7 +559,12 @@ export default {
538 559
           for (let i = 0; i < response.data.data.list.length; i++) {
539 560
             this.warehouseOutDate.push(response.data.data.list[i]);
540 561
           }
541
-
562
+          var obj = {id:0,storehouse_name:"全部"}
563
+          this.houseList = []
564
+          this.houseList.push(obj)
565
+          for(let i=0;i<response.data.data.houseList.length;i++){
566
+            this.houseList.push(response.data.data.houseList[i])
567
+          }
542 568
         }
543 569
       });
544 570
     },
@@ -631,7 +657,7 @@ export default {
631 657
       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 658
     },
633 659
     handleSearch(val){
634
-
660
+       this.is_sys = val.is_sys
635 661
        this.getInitializtion()
636 662
        this.getSinleOrderDetail(val.id,val.warehouse_out_time,val.is_sys)
637 663
        this.list = []
@@ -639,6 +665,10 @@ export default {
639 665
     },
640 666
 
641 667
     handleDelete: function(index, row) {
668
+      if(row.is_sys == 12){
669
+       this.$message.error("调拨出库数据不能删除!")
670
+       return
671
+      }
642 672
       if(row.supply_cancel_out_id >0){
643 673
         this.$message.error("采购出库数据不能删除!")
644 674
         return
@@ -711,6 +741,10 @@ export default {
711 741
           this.$message.error("自动出库数据不能删除!")
712 742
           return false
713 743
         }
744
+        if(this.selectedTableData[i].is_sys == 12){
745
+          this.$message.error("调拨出库数据不能删除!")
746
+          return false
747
+        }
714 748
         if(this.selectedTableData[i].is_sys == 0){
715 749
           ids.push(this.selectedTableData[i].id);
716 750
           idsOne.push(this.selectedTableData[i].supply_cancel_out_id)
@@ -924,7 +958,6 @@ export default {
924 958
          id:id,
925 959
          start_time:start_time,
926 960
        }
927
-      console.log("is_sys22222",is_sys)
928 961
      getSinleOrderDetail(params).then(response=>{
929 962
         if(response.data.state == 1){
930 963
           this.tableShow = true
@@ -934,6 +967,7 @@ export default {
934 967
          this.manufacturerList = response.data.data.manufacturerList
935 968
          this.dealerList = response.data.data.dealerList
936 969
          var drugFlowList = response.data.data.drugFlowList
970
+
937 971
          if (is_sys == 1){
938 972
            if(drugFlowList.length >0){
939 973
             for(let i=0;i<drugFlowList.length;i++){
@@ -946,10 +980,10 @@ export default {
946 980
 
947 981
             }
948 982
            }
949
-        
983
+
950 984
             this.drugFlowList = drugFlowList
951 985
          }
952
-         if(is_sys == 0){
986
+         if(is_sys == 0 || is_sys == 12){
953 987
             var flowlist = response.data.data.flowlist
954 988
             this.drugFlowList = []
955 989
             for(let i=0;i<flowlist.length;i++){
@@ -972,7 +1006,7 @@ export default {
972 1006
               list[i].number = ""
973 1007
            }
974 1008
          }
975
-         console.log("list233223323233223",list)
1009
+
976 1010
          this.tableList = list
977 1011
         }
978 1012
      })
@@ -995,7 +1029,7 @@ export default {
995 1029
 
996 1030
           this.drugDialogVisible = true
997 1031
         }
998
-        if(val.is_sys == 0){
1032
+        if(val.is_sys == 0 || val.is_sys == 12){
999 1033
 
1000 1034
           this.drugDialogVisibleTwo = true
1001 1035
         }
@@ -1094,7 +1128,6 @@ export default {
1094 1128
          return str + min_str
1095 1129
       },
1096 1130
       getTotalCountOne(id,min_number,max_unit,min_unit){
1097
-        console.log("hhhahdhhff",this.drugFlowList)
1098 1131
         var arr = []
1099 1132
         for(let i=0;i<this.drugFlowList.length;i++){
1100 1133
           if(id == this.drugFlowList[i].drug_id){
@@ -1237,6 +1270,18 @@ export default {
1237 1270
 
1238 1271
         return  all_price
1239 1272
       },
1273
+    getHouseName(id){
1274
+      var storehouse_name = ""
1275
+      for(let i=0;i<this.houseList.length;i++){
1276
+          if(id == this.houseList[i].id){
1277
+            storehouse_name = this.houseList[i].storehouse_name
1278
+          }
1279
+      }
1280
+      return storehouse_name
1281
+    },
1282
+    changeStoreHouse(){
1283
+      this.GetWarehouseOut()
1284
+    }
1240 1285
   }
1241 1286
 };
1242 1287
 </script>

+ 51 - 9
src/xt_pages/stock/drugs/drugStockOutOrderAdd.vue Parādīt failu

@@ -27,6 +27,15 @@
27 27
     <div class="app-container">
28 28
   
29 29
       <div class="cell clearfix">
30
+        <label class="title"><span class="name"><span style="color:red">*</span>仓库</span> :</label>
31
+        <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px">
32
+            <el-option
33
+              v-for="(option, index) in list"
34
+              :key="index"
35
+              :label="option.storehouse_name"
36
+              :value="option.id">
37
+            </el-option>
38
+          </el-select>
30 39
         <label class="title"><span class="name">出库时间</span> : </label>
31 40
         <el-date-picker
32 41
           size="small"
@@ -141,6 +150,20 @@
141 150
             </template>
142 151
 
143 152
           </el-table-column>
153
+
154
+          <el-table-column label="出库对象" width="140" align="center">
155
+            <template slot-scope="scope">
156
+               <el-select v-model="scope.row.admin_user_id" filterable placeholder="请选择厂商">
157
+                <el-option
158
+                  v-for="(option, index) in doctorList"
159
+                  :key="index"
160
+                  :label="option.user_name"
161
+                  :value="option.admin_user_id">
162
+                </el-option>
163
+               </el-select>
164
+            </template>
165
+          </el-table-column>
166
+
144 167
           <el-table-column width="120" align="center">
145 168
             <template slot="header" slot-scope="scope">
146 169
               <span>出货价<span style="color: red">*</span></span>
@@ -346,6 +369,9 @@ export default {
346 369
       unitList:[],
347 370
       numberList:[],
348 371
       listLoading: false,
372
+      storehouse_id:"",
373
+      list:[],
374
+      doctorList:[],
349 375
     };
350 376
   },
351 377
   methods: {
@@ -382,6 +408,9 @@ export default {
382 408
 
383 409
           this.form.manufacturer = 0
384 410
           this.form.dealer = 0
411
+          this.storehouse_id = response.data.data.configlist.drug_storehouse_out
412
+          this.list = response.data.data.list
413
+          this.doctorList = response.data.data.doctorList
385 414
         }
386 415
         loading.close()
387 416
 
@@ -424,6 +453,7 @@ export default {
424 453
       tempObj["warehouse_info_id"] = 0
425 454
       tempObj["dealer"] = ""
426 455
       tempObj['manufacturer'] = ''
456
+      tempObj["admin_user_id"] =  this.$store.getters.xt_user.user.user_name
427 457
       this.recordInfo.recordData.push(tempObj);
428 458
     },
429 459
     handleDelete: function(index, row) {
@@ -521,6 +551,10 @@ export default {
521 551
             }
522 552
             total = total + array[i].price * array[i].return_count;
523 553
           }
554
+          if(this.storehouse_id == 0){
555
+            this.$message.error("仓库不能为空!")
556
+            return false
557
+          }
524 558
           if (this.recordInfo.recordData.length <= 0) {
525 559
             this.$message.success("请添加出库商品");
526 560
             return;
@@ -548,13 +582,19 @@ export default {
548 582
                 this.recordInfo.recordData[i].batch_number = this.numberList[y].batch_number
549 583
                 this.recordInfo.recordData[i].warehouse_info_id = this.numberList[y].id
550 584
               }
551
-           
552 585
             }
586
+           for(let s=0;s<this.doctorList.length;s++){
587
+            if(this.recordInfo.recordData[i].admin_user_id == this.doctorList[s].user_name){
588
+              this.recordInfo.recordData[i].admin_user_id = this.doctorList[s].admin_user_id
589
+            }
590
+
591
+            }
592
+
553 593
           }
554 594
           const params = {
555 595
             stockOut: this.recordInfo.recordData
556 596
           };
557
-          console.log("param23323232",params)
597
+       
558 598
          
559 599
           const loading = this.$loading({
560 600
             lock: true,
@@ -567,7 +607,8 @@ export default {
567 607
             this.warehouse_out_time,
568 608
             this.form.dealer,
569 609
             this.form.manufacturer,
570
-            this.type
610
+            this.type,
611
+            this.storehouse_id
571 612
           ).then(response => {
572 613
             if (response.data.state == 0) {
573 614
               this.$message.error("库存不足");
@@ -623,13 +664,13 @@ export default {
623 664
           if (response.data.state == 1) {
624 665
             searchArray = response.data.data.list;
625 666
              var list = response.data.data.list
626
-             console.log("list99999999",list)
667
+     
627 668
              this.drugList = list
628 669
              var manufacturerList = response.data.data.manufacturerList
629 670
              this.manufacturerList = manufacturerList
630 671
              var dealerList = response.data.data.dealerList
631 672
              this.dealerList = dealerList
632
-             console.log("经销商",this.dealerList)
673
+           
633 674
              for(let i=0;i<this.drugList.length;i++){
634 675
                 for(let j=0;j<this.manufacturerList.length;j++){
635 676
                   if(this.drugList[i].manufacturer == this.manufacturerList[j].id){
@@ -659,7 +700,7 @@ export default {
659 700
             arr.push(this.recordInfo.recordData[i].drug_id)
660 701
          }
661 702
          var str = arr.join(",")
662
-         console.log("str",str)
703
+       
663 704
          if(str.indexOf(val.id)!=-1){
664 705
             this.$message.error("该药品已存在列表中")
665 706
             return
@@ -706,14 +747,14 @@ export default {
706 747
         getDrugBatchNumber(params).then(response=>{
707 748
            if(response.data.state == 1){
708 749
              var list = response.data.data.list
709
-             console.log("list2222",list)
750
+            
710 751
              this.numberList = []
711 752
              this.numberList = list
712 753
            }
713 754
         })
714 755
       },
715 756
       changeUnit(val){
716
-        console.log("val2323232322323",val,this.recordInfo.recordData)
757
+       
717 758
         this.getDrugBatchNumber(val.drug_id)
718 759
         for(let i=0;i<this.recordInfo.recordData.length;i++){
719 760
           if(this.recordInfo.recordData[i].drug_id == val.drug_id){
@@ -732,7 +773,7 @@ export default {
732 773
         }
733 774
       },
734 775
       changeBatchNumber(val){
735
-        console.log("val",val)
776
+       
736 777
         this.getDrugBatchNumber(val.drug_id)
737 778
         for(let i=0;i<this.recordInfo.recordData.length;i++){
738 779
             if(this.currentIndex == i){
@@ -775,6 +816,7 @@ export default {
775 816
     tempObj["number"] = ""
776 817
     tempObj["warehouse_info_id"] = 0
777 818
     tempObj["count"] = ""
819
+    tempObj["admin_user_id"] =  this.$store.getters.xt_user.user.user_name
778 820
     this.recordInfo.recordData.push(tempObj);
779 821
     this.GetConfigInfo();
780 822
     this.propForm.goodUnit = this.$store.getters.good_unit;

+ 3 - 1
src/xt_pages/stock/drugs/drugStockOutOrderDetail.vue Parādīt failu

@@ -144,7 +144,8 @@
144 144
           loading: false,
145 145
           warehousingOutData: [],
146 146
           info: {}
147
-        }
147
+        },
148
+        doctorList:[],
148 149
       }
149 150
     },
150 151
     methods: {
@@ -168,6 +169,7 @@
168 169
               this.warehousingOutInfo.warehousingOutData.push(response.data.data.list[i])
169 170
             }
170 171
             this.warehousingOutInfo.info = response.data.data.info
172
+            this.doctorList = response.data.data.doctorList
171 173
             this.handleSpanTempArr()
172 174
           }
173 175
         })

+ 64 - 8
src/xt_pages/stock/drugs/drugStockOutOrderEdit.vue Parādīt failu

@@ -21,7 +21,32 @@
21 21
         v-on:dialog-cancle="cancle"
22 22
       >
23 23
       </drugs-stock-dialog>
24
-
24
+        
25
+      <div class="cell clearfix">
26
+        <label class="title"><span class="name"><span style="color:red">*</span>仓库</span> :</label>
27
+        <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px" :disabled="true">
28
+            <el-option
29
+              v-for="(option, index) in houstList"
30
+              :key="index"
31
+              :label="option.storehouse_name"
32
+              :value="option.id">
33
+            </el-option>
34
+          </el-select>
35
+        <label class="title"><span class="name">出库时间</span> : </label>
36
+        <el-date-picker
37
+          :disabled="drug_show"
38
+          size="small"
39
+          v-model="warehouse_out_time"
40
+          prefix-icon="el-icon-date"
41
+          :editable="false"
42
+          style="width: 200px;"
43
+          type="date"
44
+          placeholder="选择日期时间"
45
+          align="right"
46
+          format="yyyy-MM-dd"
47
+          value-format="yyyy-MM-dd"
48
+        ></el-date-picker>
49
+      </div>
25 50
 
26 51
       <el-form :rules="tableRules" :model="recordInfo" ref="tableForm">
27 52
         <el-table :data="recordInfo.recordData" :class="signAndWeighBoxPatients" style="width: 100%" border
@@ -133,6 +158,18 @@
133 158
 
134 159
             </template>
135 160
           </el-table-column>
161
+          <el-table-column label="出库对象" width="140" align="center">
162
+            <template slot-scope="scope">
163
+               <el-select v-model="scope.row.admin_user_id" filterable placeholder="请选择厂商"  :disabled="drug_show">
164
+                <el-option
165
+                  v-for="(option, index) in doctorList"
166
+                  :key="index"
167
+                  :label="option.user_name"
168
+                  :value="option.admin_user_id">
169
+                </el-option>
170
+               </el-select>
171
+            </template>
172
+          </el-table-column>
136 173
          <el-table-column width="120" align="center">
137 174
             <template slot="header" slot-scope="scope">
138 175
               <span>出货价<span style="color: red">*</span></span>
@@ -334,7 +371,9 @@
334 371
         drug_show:false,
335 372
         unitList:[],
336 373
         unitShow:true,
337
-        numberList:[]
374
+        numberList:[],
375
+        houstList:[],
376
+        storehouse_id:"",
338 377
       }
339 378
     },
340 379
     methods: {
@@ -429,6 +468,10 @@
429 468
         return name;
430 469
       },
431 470
        handleEdit: function(index, row) {
471
+        if(parseInt(this.$route.query.is_sys) == 12){
472
+          this.$message.error("调拨出库数据不能新增!")
473
+          return
474
+        }
432 475
         if(row.supply_cancel_out_id >0){
433 476
          this.$message.error("采购出库数据不能新增!")
434 477
          return
@@ -451,9 +494,13 @@
451 494
         tempObj['dealer'] = ""
452 495
         tempObj['manufacturer'] = ""
453 496
         tempObj['warehouse_info_id'] = 0
497
+        tempObj["admin_user_id"] =  this.$store.getters.xt_user.user.user_name
454 498
         this.recordInfo.recordData.push(tempObj)
455 499
       }, handleDelete: function(index, row) {
456
-        console.log("row323232232",row)
500
+        if(parseInt(this.$route.query.is_sys) == 12){
501
+          this.$message.error("调拨出库数据不能删除!")
502
+          return
503
+        }
457 504
         if(row.supply_cancel_out_id >0){
458 505
          this.$message.error("采购出库数据不能删除!")
459 506
          return
@@ -591,7 +638,13 @@
591 638
                      this.recordInfo.recordData[i].warehouse_info_id =  this.numberList[y].id
592 639
                   }
593 640
                }
641
+              
642
+               for(let s=0;s<this.doctorList.length;s++){
643
+                  if(this.recordInfo.recordData[i].admin_user_id == this.doctorList[s].user_name){
644
+                    this.recordInfo.recordData[i].admin_user_id = this.doctorList[s].admin_user_id
645
+                  }
594 646
 
647
+               }
595 648
             }
596 649
             const loading = this.$loading({
597 650
               lock: true,
@@ -602,9 +655,8 @@
602 655
             const params = {
603 656
               'stockOut': this.recordInfo.recordData
604 657
             }
605
-            console.log("param23322323233222323",params)
606
-
607
-            editDrugWarehouseoutInfo(params, this.warehouse_out_time, this.$route.query.id, this.$route.query.type, this.form.manufacturer, this.form.dealer).then(response => {
658
+         
659
+            editDrugWarehouseoutInfo(params, this.warehouse_out_time, this.$route.query.id, this.$route.query.type, this.form.manufacturer, this.form.dealer,this.storehouse_id).then(response => {
608 660
               if (response.data.state == 0) {
609 661
                 this.$message.error(response.data.msg)
610 662
                 loading.close()
@@ -692,9 +744,10 @@
692 744
               }
693 745
 
694 746
             this.warehouseOut = response.data.data.info
747
+            this.storehouse_id = response.data.data.info.storehouse_id
695 748
             this.warehouse_out_time = this.getTime(this.warehouseOut.warehouse_out_time, '{y}-{m}-{d}')
696
-
697
-
749
+            this.houstList = response.data.data.houstList
750
+            this.doctorList = response.data.data.doctorList
698 751
           }
699 752
 
700 753
           if (this.recordInfo.recordData.length == 0) {
@@ -818,6 +871,9 @@
818 871
       if(sys == 1){
819 872
         this.drug_show = true
820 873
       }
874
+      if(sys == 12){
875
+        this.drug_show = true
876
+      }
821 877
       if(parseInt(this.$route.query.supply_cancel_out_id)>0){
822 878
         this.drug_show = true
823 879
       }

+ 41 - 3
src/xt_pages/stock/drugs/inventory.vue Parādīt failu

@@ -1,6 +1,15 @@
1 1
 <template>
2 2
   <div>
3 3
     <div v-show="showSearch">
4
+    <label class="title"><span class="name">仓库</span> :</label>
5
+      <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px">
6
+          <el-option
7
+            v-for="(option, index) in houseList"
8
+            :key="index"
9
+            :label="option.storehouse_name"
10
+            :value="option.id">
11
+          </el-option>
12
+      </el-select>   
4 13
      <el-autocomplete
5 14
         class="checkSearch"
6 15
         popper-class="my-autocomplete"
@@ -62,6 +71,11 @@
62 71
                     {{scope.row.manufacturer_name}}
63 72
                   </template> 
64 73
               </el-table-column>
74
+             <el-table-column prop="name" label="仓库名称" width="100"  align="center">
75
+                  <template slot-scope="scope">
76
+                    {{getHouseName(scope.row.storehouse_id)}}
77
+                  </template> 
78
+              </el-table-column>
65 79
               <el-table-column prop="name" label="盘点前数量" width="180"  align="center">
66 80
                 <template slot-scope="scope">
67 81
                     <span><el-input style="width:50px" v-model="scope.row.stock_max_number" :disabled="true"></el-input>{{scope.row.max_unit}}</span> 
@@ -96,6 +110,15 @@
96 110
               </el-table-column>
97 111
           </el-table>
98 112
       </el-collapse-item>
113
+     <label class="title"><span class="name">仓库</span> :</label>
114
+      <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px">
115
+          <el-option
116
+            v-for="(option, index) in houseList"
117
+            :key="index"
118
+            :label="option.storehouse_name"
119
+            :value="option.id">
120
+          </el-option>
121
+      </el-select>   
99 122
       <el-autocomplete
100 123
           class="checkSearch"
101 124
           popper-class="my-autocomplete"
@@ -166,6 +189,7 @@ export default {
166 189
                 proof_count:"",
167 190
                 min_count:"",
168 191
                 min_unit:"",
192
+                storehouse_id:"",
169 193
             },
170 194
             total: 0,
171 195
             editdialogVisible:false,
@@ -201,6 +225,8 @@ export default {
201 225
             showTableOne:false,
202 226
             panShow:true,
203 227
             panOneShow:true,
228
+            houseList:[],
229
+            storehouse_id:"",
204 230
         }
205 231
     },
206 232
     methods:{
@@ -234,6 +260,7 @@ export default {
234 260
             }
235 261
              var params = {
236 262
                 keyword:key,
263
+                storehouse_id:this.storehouse_id,
237 264
              }
238 265
             
239 266
             postSearchDrugWarehouseList(params).then(response => {
@@ -279,7 +306,8 @@ export default {
279 306
             return
280 307
           }
281 308
            var params = {
282
-              id:val.drug_id
309
+              id:val.drug_id,
310
+              storehouse_id:this.storehouse_id,
283 311
             }
284 312
            getDrugWarehouseInfoList(params).then(response=>{
285 313
              if(response.data.state == 1){
@@ -566,7 +594,9 @@ export default {
566 594
               
567 595
               this.doctorList =  response.data.data.doctorList
568 596
               
597
+              this.houseList = response.data.data.houseList
569 598
 
599
+              this.storehouse_id = response.data.data.houseConfig.drug_storehouse_out
570 600
             }
571 601
           })
572 602
         },
@@ -860,7 +890,7 @@ export default {
860 890
        var params = {
861 891
          tableData:arr
862 892
        }
863
-      console.log("paramse32323232",params)
893
+     
864 894
       saveInentoryList(params).then(response=>{
865 895
         if(response.data.state == 1){
866 896
            var inventory = response.data.data.inventory
@@ -870,11 +900,19 @@ export default {
870 900
           
871 901
         }
872 902
       })
903
+    },
904
+    getHouseName(id){
905
+      var storehouse_name = ""
906
+      for(let i=0;i<this.houseList.length;i++){
907
+        if(id == this.houseList[i].id){
908
+          storehouse_name = this.houseList[i].storehouse_name
909
+        }
910
+      }
911
+      return storehouse_name
873 912
     }
874 913
     },
875 914
     created(){
876 915
       this.unitList =  this.getDataConfig('hemodialysis','units')
877
-      console.log("单位",this.unitList)
878 916
       this.getlist()
879 917
     },
880 918
     mounted() {

+ 41 - 3
src/xt_pages/stock/drugs/inventoryDetails.vue Parādīt failu

@@ -2,6 +2,14 @@
2 2
     <div>
3 3
         <div style="display: flex;align-items: center;justify-content: space-between;margin-bottom:10px;">
4 4
             <div>
5
+              <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px" @change="changehouseList">
6
+                <el-option
7
+                  v-for="(option, index) in houseList"
8
+                  :key="index"
9
+                  :label="option.storehouse_name"
10
+                  :value="option.id">
11
+                </el-option>
12
+              </el-select>   
5 13
                 <el-input
6 14
                 size="small"
7 15
                 style="width: 200px;margin-left:10px;"
@@ -61,6 +69,12 @@
61 69
                    {{getTime(scope.row.expiry_date)}}
62 70
                 </template>  
63 71
             </el-table-column>
72
+
73
+           <el-table-column prop="name" label="仓库名称" width="200"  align="center">
74
+                <template slot-scope="scope">
75
+                   {{getHouseName(scope.row.storehouse_id)}}
76
+                </template>  
77
+            </el-table-column>
64 78
            
65 79
            <el-table-column prop="name" label="盘点前数量" width="100"  align="center">
66 80
                 <template slot-scope="scope">
@@ -117,7 +131,7 @@ export default {
117 131
             total: 0,
118 132
             limit:10,
119 133
             page:1,
120
-            
134
+            storehouse_id:0,
121 135
         }
122 136
     },
123 137
     methods:{
@@ -140,14 +154,22 @@ export default {
140 154
               limit:this.limit,
141 155
               page:this.page,
142 156
               keyword:this.searchKey,
157
+              storehouse_id:this.storehouse_id,
143 158
             }
144 159
         
145 160
           getInventoryDetailList(params).then(response=>{
146 161
              if(response.data.state == 1){
147 162
               this.total =  response.data.data.total
148 163
               this.tableData = response.data.data.list
149
-              console.log("比阿哥",this.tableData)
164
+           
150 165
               this.doctorList = response.data.data.doctorList
166
+              var obj = {id:0,storehouse_name:"全部"}
167
+              this.houseList= []
168
+              this.houseList.push(obj)
169
+              for(let i=0;i<response.data.data.houseList.length;i++){
170
+                this.houseList.push(response.data.data.houseList[i])
171
+              }
172
+
151 173
              }
152 174
           })   
153 175
         },
@@ -165,7 +187,23 @@ export default {
165 187
             return uParseTime(val, '{y}-{m}-{d}')
166 188
          }
167 189
         },
168
-
190
+       changehouseList(){
191
+         this.houseList = []
192
+         this.getlist()
193
+       },
194
+       getHouseName(id){
195
+         var storehouse_name = ""
196
+         for(let i=0;i<this.houseList.length;i++){
197
+           if(id == this.houseList[i].id){
198
+              storehouse_name = this.houseList[i].storehouse_name
199
+           }
200
+         }
201
+         if(storehouse_name == "全部"){
202
+           return ""
203
+         }else{
204
+           return storehouse_name
205
+         }
206
+       }
169 207
     },
170 208
     created(){
171 209
       this.getlist()

+ 234 - 35
src/xt_pages/stock/drugs/query.vue Parādīt failu

@@ -30,15 +30,39 @@
30 30
     </div>
31 31
     <div class="app-container ">
32 32
       <div class="cell clearfix">
33
-         <el-select v-model="drug_type" style="width:160px;margin-right:10px;" placeholder="请选择" @change="changeDrug">
33
+        <div>
34
+          <span>仓库名称:</span>
35
+          <el-select v-model="storehouse_id" style="width:200px;margin-right:10px;" placeholder="请选择"
36
+          filterable
37
+           @change="changeStorehouseName">
38
+            <el-option
39
+              v-for="item in storeList"
40
+              :key="item.id"
41
+              :label="item.storehouse_name"
42
+              :value="item.id">
43
+            </el-option>
44
+          </el-select>
45
+          <span>药品名称:</span>
46
+          <el-select v-model="drug_id" style="width:200px;margin-right:10px;" placeholder="请选择" 
47
+          filterable
48
+           @change="changeDrugName">
49
+            <el-option
50
+              v-for="item in medicalList"
51
+              :key="item.id"
52
+              :label="item.drug_name"
53
+              :value="item.id">
54
+            </el-option>
55
+          </el-select> 
56
+        </div>
57
+         <!-- <el-select v-model="drug_type" style="width:160px;margin-right:10px;" placeholder="请选择" @change="changeDrug">
34 58
             <el-option
35 59
               v-for="(item,index) in drugTypeList"
36 60
               :key="index"
37 61
               :label="item.name"
38 62
               :value="item.id">
39 63
             </el-option>
40
-        </el-select>
41
-         <el-date-picker
64
+        </el-select> -->
65
+         <!-- <el-date-picker
42 66
             v-model="start_time"
43 67
             prefix-icon="el-icon-date"
44 68
             :editable="false"
@@ -61,8 +85,8 @@
61 85
               format="yyyy-MM-dd"
62 86
               value-format="yyyy-MM-dd"
63 87
               @change="endTimeChange"
64
-          ></el-date-picker>
65
-          <el-input
88
+          ></el-date-picker> -->
89
+          <!-- <el-input
66 90
             style="width: 200px;"
67 91
             class="filter-item"
68 92
             v-model.trim="keywords"
@@ -75,12 +99,12 @@
75 99
             icon="el-icon-search"
76 100
             @click="search"
77 101
           >搜索
78
-          </el-button>
102
+          </el-button> -->
79 103
       </div>
80 104
 
81
-       <el-table :data="tableList" border style="width: 100%">
82
-
83
-        <el-table-column prop="drug_type" label="药品类型" width="180" align="center">
105
+       <el-table :data="tableList" border style="width: 100%"   :cell-class-name="cellStyle">
106
+ 
107
+        <el-table-column prop="drug_type" label="药品类型" width="100" align="center">
84 108
            <template slot-scope="scope">
85 109
              {{getDrugType(scope.row.drug_type)}}
86 110
            </template>
@@ -110,43 +134,51 @@
110 134
              {{getManufacturerList(scope.row.manufacturer)}}
111 135
            </template>
112 136
         </el-table-column>
137
+       <el-table-column prop="drug_name" label="仓库名称" align="center">
138
+           <template slot-scope="scope">
139
+            <tr style="background: none" v-for="(item,index) in scope.row.drug_warehouse" :key="index">
140
+              <td style="border-right: none; border-inline-end: none;text-align: center">
141
+                {{getHouseName(item.storehouse_id)}}
142
+              </td>
143
+            </tr>
144
+           </template>
145
+        </el-table-column>
113 146
         <el-table-column prop="drug_name" label="入库数量" align="center">
114 147
            <template slot-scope="scope">
115
-            <span v-if="getWarehoseInfo(scope.row.drug_warehouse_info)>0">
116
-              {{getWarehoseInfoOne(scope.row.drug_warehouse_info,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}}
117
-            </span>
148
+             <tr style="background: none" v-for="(item,index) in scope.row.drug_warehouse" :key="index">
149
+              <td style="border-right: none; border-inline-end: none;text-align: center">
150
+               {{getWarehoseInfoSeven(scope.row.drug_warehouse_info,scope.row.max_unit,scope.row.min_unit,scope.row.min_number,item.storehouse_id)}}
151
+              </td>
152
+            </tr>
118 153
            </template>
119 154
         </el-table-column>
120
-        <el-table-column prop="drug_name" label="出库数量" align="center" v-if="showOne">
155
+        <el-table-column prop="drug_name" label="出库数量" align="center">
121 156
            <template slot-scope="scope">
122
-              <span>
123
-                 {{getOutFlush(scope.row.drug_warehouse_info,scope.row.max_unit,scope.row.min_unit,scope.row.min_number,scope.row.drug_cancel_stock_info)}}
124
-              </span>
157
+            <tr style="background: none" v-for="(item,index) in scope.row.drug_warehouse" :key="index">
158
+              <td style="border-right: none; border-inline-end: none;text-align: center">
159
+              {{getOutFlushNight(scope.row.drug_warehouse_info,scope.row.max_unit,scope.row.min_unit,scope.row.min_number,scope.row.drug_cancel_stock_info,item.storehouse_id)}}
160
+              </td>
161
+            </tr>
125 162
            </template>
126 163
         </el-table-column>
127 164
 
128
-        <el-table-column prop="drug_name" label="出库数量" align="center" v-if="showTwo">
165
+        <el-table-column prop="drug_name" label="剩余库存量" align="center">
129 166
            <template slot-scope="scope">
130
-           
131
-             <span>{{getOutCount(scope.row.id)+getAutoCount(scope.row.id)}}{{scope.row.max_unit}}</span>
132
-             
167
+              <tr style="background: none" v-for="(item,index) in scope.row.drug_warehouse" :key="index">
168
+                <td style="border-right: none; border-inline-end: none;text-align: center">
169
+                {{getOverFlushInfoEight(scope.row.drug_warehouse_info,scope.row.max_unit,scope.row.min_unit,scope.row.min_number,item.storehouse_id,scope.row.storehouse_id)}}
170
+                </td>
171
+            </tr>
133 172
            </template>
134 173
         </el-table-column>
135
-        
136
-        <el-table-column prop="drug_name" label="剩余库存量" align="center" v-if="showThree">
174
+
175
+       <el-table-column prop="drug_name" label="总库存量" align="center" v-if="showThree">
137 176
            <template slot-scope="scope">
138 177
             <div v-if="getWarehoseInfo(scope.row.drug_warehouse_info)>0">
139 178
                 {{ getOverFlushInfo(scope.row.drug_warehouse_info,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)?getOverFlushInfo(scope.row.drug_warehouse_info,scope.row.max_unit,scope.row.min_unit,scope.row.min_number):0}}
140 179
             </div>
141 180
            </template>
142
-        </el-table-column>
143
-        <el-table-column prop="drug_name" label="剩余库存量" align="center" v-if="showFour">
144
-           <template slot-scope="scope">
145
-            <div v-if="getWarehoseInfo(scope.row.drug_warehouse_info) >0">
146
-               <span>{{getWarehoseInfo(scope.row.drug_warehouse_info) - getOutCount(scope.row.id) - getAutoCount(scope.row.id)}}{{scope.row.max_unit}} </span>         
147
-            </div>
148
-           </template>
149
-        </el-table-column>
181
+        </el-table-column> 
150 182
         <el-table-column prop="drug_name" label="操作" align="center" width="200px">
151 183
           <template slot-scope="scope">
152 184
             <el-button
@@ -213,10 +245,6 @@ import { min } from 'moment'
213 245
       var drugTypeList = getDictionaryDataConfig('system','drug_type')
214 246
       this.drugTypeList.push(...drugTypeList)
215 247
       this.org_id =  this.$store.getters.xt_user.org.id
216
-      console.log("机构ID",this.org_id)
217
-      // this.getDrugCountList()
218
-
219
-
220 248
     },
221 249
     components: {
222 250
       SettingDialog,
@@ -269,6 +297,11 @@ import { min } from 'moment'
269 297
         showTwo:false,
270 298
         showThree:true,
271 299
         showFour:false,
300
+        houseList:[],
301
+        medicalList:[],
302
+        storehouse_id:0,
303
+        drug_id:0,
304
+        storeList:[],
272 305
       }
273 306
     },
274 307
     methods: {
@@ -281,6 +314,8 @@ import { min } from 'moment'
281 314
           drug_type:this.drug_type,
282 315
           start_time:this.start_time,
283 316
           end_time:this.end_time,
317
+          drug_id:this.drug_id,
318
+          storehouse_id:this.storehouse_id,
284 319
         }
285 320
         getDrugStockList(params).then(response=>{
286 321
           if(response.data.state == 1){
@@ -305,12 +340,36 @@ import { min } from 'moment'
305 340
                  }
306 341
                }
307 342
              }
308
-             console.log("列表list232323323232323223",list)
309 343
              this.tableList = list
310 344
              var total = response.data.data.total
311 345
              this.total = total
312 346
              this.manufacturerList = response.data.data.manufacturerList
347
+             this.houseList = []
348
+             this.storeList = []
349
+             var obj = {
350
+               id:0,storehouse_name:"全部"
351
+             }
352
+             var objOne = {
353
+               id:0,drug_name:"全部"
354
+             }
313 355
 
356
+             this.storeList.push(obj)
357
+             for(let i=0;i<response.data.data.houseList.length;i++){
358
+               this.houseList.push(response.data.data.houseList[i])
359
+               this.storeList.push(response.data.data.houseList[i])
360
+             }
361
+             this.medicalList = []
362
+             this.medicalList.push(objOne)
363
+             for(let i=0;i<response.data.data.medicalList.length;i++){
364
+               for(let j=0;j<response.data.data.manufacturerList.length;j++){
365
+                if(response.data.data.medicalList[i].manufacturer == response.data.data.manufacturerList[j].id){
366
+                   response.data.data.medicalList[i].manufacturer = response.data.data.manufacturerList[j].manufacturer_name
367
+                }
368
+              }
369
+              response.data.data.medicalList[i].drug_name = response.data.data.medicalList[i].drug_name +response.data.data.medicalList[i].dose + response.data.data.medicalList[i].dose_unit + "*" + response.data.data.medicalList[i].min_number +  response.data.data.medicalList[i].min_unit+ "/"+ response.data.data.medicalList[i].max_unit +  " " +response.data.data.medicalList[i].manufacturer
370
+               this.medicalList.push(response.data.data.medicalList[i])
371
+             }
372
+             
314 373
            }
315 374
         })
316 375
       },
@@ -892,7 +951,126 @@ import { min } from 'moment'
892 951
            str_min =  over_count%min_number + min_unit
893 952
          }
894 953
        return str+str_min
954
+      },
955
+    getHouseName(id){
956
+      var storehouse_name = ""
957
+      for(let i=0;i<this.houseList.length;i++){
958
+        if(id == this.houseList[i].id){
959
+          storehouse_name = this.houseList[i].storehouse_name
960
+        }
895 961
       }
962
+      return storehouse_name
963
+     },
964
+     getWarehoseInfoSeven(arr,max_unit,min_unit,min_number,storehouse_id){
965
+        var total = 0
966
+        var max_str=  ""
967
+         var min_str = ""
968
+        if (arr.length > 0) {
969
+          for(let i=0;i<arr.length;i++){
970
+            if(arr[i].storehouse_id == storehouse_id){
971
+              total += parseInt(arr[i].warehousing_count)
972
+            } 
973
+          }
974
+        }
975
+        if (total < min_number){
976
+          min_str = total + min_unit
977
+        }
978
+        if (total == 0) {
979
+          min_str = ""
980
+          max_str = ""
981
+        }
982
+        if (total >=min_number) {
983
+           if(parseInt(total/min_number)!=0){
984
+              max_str = parseInt(total/min_number) + max_unit
985
+           }
986
+           if(total%min_number!=0){
987
+              min_str = total%min_number + min_unit
988
+           }
989
+
990
+        }
991
+        return max_str + min_str
992
+      },
993
+           
994
+      getOverFlushInfoEight(arr,max_unit,min_unit,min_number,storehouse_id){
995
+
996
+         var max_str=  ""
997
+         var min_str = ""
998
+         var total = 0
999
+         var newarr = arr
1000
+         if(newarr.length > 0 ){
1001
+           for(let i=0;i<newarr.length;i++){
1002
+            if(newarr[i].storehouse_id == storehouse_id){
1003
+              total += (newarr[i].stock_max_number+newarr[i].stock_min_number)
1004
+            }
1005
+           }
1006
+         }
1007
+         if (total < min_number){
1008
+           min_str = total + min_unit
1009
+         }
1010
+         if (total == 0) {
1011
+            min_str = ""
1012
+            max_str = ""
1013
+         }
1014
+         if (total >=min_number) {
1015
+           if(parseInt(total/min_number)!=0){
1016
+              max_str = parseInt(total/min_number) + max_unit
1017
+           }
1018
+           if(total%min_number!=0){
1019
+              min_str = total%min_number + min_unit
1020
+           }
1021
+
1022
+         }
1023
+        return max_str + min_str
1024
+      },
1025
+      getOutFlushNight(info,max_unit,min_unit,min_number,cancel_info,storehouse_id){
1026
+
1027
+        var str = ""
1028
+        var str_min = ""
1029
+        //总库存
1030
+        var total = 0
1031
+        var out_count = 0
1032
+        var over_count = 0
1033
+        var cancel_count = 0
1034
+        for(let i=0;i<info.length;i++){
1035
+          if(info[i].storehouse_id == storehouse_id){
1036
+            total += info[i].warehousing_count
1037
+          }
1038
+          
1039
+        }
1040
+        
1041
+        for(let j=0;j<info.length;j++){
1042
+          if(info[j].storehouse_id == storehouse_id){
1043
+            out_count += (info[j].stock_max_number + info[j].stock_min_number)
1044
+          }
1045
+          
1046
+        }
1047
+       
1048
+        // for(let z=0;z<cancel_info.length;z++){
1049
+        //    cancel_count += cancel_info[z].count
1050
+        // }
1051
+       // over_count = total - out_count + cancel_count
1052
+         over_count = total - out_count 
1053
+        if(parseInt(over_count/min_number)!=0){
1054
+            str = parseInt(over_count/min_number)+ max_unit
1055
+         }
1056
+         if(over_count%min_number !=0){
1057
+           str_min =  over_count%min_number + min_unit
1058
+         }
1059
+       return str+str_min
1060
+      },
1061
+      changeStorehouseName(){
1062
+        this.getlist()
1063
+     },
1064
+      changeDrugName(){
1065
+        this.getlist()
1066
+      },
1067
+     // 合并单元格样式
1068
+     cellStyle({ row, column, rowIndex, columnIndex }) {
1069
+      let arr = [6, 7, 8, 9];
1070
+      if (arr.indexOf(columnIndex) > -1) {
1071
+        return "spanClass";
1072
+      }
1073
+    },
896 1074
     }
897 1075
   }
898 1076
 </script>
@@ -950,4 +1128,25 @@ import { min } from 'moment'
950 1128
   .el-table::before {
951 1129
     background-color: #d0d3da;
952 1130
   }
1131
+
1132
+
1133
+/* 合并表格线样式 */
1134
+.spanClass .cell {
1135
+  padding: 0 !important;
1136
+}
1137
+
1138
+.spanClass .cell tr {
1139
+  display: inline-block;
1140
+  width: 100%;
1141
+}
1142
+
1143
+.spanClass .cell tr td {
1144
+  padding: 10px 0;
1145
+  border-bottom: 1px solid #ebeef5;
1146
+  display: block;
1147
+  width: 100%;
1148
+}
1149
+.spanClass .cell tr:last-of-type td{
1150
+  border-bottom: none;
1151
+}
953 1152
 </style>

+ 110 - 70
src/xt_pages/stock/inventory.vue Parādīt failu

@@ -1,6 +1,15 @@
1 1
 <template>
2 2
   <div>
3 3
     <div v-show="showSearch">
4
+      <label class="title"><span class="name">仓库</span> :</label>
5
+        <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px" @change="changeHouseList">
6
+            <el-option
7
+              v-for="(option, index) in houseList"
8
+              :key="index"
9
+              :label="option.storehouse_name"
10
+              :value="option.id">
11
+            </el-option>
12
+       </el-select>  
4 13
      <el-autocomplete
5 14
         class="checkSearch"
6 15
         popper-class="my-autocomplete"
@@ -62,6 +71,12 @@
62 71
                     {{scope.row.manufacturer_name}}
63 72
                   </template> 
64 73
               </el-table-column>
74
+
75
+             <el-table-column prop="name" label="仓库名称" width="100"  align="center">
76
+                  <template slot-scope="scope">
77
+                    {{getStorehouseName(scope.row.storehouse_id)}}
78
+                  </template> 
79
+              </el-table-column>
65 80
               <el-table-column prop="name" label="盘点前数量" width="120"  align="center">
66 81
                 <template slot-scope="scope">
67 82
                     <span><el-input style="width:80px" v-model="scope.row.stock_count" :disabled="true"></el-input>{{scope.row.max_unit}}</span> 
@@ -94,6 +109,15 @@
94 109
               </el-table-column>
95 110
           </el-table>
96 111
       </el-collapse-item>
112
+        <label class="title"><span class="name">仓库</span>:</label>
113
+          <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px" @change="changeHouseList">
114
+                <el-option
115
+                  v-for="(option, index) in houseList"
116
+                  :key="index"
117
+                  :label="option.storehouse_name"
118
+                  :value="option.id">
119
+                </el-option>
120
+          </el-select>
97 121
       <el-autocomplete
98 122
           class="checkSearch"
99 123
           popper-class="my-autocomplete"
@@ -160,6 +184,7 @@ export default {
160 184
                 product_date:"",
161 185
                 number:"",
162 186
                 proof_count:"",
187
+                storehouse_id:"",
163 188
             },
164 189
          manufacturerList:[],
165 190
          dealerList:[],
@@ -194,6 +219,8 @@ export default {
194 219
          inventory_total:0,
195 220
          WarehouseList:[],
196 221
          showTableOne:false,
222
+         houseList:[],
223
+         storehouse_id:"",
197 224
         }
198 225
     },
199 226
     methods:{
@@ -203,13 +230,14 @@ export default {
203 230
                 key = keyword
204 231
             }
205 232
             var params = {
206
-              keyword:key
233
+              keyword:key,
234
+              storehouse_id:this.storehouse_id,
207 235
             }
208 236
             postSearchGoodWarehouseList(params).then(response => {
209 237
             if (response.data.state == 1) {
210 238
             
211 239
                 var list = response.data.data.list
212
-                console.log("列表数据",list)
240
+              
213 241
                 this.goodList = list
214 242
                 var manufacturerList = response.data.data.manufacturerList
215 243
                 this.manufacturerList = manufacturerList
@@ -272,72 +300,76 @@ export default {
272 300
           this.page = val
273 301
           this.getlist()
274 302
         },
275
-    getlist(){
276
-      var params = {
277
-            keyword:this.searchKey,
278
-            start_time:this.start_time,
279
-            end_time:this.end_time,
280
-            inventory_status:this.inventory_status, 
281
-            page:this.page,
282
-            limit:this.limit,
283
-          }
284
-          console.log("我爱你中国parasm",params)
285
-        getInventoryList(params).then(response=>{
286
-            if(response.data.state ==1 ){
287
-            var list =  response.data.data.list
288
-            console.log("列表23232323232",list)
289
-            this.tableList = list
290
-            var total = response.data.data.total
291
-            this.total = total
292
-            this.doctorList =  response.data.data.doctorlist
303
+      changeHouseList(){
304
+        this.querySearchAsync()
305
+      },
306
+      getlist(){
307
+        var params = {
308
+              keyword:this.searchKey,
309
+              start_time:this.start_time,
310
+              end_time:this.end_time,
311
+              inventory_status:this.inventory_status, 
312
+              page:this.page,
313
+              limit:this.limit,
293 314
             }
294
-        })
315
+          getInventoryList(params).then(response=>{
316
+              if(response.data.state ==1 ){
317
+              var list =  response.data.data.list
318
+              this.tableList = list
319
+              var total = response.data.data.total
320
+              this.total = total
321
+              this.doctorList =  response.data.data.doctorlist
322
+              this.houseList = response.data.data.houseList
323
+              var houseConfig = response.data.data.houseConfig
324
+              this.storehouse_id = houseConfig.storehouse_out_info
325
+              }
326
+          })
327
+        },
328
+      getChecker(id){
329
+        var name = ""
330
+        for(let i=0;i<this.doctorList.length;i++){
331
+            if(id == this.doctorList[i].admin_user_id){
332
+              name = this.doctorList[i].user_name
333
+            }
334
+        }
335
+        return name
295 336
       },
296
-     getChecker(id){
297
-       var name = ""
298
-       for(let i=0;i<this.doctorList.length;i++){
299
-          if(id == this.doctorList[i].admin_user_id){
300
-             name = this.doctorList[i].user_name
301
-          }
302
-       }
303
-       return name
304
-     },
305
-    toCheck(){
306
-      if(this.ids.length <=0){
307
-         this.$message.error("请勾选核对数据")
308
-         return
309
-       }else{
310
-         this.checkDialogVisible = true
311
-       }
312
-     },
313
-    changePrice(val){  
314
-       var arr = []
337
+      toCheck(){
338
+        if(this.ids.length <=0){
339
+          this.$message.error("请勾选核对数据")
340
+          return
341
+        }else{
342
+          this.checkDialogVisible = true
343
+        }
344
+      },
345
+      changePrice(val){  
346
+        var arr = []
347
+        
348
+        for(let i=0;i<val.length;i++){
349
+          arr.push(val[i].id)
350
+        }
351
+        var str = arr.join(",")
315 352
       
316
-       for(let i=0;i<val.length;i++){
317
-         arr.push(val[i].id)
318
-       }
319
-      var str = arr.join(",")
320
-    
321
-      console.log("str",str)
322
-      this.ids = str
323 353
      
324
-     },
325
-     SaveCheckedInventory(){
326
-         var params = {
327
-            ids:this.ids,
328
-            check_time:this.getTime(this.check_time),
329
-            checker:this.checker,
330
-         }
331
-       console.log("params",params)
332
-       SaveCheckedInventory(params).then(response=>{
333
-         if(response.data.state == 1){
334
-           this.$message.success("保存成功")
335
-           var inventory = response.data.data.inventory
336
-           this.checkDialogVisible = false
337
-           this.getlist()
338
-         }
339
-       })
340
-     },
354
+        this.ids = str
355
+      
356
+      },
357
+      SaveCheckedInventory(){
358
+          var params = {
359
+              ids:this.ids,
360
+              check_time:this.getTime(this.check_time),
361
+              checker:this.checker,
362
+
363
+          }
364
+        SaveCheckedInventory(params).then(response=>{
365
+          if(response.data.state == 1){
366
+            this.$message.success("保存成功")
367
+            var inventory = response.data.data.inventory
368
+            this.checkDialogVisible = false
369
+            this.getlist()
370
+          }
371
+        })
372
+      },
341 373
       toDelete(index){
342 374
        this.tableData.splice(index,1)
343 375
      },
@@ -345,7 +377,7 @@ export default {
345 377
        getInventoryDetail(id).then(response=>{
346 378
           if(response.data.state == 1){
347 379
             var detail =  response.data.data.detail
348
-            console.log("detial",detail)
380
+         
349 381
             this.form.good_name = detail.good_name
350 382
             this.form.specification_name = detail.specification_name
351 383
             this.form.count = detail.count
@@ -415,6 +447,7 @@ export default {
415 447
     getGoodInventoryWarehouseList(id){
416 448
        var params = {
417 449
          id:id,
450
+         storehouse_id:this.storehouse_id,
418 451
        }
419 452
       getGoodInventoryWarehouseList(params).then(response=>{
420 453
          if(response.data.state == 1){
@@ -458,7 +491,7 @@ export default {
458 491
                 }
459 492
               }
460 493
             }
461
-          console.log("newList2333232323232",newList)
494
+        
462 495
           
463 496
           this.tableData = newList
464 497
           this.showSearch = false
@@ -497,7 +530,6 @@ export default {
497 530
       })
498 531
     },
499 532
     toMove(item,index){
500
-      console.log("index",item)
501 533
        this.$confirm('此操作将移除耗材整个批次, 是否继续?', '提示', {
502 534
           confirmButtonText: '确定',
503 535
           cancelButtonText: '取消',
@@ -542,10 +574,9 @@ export default {
542 574
         
543 575
       }
544 576
        var params = {
545
-         tableData:arr
577
+         tableData:arr,
578
+         storehouse_id:this.storehouse_id,
546 579
        }
547
-      console.log("params2323323",params)
548
-     
549 580
       saveStockInentoryList(params).then(response=>{
550 581
         if(response.data.state == 1){
551 582
            var inventory = response.data.data.inventory
@@ -554,6 +585,15 @@ export default {
554 585
            this.tableData = []
555 586
         }
556 587
       })
588
+    },
589
+    getStorehouseName(id){
590
+      var storehouse_name = ""
591
+      for(let i=0;i<this.houseList.length;i++){
592
+        if(id == this.houseList[i].id){
593
+          storehouse_name = this.houseList[i].storehouse_name
594
+        }
595
+      }
596
+      return storehouse_name
557 597
     }
558 598
    },
559 599
     created(){

+ 42 - 0
src/xt_pages/stock/inventoryDetails.vue Parādīt failu

@@ -2,6 +2,15 @@
2 2
     <div>
3 3
         <div style="display: flex;align-items: center;justify-content: space-between;margin-bottom:10px;">
4 4
             <div>
5
+             <label class="title"><span class="name">仓库</span> :</label>
6
+              <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px" @change="changeHouseList">
7
+                  <el-option
8
+                    v-for="(option, index) in houseList"
9
+                    :key="index"
10
+                    :label="option.storehouse_name"
11
+                    :value="option.id">
12
+                  </el-option>
13
+               </el-select>  
5 14
                 <el-input
6 15
                 size="small"
7 16
                 style="width: 200px;margin-left:10px;"
@@ -42,6 +51,12 @@
42 51
                  {{getTime(scope.row.product_date)}}
43 52
                </template>
44 53
             </el-table-column>
54
+
55
+           <el-table-column  prop="name" label="仓库名称" width="200" align="center">
56
+               <template slot-scope="scope">
57
+                 {{getStorehouseName(scope.row.storehouse_id)}}
58
+               </template>
59
+            </el-table-column>
45 60
            
46 61
             <el-table-column prop="name" label="盘点前数量" width="100" align="center">
47 62
               <template slot-scope="scope">
@@ -108,6 +123,8 @@ export default {
108 123
             page:1,
109 124
             ids:"",
110 125
             damageList:[],
126
+            storehouse_id:0,
127
+            houseList:[],
111 128
          }
112 129
     },
113 130
     methods:{
@@ -134,6 +151,7 @@ export default {
134 151
             keyword:this.searchKey,
135 152
             limit:this.limit,
136 153
             page:this.page,
154
+            storehouse_id:this.storehouse_id,
137 155
           }
138 156
           this.tableData = []
139 157
           getInventoryDetailList(params).then(response=>{
@@ -143,6 +161,13 @@ export default {
143 161
              
144 162
                this.tableData = list
145 163
                this.total = response.data.data.total
164
+               var obj = {id:0,storehouse_name:"全部"}
165
+               this.houseList = []
166
+               this.houseList.push(obj)
167
+               for(let i=0;i<response.data.data.houseList.length;i++){
168
+                 this.houseList.push(response.data.data.houseList[i])
169
+               }
170
+              
146 171
              }
147 172
           })
148 173
         },
@@ -188,6 +213,23 @@ export default {
188 213
        },
189 214
       inventoryExportList(){
190 215
         this.$router.push({path:'/stock/inventoryPrint'})
216
+      },
217
+      getStorehouseName(id){
218
+        var storehouse_name = ""
219
+        for(let i=0;i<this.houseList.length;i++){
220
+          if(id == this.houseList[i].id){
221
+            storehouse_name = this.houseList[i].storehouse_name
222
+          }
223
+        }
224
+        if(storehouse_name == "全部"){
225
+          return ""
226
+        }else{
227
+          return storehouse_name
228
+        }
229
+      },
230
+      changeHouseList(){
231
+        this.houseList = []
232
+        this.getlist()
191 233
       }
192 234
     },
193 235
     created(){

+ 492 - 76
src/xt_pages/stock/inventoryTransfer/Addtrans.vue Parādīt failu

@@ -3,11 +3,11 @@
3 3
     <div class="position">
4 4
       <bread-crumb :crumbs="crumbs"></bread-crumb>
5 5
       <div>
6
-        <el-button type="primary" @click="save">保存</el-button>
7
-        <el-button type="warning" @click="examine">审核</el-button>
6
+        <el-button type="primary" @click="submit" v-show="showButton">保存</el-button>
7
+        <el-button type="warning" @click="examine" v-show="showCheck">审核</el-button>
8 8
       </div>
9 9
     </div>
10
-    <div class="app-container">
10
+    <div class="app-container" v-loading="loading">
11 11
       <div
12 12
         style="
13 13
           justify-content: flex-start;
@@ -18,89 +18,153 @@
18 18
       >
19 19
         <el-form
20 20
           :inline="true"
21
-          :rules="rules"
22 21
           :model="formInline"
23 22
           class="demo-form-inline"
24 23
         >
25 24
           <el-form-item label="单据日期:">
26 25
             <el-date-picker
27
-              v-model="value1"
26
+              v-model="warehousing_time"
27
+              format="yyyy-MM-dd"
28
+               value-format="yyyy-MM-dd"
28 29
               type="date"
29 30
               placeholder="选择日期"
30 31
             ></el-date-picker>
31 32
           </el-form-item>
32
-          <el-form-item label="调出仓库:" prop="region">
33
-            <el-select v-model="formInline.region" placeholder="活动区域">
34
-              <el-option label="区域一" value="shanghai"></el-option>
35
-              <el-option label="区域二" value="beijing"></el-option>
36
-            </el-select>
33
+          <span><span style="color:red">*</span>调出仓库:</span>
34
+          <el-form-item  prop="storehouse_out_id">
35
+              <el-select size="small" v-model="storehouse_out_id" filterable placeholder="请选择调出仓库" @change="changeHouseList">
36
+                <el-option
37
+                  v-for="(option, index) in houseList"
38
+                  :key="index"
39
+                  :label="option.storehouse_name"
40
+                  :value="option.id">
41
+                </el-option>
42
+              </el-select>
37 43
           </el-form-item>
38
-          <el-form-item label="调入仓库:" prop="region">
39
-            <el-select v-model="formInline.region" placeholder="活动区域">
40
-              <el-option label="区域一" value="shanghai"></el-option>
41
-              <el-option label="区域二" value="beijing"></el-option>
42
-            </el-select>
44
+          <span><span style="color:red">*</span>调入仓库:</span>
45
+          <el-form-item prop="storehouse_in_id">
46
+            <el-select size="small" v-model="storehouse_in_id" filterable placeholder="请选择调入仓库">
47
+            <el-option
48
+              v-for="(option, index) in houseList"
49
+              :key="index"
50
+              :label="option.storehouse_name"
51
+              :value="option.id">
52
+            </el-option>
53
+           </el-select>
43 54
           </el-form-item>
44 55
         </el-form>
45 56
       </div>
57
+     <el-form :rules="tableRules" :model="recordInfo" ref="tableForm">
46 58
       <el-table
47 59
         :row-style="changColor"
48 60
         :header-cell-style="{
49 61
           backgroundColor: 'rgb(245, 247, 250)',
50 62
           color: '#606266',
51 63
         }"
52
-        :data="tableData"
53
-        :class="signAndWeighBoxPatients"
64
+        :data="recordInfo.recordData"
54 65
         border
66
+       
55 67
       >
56
-        >
57
-        <el-table-column label="单据编号" align="center">
58
-          <template slot-scope="scope">
59
-            <span>{{ scope.row.drug_name ? scope.row.drug_name : "" }}</span>
60
-          </template>
61
-        </el-table-column>
62
-        <el-table-column align="center">
63
-          <template slot="header" slot-scope="scope">
68
+      >
69
+    
70
+        <el-table-column align="center"  width="230">
71
+          <template slot="header" slot-scope="scope" >
64 72
             商品名称<span style="color:red;">*</span>
65 73
           </template>
66 74
           <template slot-scope="scope">
67
-        <span>{{ scope.row.Count ? scope.row.Count : "" }}</span>
68
-          </template>
69
-        </el-table-column>
70
-        <el-table-column label="商品类型" align="center">
71
-          <template slot-scope="scope">
72
-            <span>{{ scope.row.Count ? scope.row.Count : "" }}</span>
73
-          </template>
74
-        </el-table-column>
75
-        <el-table-column label="规格&&单位" align="center">
76
-          <template slot-scope="scope">
77
-            <span>{{ scope.row.outCount ? scope.row.outCount : "" }}</span>
75
+           <el-form-item
76
+                :prop="'recordData.' + scope.$index + '.name'"
77
+                :rules="tableRules.name"
78
+              >
79
+                <el-select
80
+                  @blur="selectGoodName"
81
+                  v-model="scope.row.name"
82
+                  style="width:200"
83
+                  filterable
84
+                  placeholder="请选择商品"
85
+                  @change="changeName"
86
+                  @input="changeGoodName(scope.$index)"
87
+                  :disabled="disabled"
88
+                >
89
+                  <el-option
90
+                    v-for="(item, index) in tabList"
91
+                    :key="index"
92
+                    :label="item.project_name"
93
+                    :value="item"
94
+                  >
95
+                  </el-option>
96
+                </el-select>
97
+              </el-form-item>
78 98
           </template>
79 99
         </el-table-column>
80
-        <el-table-column label="调拨数量" align="center">
81
-          <template slot-scope="scope">
82
-            <span>{{ scope.row.outCount ? scope.row.outCount : "" }}</span>
83
-          </template>
100
+        <el-table-column align="center"  width="200">
101
+          <template slot="header" slot-scope="scope">
102
+              <span>商品类型<span style="color: red">*</span></span>
103
+            </template>
104
+     
105
+            <template slot-scope="scope">
106
+              <el-form-item style="padding-top: 20px;">
107
+                <el-input v-model="scope.row.project_type" :disabled="true" style="width:180px"></el-input>
108
+              </el-form-item>
109
+            </template>
84 110
         </el-table-column>
85
-        <el-table-column label="库存总数" align="center">
86
-          <template slot-scope="scope">
87
-            <span>{{ scope.row.outCount ? scope.row.outCount : "" }}</span>
88
-          </template>
111
+        <el-table-column  align="center" width="250">
112
+         <template slot="header" slot-scope="scope" >
113
+              <span>规格<span style="color: red">*</span></span>
114
+            </template>
115
+            <template slot-scope="scope">
116
+
117
+              <el-form-item style="padding-top: 20px">
118
+                 <el-input v-model="scope.row.second_specification_name" style="width:200px" :disabled="true"></el-input>
119
+              </el-form-item>
120
+
121
+            </template>
89 122
         </el-table-column>
90
-        <el-table-column label="制单人" align="center">
91
-          <template slot-scope="scope">
92
-            <span>{{ scope.row.outCount ? scope.row.outCount : "" }}</span>
93
-          </template>
123
+        <el-table-column  align="center" width="250">
124
+             <template slot="header" slot-scope="scope">
125
+              <span>调拨数量<span style="color: red">*</span></span>
126
+            </template>
127
+            <template slot-scope="scope">
128
+              <el-form-item style="padding-top: 20px" :prop="'recordData.' + scope.$index + '.count'"
129
+                            :rules='tableRules.count' >
130
+                <el-input v-model="scope.row.count" style="width:100px"  @input="selectCount(scope.row.project_id,scope.row.sencond_unit,scope.row.is_source,scope.row.count,scope.$index)"></el-input>
131
+                <el-select
132
+                  v-model="scope.row.sencond_unit"
133
+                  style="width: 100px"
134
+                  filterable
135
+                  placeholder="请选择"
136
+                  :disabled="disabled"
137
+                 
138
+                >
139
+                  <el-option
140
+                    v-for="(item, index) in scope.row.unitList"
141
+                    :key="index"
142
+                    :label="item.name"
143
+                    :value="item.name"
144
+                  >
145
+                  </el-option>
146
+                </el-select>
147
+              </el-form-item>
148
+            </template>
94 149
         </el-table-column>
95
-        <el-table-column label="备注" align="center">
150
+        <el-table-column label="库存总数" align="center" width="200">
151
+           <template slot="header" slot-scope="scope">
152
+              <span>库存总数<span style="color: red">*</span></span>
153
+            </template>
154
+            <template slot-scope="scope">
155
+              <el-form-item  style="padding-top: 20px">
156
+                <el-input v-model="scope.row.second_total" style="width:150px" :disabled="true"></el-input>
157
+              </el-form-item>
158
+            </template>
159
+         </el-table-column>
160
+      
161
+        <el-table-column label="备注" align="center" width="200">
96 162
           <template slot-scope="scope">
97
-            <span>{{ scope.row.outCount ? scope.row.outCount : "" }}</span>
163
+            <el-input v-model="scope.row.remake" style="width:160px"></el-input>
98 164
           </template>
99 165
         </el-table-column>
100 166
 
101
-
102
-
103
-        <el-table-column label="操作" align="center" width="260px">
167
+        <el-table-column label="操作" align="center" width="190px">
104 168
           <template slot-scope="scope">
105 169
             <el-tooltip class="item" content="新增" placement="top-start">
106 170
               <el-button
@@ -117,31 +181,22 @@
117 181
                 icon="el-icon-delete"
118 182
                 size="small"
119 183
                 type="danger"
120
-                @click="toDelete(scope.row, scope.row.$index)"
184
+                @click="toDelete(scope.row, scope.$index)"
121 185
               >
122 186
               </el-button>
123 187
             </el-tooltip>
124 188
           </template>
125 189
         </el-table-column>
126 190
       </el-table>
127
-      <el-pagination
128
-        @size-change="handleSizeChange"
129
-        @current-change="handleCurrentChange"
130
-        :page-sizes="[10, 50, 100, 200, 500, 1000]"
131
-        :page-size="10"
132
-        background
133
-        align="right"
134
-        style="margin-top: 20px"
135
-        layout="total, sizes, prev, pager, next, jumper"
136
-        :total="total"
137
-      >
138
-      </el-pagination>
191
+    </el-form>
139 192
     </div>
140 193
   </div>
141 194
 </template>
142 195
 
143 196
 <script>
144 197
 import BreadCrumb from "@/xt_pages/components/bread-crumb";
198
+import { uParseTime } from '@/utils/tools'
199
+import {getSencondeGoodList,saveSencondOrder,checkSecondOrder,getStoreHouseGoodList,getSumSecondeCount} from '@/api/seconde'
145 200
 export default {
146 201
   components: {
147 202
     BreadCrumb,
@@ -161,11 +216,36 @@ export default {
161 216
         user: "",
162 217
         region: "",
163 218
       },
164
-      rules: {
165
-        region: [
166
-          { required: true, message: "请选择活动区域", trigger: "change" },
167
-        ],
168
-      },
219
+      currentIndex: 0,
220
+      tableRules: {
221
+          name: [
222
+            { required: true, message: '商品名称不能为空', trigger: 'blur' }
223
+          ],
224
+          count: [
225
+            { required: true, message: '调拨数量不能为空', trigger: 'blur' }
226
+          ],
227
+        },
228
+        goodType: [],
229
+        manufacturerList:[],
230
+        goodList:[],
231
+        loading:false,
232
+        list:[],
233
+        configlist:{},
234
+        recordInfo: {
235
+          recordData: [],
236
+        },
237
+        drugList:[],
238
+        goodTypeList:[],
239
+        drugTypeList:[],
240
+        houseList:[],
241
+        tabList:[],
242
+        disabled:false,
243
+        storehouse_out_id:"",
244
+        storehouse_in_id:"",
245
+        loading:false,
246
+        warehousing_time:"",
247
+        showButton:true,
248
+        showCheck:false,
169 249
     };
170 250
   },
171 251
 
@@ -177,16 +257,69 @@ export default {
177 257
     approval() {},
178 258
 
179 259
     // 审核
180
-    examine() {},
260
+    examine() {
261
+      this.loading = true
262
+      var array = []
263
+      array.push(this.id)
264
+      var ids = array.join(",")
265
+    
266
+      checkSecondOrder(ids).then(response=>{
267
+        if(response.data.state == 1){
268
+          var msg = response.data.data.msg
269
+          this.loading = false
270
+          if(msg == 1){
271
+            this.$message.success("审核成功!")
272
+            this.$router.push({path:"/stock/inventoryTransfer"})
273
+          }
274
+          if(msg == 2){
275
+            var good_name = response.data.data.good_name
276
+            var specification_name = response.data.data.specification_name
277
+            var storehose_name = response.data.data.storehose_name
181 278
 
182
-    // 保存
183
-    save() {},
279
+            this.$message.error(storehose_name + " "+good_name+"*"+specification_name+"库存不足,无法调拨,请修改调拨数量!")
280
+          }
281
+          if(msg == 3){
282
+            var drug_name =  response.data.data.drug_name
283
+            var dose = response.data.data.dose
284
+            var dose_unit = response.data.data.dose_unit
285
+            var min_number = response.data.data.min_number
286
+            var min_unit =  response.data.data.min_unit
287
+            var max_unit =  response.data.data.max_unit
288
+            var str = drug_name + " " + dose + dose_unit + "*" + min_number + min_unit+"/"+max_unit
289
+            var storehose_name = response.data.data.storehose_name
290
+            this.$message.error(storehose_name +" "+str +"库存不足,无法调拨,请修改调拨数量!")
184 291
 
292
+          }
293
+
294
+        }
295
+      })
296
+    },
185 297
     // 表单添加
186
-    toAdd() {},
298
+    toAdd() {
299
+      const tempObj = {}
300
+      tempObj["name"] = "";
301
+      tempObj['project_name'] = ""
302
+      tempObj['project_type'] = ""
303
+      tempObj['second_specification_name'] = ''
304
+      tempObj['sencond_unit'] = ''
305
+      tempObj['count'] = ''
306
+      tempObj['second_total'] = ''
307
+      tempObj["is_source"] = 0
308
+      tempObj["remake"] = ''
309
+      tempObj["project_id"] = 0
310
+      tempObj["min_price"] = 0
311
+      this.recordInfo.recordData.push(tempObj)
312
+    },
187 313
 
188 314
     // 删除
189
-    toDelete() {},
315
+    toDelete(row,index) {
316
+      if (this.recordInfo.recordData.length <= 1) {
317
+        this.$message.error('只有一条记录的时候无法删除')
318
+        return
319
+      } else {
320
+        this.recordInfo.recordData.splice(index, 1)
321
+      }
322
+    },
190 323
 
191 324
     // 详情查看
192 325
     toDetails() {},
@@ -218,7 +351,290 @@ export default {
218 351
         };
219 352
       }
220 353
     },
354
+    //获取基本数据信息
355
+    getlist(){
356
+      getSencondeGoodList().then(response=>{
357
+        if(response.data.state == 1){
358
+
359
+          var houseList =  response.data.data.houseList
360
+          this.houseList = houseList
361
+        }
362
+      })
363
+    },
364
+    getTime(val, temp) {
365
+      if (val != 0) {
366
+        return uParseTime(val, temp)
367
+      } else {
368
+        return ''
369
+      }
370
+    },
371
+    submit() { 
372
+      this.loading = true
373
+      const loading = this.$loading({
374
+        lock: true,
375
+        text: 'Loading',
376
+        spinner: 'el-icon-loading',
377
+        background: 'rgba(0, 0, 0, 0.7)'
378
+      })
379
+      if(this.storehouse_out_id <=0){
380
+        this.$message.error("调出仓库不能为空!")
381
+        this.loading = false
382
+        loading.close()
383
+        return
384
+      }
385
+      if(this.storehouse_in_id <=0){
386
+        this.$message.error("调入仓库不能为空!")
387
+        this.loading = false
388
+        loading.close()
389
+        return
390
+      }
391
+      this.$refs['tableForm'].validate((valid) => {
392
+        if(valid) {
393
+          const array = this.recordInfo.recordData
394
+        
395
+          for (let i = 0; i < array.length; i++) {
396
+            array[i].count = parseInt(array[i].count)
397
+            array[i].second_total = array[i].second_total.toString()
398
+          }
399
+          const params = {
400
+            'stockIn': this.recordInfo.recordData
401
+          }
402
+          var storehouse_in_id = parseInt(this.storehouse_in_id)
403
+          var storehouse_out_id = parseInt(this.storehouse_out_id)
404
+         
405
+          var warehouse_time = this.warehousing_time
406
+          
407
+          console.log("@3232332323232",warehouse_time)
408
+         
409
+          saveSencondOrder(params,warehouse_time,storehouse_in_id,storehouse_out_id).then(response => {
410
+            if (response.data.state == 1) {
411
+              this.showCheck = true
412
+              this.showButton = false
413
+              var warehousingInfo = response.data.data.warehousingInfo   
414
+              this.$message.success('保存成功')
415
+              this.loading = false 
416
+              loading.close()
417
+              this.id = response.data.data.id
418
+            } else {
419
+              this.$message.error("保存失败")
420
+              loading.close()
421
+            }
422
+          })
423
+        } else {
424
+          return false
425
+        }
426
+      })
427
+    },
428
+    changeGoodName(val) {
429
+      this.currentIndex = val;
430
+    },
431
+    selectGoodName(val){
432
+      if(this.storehouse_out_id == ""){
433
+        this.$message.error("请先选择调出仓库!")
434
+        return
435
+      }
436
+    },
437
+    changeName(val) {
438
+      for (let i = 0; i < this.recordInfo.recordData.length; i++) {
439
+        if (this.currentIndex == i) {
440
+          this.recordInfo.recordData[i].project_id = val.id;
441
+          this.recordInfo.recordData[i].is_source = val.is_source;
442
+          this.recordInfo.recordData[i].name = val.name;
443
+          this.recordInfo.recordData[i].project_name = val.project_name;
444
+          this.recordInfo.recordData[i].project_type = val.project_type;
445
+          this.recordInfo.recordData[i].second_specification_name = val.second_specification_name;
446
+          this.recordInfo.recordData[i].second_total = val.second_total;
447
+          this.recordInfo.recordData[i].sencond_unit = val.sencond_unit
448
+          this.recordInfo.recordData[i].min_price = val.min_price
449
+          if (val.count == NaN) {
450
+            this.recordInfo.recordData[i].count = "";
451
+          } else {
452
+            this.recordInfo.recordData[i].count = val.count? val.count : "";
453
+          }
454
+          this.recordInfo.recordData[i].unitList = val.unitList;
455
+        }
456
+      }
457
+    },
458
+    getWarehoseInfo(arr, max_unit, min_unit, min_number) {
459
+        var total = 0;
460
+        var max_str = "";
461
+        var min_str = "";
462
+        if (arr.length > 0) {
463
+            for (let i = 0; i < arr.length; i++) {
464
+            total += parseInt(arr[i].stock_max_number + arr[i].stock_min_number);
465
+            }
466
+        }
467
+        if (total < min_number) {
468
+            min_str = total + min_unit;
469
+        }
470
+        if (total == 0) {
471
+            min_str = "";
472
+            max_str = "";
473
+        }
474
+        if (total >= min_number) {
475
+            if (parseInt(total / min_number) != 0) {
476
+            max_str = parseInt(total / min_number) + max_unit;
477
+            }
478
+            if (total % min_number != 0) {
479
+            min_str = (total % min_number) + min_unit;
480
+            }
481
+        }
482
+        return max_str + min_str;
483
+      },
484
+      getTotalStockCount(arr) {
485
+        var total_count = 0;
486
+        for (let i = 0; i < arr.length; i++) {
487
+            total_count += arr[i].stock_count;
488
+        }
489
+        return total_count;
490
+      },
491
+      changeHouseList(){
492
+         var params = {
493
+           storehouse_out_id:this.storehouse_out_id,
494
+         }
495
+         this.tabList = []
496
+        getStoreHouseGoodList(params).then(response=>{
497
+          var drugList = response.data.data.drugList
498
+          this.drugList= drugList
499
+          var goodList = response.data.data.goodList
500
+          this.goodList = goodList
501
+          var manufactuerList = response.data.data.manufacturerList
502
+        
503
+          var goodTypeList = response.data.data.goodTypeList
504
+          this.goodTypeList = goodTypeList
505
+          var drugTypeList = response.data.data.drugTypeList
506
+          this.drugTypeList = drugTypeList
507
+         
508
+          for(let i=0;i<drugList.length;i++){
509
+            for (let j = 0; j < manufactuerList.length; j++) {
510
+              if (drugList[i].manufacturer == manufactuerList[j].id) {
511
+                drugList[i].manufacturer = manufactuerList[j].manufacturer_name;
512
+              }
513
+            }
514
+            for (let z = 0; z < drugList[i].drug_warehouse_info.length; z++) {
515
+              if (drugList[i].max_unit ==drugList[i].drug_warehouse_info[z].max_unit) {
516
+                  drugList[i].drug_warehouse_info[z].stock_max_number = drugList[i].drug_warehouse_info[z].stock_max_number *drugList[i].min_number;
517
+              }
518
+              }
519
+              for (let y = 0; y < this.drugTypeList.length; y++) {
520
+                if (drugList[i].drug_type == this.drugTypeList[y].value) {
521
+                    drugList[i].drug_type = this.drugTypeList[y].name;
522
+                  }
523
+              }
524
+              drugList[i].name = drugList[i].drug_name
525
+              drugList[i].project_name =drugList[i].drug_name + " " +drugList[i].dose + drugList[i].dose_unit + "*" +drugList[i].min_number +drugList[i].min_unit + "/" + drugList[i].max_unit + " " +drugList[i].manufacturer;
526
+              drugList[i].project_type = drugList[i].drug_type;
527
+              drugList[i].second_specification_name = drugList[i].dose + drugList[i].dose_unit +"*" + drugList[i].min_number +drugList[i].min_unit +"/" + drugList[i].max_unit;
528
+              drugList[i].second_total = this.getWarehoseInfo(drugList[i].drug_warehouse_info,drugList[i].max_unit,drugList[i].min_unit,drugList[i].min_number);
529
+              drugList[i].is_source = 1
530
+              drugList[i].count = ""
531
+              drugList[i].remake = ""
532
+              drugList[i].min_price = drugList[i].min_price
533
+            if (drugList[i].max_unit != drugList[i].min_unit) {
534
+              drugList[i].unitList = [
535
+                  { id: 1, name: "" },
536
+                  { id: 2, name: "" },
537
+              ];
538
+            }
539
+          if (drugList[i].max_unit == drugList[i].min_unit) {
540
+              drugList[i].unitList = [{ id: 1, name: "" }];
541
+          }
542
+
543
+          drugList[i].sencond_unit = drugList[i].max_unit;
544
+          for (let j = 0; j < drugList[i].unitList.length; j++) {
545
+            if (drugList[i].max_unit != drugList[i].min_unit) {
546
+              drugList[i].unitList[0].name = drugList[i].max_unit;
547
+              drugList[i].unitList[1].name = drugList[i].min_unit;
548
+            }
549
+            if (drugList[i].max_unit == drugList[i].min_unit) {
550
+              drugList[i].unitList[0].name = drugList[i].max_unit;
551
+            }
552
+          }
553
+          this.tabList.push(drugList[i]);
554
+          }
555
+
556
+        for (let i = 0; i < goodList.length; i++) {
557
+          for (let j = 0; j < manufactuerList.length; j++) {
558
+            if (goodList[i].manufacturer == manufactuerList[j].id) {
559
+                goodList[i].manufacturer = manufactuerList[j].manufacturer_name;
560
+            }
561
+          }
562
+          for (let y = 0; y < this.goodTypeList.length; y++) {
563
+            if (goodList[i].good_type_id == this.goodTypeList[y].id) {
564
+              goodList[i].good_type_id = this.goodTypeList[y].type_name;
565
+            }
566
+          }
567
+          goodList[i].name = goodList[i].good_name
568
+          goodList[i].project_name = goodList[i].good_name + " " + goodList[i].specification_name + " " + goodList[i].manufacturer;
569
+          goodList[i].project_type = goodList[i].good_type_id;
570
+          goodList[i].second_specification_name = goodList[i].specification_name;
571
+          goodList[i].second_total = this.getTotalStockCount(
572
+            goodList[i].good_warehouse_info
573
+          );
574
+          goodList[i].count = ""
575
+          goodList[i].is_source = 2;
576
+          goodList[i].name = goodList[i].good_name;
577
+          goodList[i].unitList = [{ id: 1, name: "" }];
578
+          goodList[i].sencond_unit = goodList[i].packing_unit;
579
+          goodList[i].remake = ""
580
+          goodList[i].min_price = goodList[i].retail_price
581
+          for (let j = 0; j < goodList[i].unitList.length; j++) {
582
+            goodList[i].unitList[0].name = goodList[i].packing_unit;
583
+          }
584
+          this.tabList.push(goodList[i]);
585
+        }
586
+       })
587
+      },
588
+     selectCount(project_id,sencond_unit,is_source,count,index){
589
+      var params = {
590
+        project_id:project_id,
591
+        sencond_unit:sencond_unit,
592
+        is_source:parseInt(is_source),
593
+        count:parseInt(count),
594
+        storehouse_out_id:this.storehouse_out_id
595
+      }
596
+      getSumSecondeCount(params).then(response=>{
597
+         if(response.data.state == 1){
598
+           var msg = response.data.data.msg
599
+           if(msg == 2){
600
+             this.$message.error("调拨数量不能大于库存总量!")
601
+             for(let i=0;i<this.recordInfo.recordData.length;i++){
602
+               if(index == i){
603
+                 this.recordInfo.recordData[i].count = ""
604
+               }
605
+             }
606
+           }
607
+         }
608
+      })
609
+
610
+    }
221 611
   },
612
+  created(){
613
+    var nowDate = new Date()
614
+    var nowYear = nowDate.getFullYear()
615
+    var nowMonth = nowDate.getMonth() + 1
616
+    var nowDay = nowDate.getDate()
617
+    this.warehousing_time =
618
+      nowYear +
619
+      '-' +
620
+      (nowMonth < 10 ? '0' + nowMonth : nowMonth) +
621
+      '-' +
622
+      (nowDay < 10 ? '0' + nowDay : nowDay)
623
+    const tempObj = {}
624
+    tempObj["name"] = "";
625
+    tempObj['project_name'] = ""
626
+    tempObj['project_type'] = ""
627
+    tempObj['second_specification_name'] = ''
628
+    tempObj['sencond_unit'] = ''
629
+    tempObj['count'] = ''
630
+    tempObj['second_total'] = ''
631
+    tempObj["remake"] = ''
632
+    tempObj["is_source"] = 0
633
+    tempObj["project_id"] = 0
634
+    tempObj["min_price"] = 0
635
+    this.recordInfo.recordData.push(tempObj)
636
+    this.getlist()  
637
+  }
222 638
 };
223 639
 </script>
224 640
 

+ 300 - 38
src/xt_pages/stock/inventoryTransfer/index.vue Parādīt failu

@@ -18,25 +18,51 @@
18 18
         "
19 19
       >
20 20
         <div>
21
-          <el-input
22
-            size="small"
23
-            style="width: 200px; margin-left: 10px"
24
-            class="filter-item"
25
-            v-model.trim="keywords"
26
-          />
27
-          <el-button
21
+          <!-- <el-button
28 22
             size="small"
29 23
             class="filter-item"
30 24
             type="primary"
31 25
             icon="el-icon-search"
32 26
             @click="search"
33 27
             >查看</el-button
34
-          >
28
+          > -->
35 29
         </div>
36 30
         <div>
37 31
           单据日期:
38
-          <el-date-picker v-model="value1" type="date" placeholder="选择日期">
39
-          </el-date-picker>
32
+          <el-date-picker
33
+            size="small"
34
+            v-model="start_time"
35
+            prefix-icon="el-icon-date"
36
+            :editable="false"
37
+            style="width: 196px"
38
+            type="date"
39
+            placeholder="选择日期时间"
40
+            align="right"
41
+            format="yyyy-MM-dd"
42
+            value-format="yyyy-MM-dd"
43
+            @change="startTimeChange"
44
+          ></el-date-picker
45
+          >-
46
+          <el-date-picker
47
+            size="small"
48
+            v-model="end_time"
49
+            prefix-icon="el-icon-date"
50
+            :editable="false"
51
+            style="width: 196px"
52
+            type="date"
53
+            placeholder="选择日期时间"
54
+            align="right"
55
+            format="yyyy-MM-dd"
56
+            value-format="yyyy-MM-dd"
57
+            @change="endTimeChange"
58
+          ></el-date-picker>
59
+          <el-input
60
+            size="small"
61
+            style="width: 200px; margin-left: 10px"
62
+            class="filter-item"
63
+            placeholder="请输入单据编号,仓库名称"
64
+            v-model.trim="keywords"
65
+          />
40 66
           <el-button
41 67
             size="small"
42 68
             class="filter-item"
@@ -60,42 +86,38 @@
60 86
         <el-table-column type="selection" width="55"> </el-table-column>
61 87
         <el-table-column label="单据编号" align="center">
62 88
           <template slot-scope="scope">
63
-            <span>{{ scope.row.drug_name ? scope.row.drug_name : "" }}</span>
89
+            <span>{{scope.row.second_order_number}}</span>
64 90
           </template>
65 91
         </el-table-column>
66 92
         <el-table-column label="单据日期" align="center">
67 93
           <template slot-scope="scope">
68
-            <span>{{ scope.row.drug_spec ? scope.row.drug_spec : "" }}</span>
69
-          </template>
70
-        </el-table-column>
71
-        <el-table-column label="商品名称" align="center">
72
-          <template slot-scope="scope">
73
-            <span>{{ scope.row.Count ? scope.row.Count : "" }}</span>
94
+             {{getTime(scope.row.record_date)}}
74 95
           </template>
75 96
         </el-table-column>
97
+      
76 98
         <el-table-column label="调出仓库" align="center">
77 99
           <template slot-scope="scope">
78
-            <span>{{ scope.row.Count ? scope.row.Count : "" }}</span>
100
+             {{getHouseName(scope.row.storehouse_out_id)}}
79 101
           </template>
80 102
         </el-table-column>
81 103
         <el-table-column label="调入仓库" align="center">
82 104
           <template slot-scope="scope">
83
-            <span>{{ scope.row.outCount ? scope.row.outCount : "" }}</span>
105
+            {{getHouseName(scope.row.storehouse_in_id)}}
84 106
           </template>
85 107
         </el-table-column>
86 108
         <el-table-column label="制单人" align="center">
87 109
           <template slot-scope="scope">
88
-            <span>{{ scope.row.outCount ? scope.row.outCount : "" }}</span>
110
+            {{getDocName(scope.row.creater)}}
89 111
           </template>
90 112
         </el-table-column>
91 113
         <el-table-column label="审核人" align="center">
92 114
           <template slot-scope="scope">
93
-            <span>{{ scope.row.outCount ? scope.row.outCount : "" }}</span>
115
+           {{getDocName(scope.row.checker)}}
94 116
           </template>
95 117
         </el-table-column>
96 118
         <el-table-column label="审核时间" align="center">
97 119
           <template slot-scope="scope">
98
-            <span>{{ scope.row.outCount ? scope.row.outCount : "" }}</span>
120
+            {{getTime(scope.row.check_time)}}
99 121
           </template>
100 122
         </el-table-column>
101 123
         <el-table-column label="操作" align="center" width="260px">
@@ -114,7 +136,7 @@
114 136
                 icon="el-icon-delete"
115 137
                 size="small"
116 138
                 type="danger"
117
-                @click="toDelete(scope.row, scope.row.$index)"
139
+                @click="toDelete(scope.row, scope.$index)"
118 140
               >
119 141
               </el-button>
120 142
             </el-tooltip>
@@ -150,6 +172,8 @@
150 172
 
151 173
 <script>
152 174
 import BreadCrumb from "@/xt_pages/components/bread-crumb";
175
+import {getAllSecondOrderList,checkSecondOrder,deleteStoreHouseList,returnCheckSecondOrder} from "@/api/seconde";
176
+import { uParseTime } from "@/utils/tools";
153 177
 export default {
154 178
   components: {
155 179
     BreadCrumb,
@@ -164,44 +188,200 @@ export default {
164 188
       total: 0,
165 189
       page: 1,
166 190
       limit: 10,
167
-      tableData: [{}, {}],
191
+      tableData: [],
192
+      keywords:"",
193
+      start_time:"",
194
+      end_time:"",
195
+      supplyList: [],
196
+      check_id: 0,
197
+      doctorList: [],
198
+      houseList:[],
199
+      check_id:0,
200
+      ids:"",
201
+      array:[],
202
+      checkArray:[],
203
+      returnArray:[],
168 204
     };
169 205
   },
170 206
 
171 207
   methods: {
172
-    // 初始化数据
173
-    init() {},
174
-
208
+   
175 209
     // 反审核
176
-    approval() {},
210
+    approval() {
211
+      if(this.array.length<=0){
212
+       this.$message.error("请勾选需要反审核的订单!")
213
+       return
214
+      }
215
+      if(this.returnArray.length >0){
216
+        this.$message.error("不能勾选未审核的单据!")
217
+        return
218
+      }
219
+      var ids = this.array.join(",")
220
+      returnCheckSecondOrder(ids).then(response=>{
221
+         if(response.data.state == 1){
222
+          var msg = response.data.data.msg
223
+          if(msg == 0){
224
+            this.$message.success("反审核失败!")
225
+            this.getlist()
226
+          }
227
+          if(msg == 1){
228
+            this.$message.success("反审核成功!")
229
+            this.getlist()
230
+          }
231
+          if(msg == 2){
232
+            var good_name = response.data.data.good_name
233
+            var specification_name = response.data.data.specification_name
234
+            var storehose_name = response.data.data.storehose_name
235
+
236
+            this.$message.error(storehose_name + " "+good_name+"*"+specification_name+"已有出库数据不能反审核")
237
+          }
238
+          if(msg == 3){
239
+            var drug_name =  response.data.data.drug_name
240
+            var dose = response.data.data.dose
241
+            var dose_unit = response.data.data.dose_unit
242
+            var min_number = response.data.data.min_number
243
+            var min_unit =  response.data.data.min_unit
244
+            var max_unit =  response.data.data.max_unit
245
+            var str = drug_name + " " + dose + dose_unit + "*" + min_number + min_unit+"/"+max_unit
246
+            var storehose_name = response.data.data.storehose_name
247
+            this.$message.error(storehose_name +" "+str +"已有出库数据不能反审核!")
248
+
249
+          }
250
+         }
251
+      })
252
+
253
+    },
177 254
 
178 255
     // 审核
179
-    examine() {},
256
+    examine() {
257
+      if(this.checkArray.length >0){
258
+       this.$message.error("不能勾选已审核的单据!")
259
+       return
260
+      }
261
+
262
+      if(this.array.length <=0){
263
+       this.$message.error("请勾选需要审核的订单!")
264
+       return
265
+      }
266
+      var ids = this.array.join(",")
267
+      checkSecondOrder(ids).then(response=>{
268
+        if(response.data.state == 1){
269
+          var msg = response.data.data.msg
270
+         
271
+          if(msg == 1){
272
+            this.$message.success("审核成功!")
273
+            this.getlist()
274
+          }
275
+          if(msg == 2){
276
+            var good_name = response.data.data.good_name
277
+            var specification_name = response.data.data.specification_name
278
+            var storehose_name = response.data.data.storehose_name
279
+
280
+            this.$message.error("审核失败" + " "+storehose_name + " "+good_name+"*"+specification_name+"库存不足,无法调拨,请修改调拨数量!")
281
+          }
282
+          if(msg == 3){
283
+            var drug_name =  response.data.data.drug_name
284
+            var dose = response.data.data.dose
285
+            var dose_unit = response.data.data.dose_unit
286
+            var min_number = response.data.data.min_number
287
+            var min_unit =  response.data.data.min_unit
288
+            var max_unit =  response.data.data.max_unit
289
+            var str = drug_name + " " + dose + dose_unit + "*" + min_number + min_unit+"/"+max_unit
290
+            var storehose_name = response.data.data.storehose_name
291
+            this.$message.error("审核失败" + " " + storehose_name +" "+str +"库存不足,无法调拨,请修改调拨数量!")
292
+
293
+          }
294
+
295
+        }
296
+      })
297
+    },
180 298
 
181 299
     // 添加
182 300
     Add() {
183
-        this.$router.push({path:"/stock/inventoryTransfer/Addtrans"})
301
+      this.$router.push({path:"/stock/inventoryTransfer/Addtrans"})
184 302
     },
185 303
 
186 304
     // 删除
187
-    toDelete() {},
305
+    toDelete(row,index) {
306
+      if(row.is_check == 1){
307
+        this.$message.error("已审核数据不能删除!")
308
+        return 
309
+      }
310
+      this.$confirm("确认删除库存调拨单记录?", "删除库存调拨单记录", {
311
+        confirmButtonText: "确定",
312
+        cancelButtonText: "取消", 
313
+        type: "warning"
314
+      }).then(() => {
315
+          deleteStoreHouseList(row.id).then(response => {
316
+            if (response.data.state == 0) {
317
+              this.$message.error(response.data.msg);
318
+              return false;
319
+            } else {
320
+              this.$notify({
321
+                title: "成功",
322
+                message: "删除成功",
323
+                type: "success",
324
+                duration: 2000
325
+              });
326
+              this.tableData.splice(index,1)
327
+            }
328
+          });
329
+        }).catch(() => {});
330
+    },
188 331
 
189 332
     // 详情查看
190
-    toDetails() {
191
-        this.$router.push({path:"/stock/inventoryTransfer/transDetails"})
333
+    toDetails(row) {
334
+        this.$router.push({path:"/stock/inventoryTransfer/transDetails?id="+row.id})
335
+    },
336
+    changeTypeName() {
337
+      this.getlist();
338
+    },
339
+    startTimeChange() {
340
+      
341
+      this.getlist();
342
+    },
343
+    endTimeChange() {
344
+     
345
+      this.getlist();
346
+    },
347
+    search() {
348
+      this.getlist();
349
+    },
350
+    getTimes(time) {
351
+      if (time === "") {
352
+        return "";
353
+      }
354
+      return uParseTime(time, "{y}-{m}-{d}");
192 355
     },
193
-
194 356
     // 表单全选
195
-    handleSelectionChange() {},
196
-
357
+    handleSelectionChange(val) {
358
+      this.array = []
359
+      this.checkArray = []
360
+      this.returnArray = []
361
+     for(let i=0;i<val.length;i++){
362
+      this.array.push(val[i].id)
363
+      if(val[i].is_check == 1){
364
+        this.checkArray.push(val[i].is_check)
365
+      }
366
+      if(val[i].is_check == 2){
367
+        this.returnArray.push(val[i].is_check)
368
+      }
369
+     }
370
+    },
197 371
     // 页表操作
198 372
     handleSizeChange(val) {
373
+      this.array= []
374
+      this.checkArray = []
375
+      this.returnArray = []
199 376
       this.limit = val;
200
-      this.init();
377
+      this.getlist();
201 378
     },
202 379
     handleCurrentChange(val) {
380
+      this.array= []
381
+      this.checkArray = []
382
+      this.returnArray = []
203 383
       this.page = val;
204
-      this.init();
384
+      this.getlist();
205 385
     },
206 386
 
207 387
     // 表格样式
@@ -218,7 +398,89 @@ export default {
218 398
         };
219 399
       }
220 400
     },
401
+    getlist() {
402
+      var params = {
403
+        check_id: this.check_id,
404
+        start_time: this.start_time,
405
+        end_time: this.end_time,
406
+        keyword: this.keywords,
407
+        page: this.page,
408
+        limit: this.limit,
409
+      };
410
+      getAllSecondOrderList(params).then((response) => {
411
+        if (response.data.state == 1) {
412
+          var list = response.data.data.list;
413
+          this.tableData = list;
414
+          var total = response.data.data.total;
415
+          this.total = total;
416
+          this.houseList = response.data.data.houseList
417
+          this.doctorList = response.data.data.doctorList
418
+        }
419
+      });
420
+    },
421
+    getName(id) {
422
+      var name = "";
423
+      for (let i = 0; i < this.supplyList.length; i++) {
424
+        if (id == this.supplyList[i].id) {
425
+          name = this.supplyList[i].supplier_name;
426
+        }
427
+      }
428
+      return name;
429
+    },
430
+    getDocName(id) {
431
+      var user_name = "";
432
+      for (let i = 0; i < this.doctorList.length; i++) {
433
+        if (id == this.doctorList[i].admin_user_id) {
434
+          user_name = this.doctorList[i].user_name;
435
+        }
436
+      }
437
+      return user_name;
438
+    },
439
+    getTime(time) {
440
+      if (time === "") {
441
+        return "";
442
+      }
443
+      return uParseTime(time, "{y}-{m}-{d}");
444
+    },
445
+    getHouseName(id){
446
+      var storehouse_name = ""
447
+      for(let i=0;i<this.houseList.length;i++){
448
+         if(id == this.houseList[i].id){
449
+           storehouse_name = this.houseList[i].storehouse_name
450
+         }
451
+      }
452
+      return storehouse_name
453
+    },
454
+    toEdit(row){
455
+      this.$router.push("/stock/inventoryTransfer/transedit?id="+row.id)
456
+    }
221 457
   },
458
+  created(){
459
+    var now = new Date(); //当前日期
460
+    var nowMonth = now.getMonth(); //当前月
461
+    var nowYear = now.getFullYear(); //当前年
462
+    //本月的开始时间
463
+    var monthStartDate = new Date(nowYear, nowMonth, 1);
464
+    this.start_time = this.getTimes(monthStartDate);
465
+    this.end_time = this.getTimes(new Date());
466
+
467
+    // this.org_id = this.$store.getters.xt_user.org_id;
468
+    // var start_time =  window.sessionStorage.getItem('purchase_start_time')
469
+    
470
+    // var end_time =  window.sessionStorage.getItem('purchase_end_time')
471
+   
472
+    // if(start_time !=null){
473
+    //   this.start_time = ""
474
+    //   this.start_time = start_time
475
+    // }
476
+    // if(end_time!=null){
477
+    //   this.end_time = ""
478
+    //   this.end_time = end_time
479
+    // }
480
+    // window.sessionStorage.removeItem('purchase_start_time')
481
+    // window.sessionStorage.removeItem('purchase_end_time')
482
+    this.getlist();
483
+  }
222 484
 };
223 485
 </script>
224 486
 

+ 86 - 26
src/xt_pages/stock/inventoryTransfer/transDetails.vue Parādīt failu

@@ -10,8 +10,7 @@
10 10
           backgroundColor: 'rgb(245, 247, 250)',
11 11
           color: '#606266',
12 12
         }"
13
-        :data="tableData"
14
-        :class="signAndWeighBoxPatients"
13
+        :data="tableList"
15 14
         border
16 15
       >
17 16
         >
@@ -20,78 +19,69 @@
20 19
             商品名称<span style="color: red">*</span>
21 20
           </template>
22 21
           <template slot-scope="scope">
23
-            <span>{{ scope.row.Count ? scope.row.Count : "" }}</span>
22
+           {{scope.row.project_name}}
24 23
           </template>
25 24
         </el-table-column>
26 25
         <el-table-column label="商品类型" align="center">
27 26
           <template slot-scope="scope">
28
-            <span>{{ scope.row.Count ? scope.row.Count : "" }}</span>
27
+           {{scope.row.project_type}}
29 28
           </template>
30 29
         </el-table-column>
31
-        <el-table-column label="规格&&单位" align="center">
30
+        <el-table-column label="规格" align="center">
32 31
           <template slot-scope="scope">
33
-            <span>{{ scope.row.outCount ? scope.row.outCount : "" }}</span>
32
+             {{scope.row.second_specification_name}}
34 33
           </template>
35 34
         </el-table-column>
36 35
         <el-table-column label="调拨数量" align="center">
37 36
           <template slot-scope="scope">
38
-            <span>{{ scope.row.outCount ? scope.row.outCount : "" }}</span>
37
+            {{scope.row.count}}{{scope.row.sencond_unit}}
39 38
           </template>
40 39
         </el-table-column>
41 40
         <el-table-column label="调出仓库" align="center">
42 41
           <template slot-scope="scope">
43
-            <span>{{ scope.row.outCount ? scope.row.outCount : "" }}</span>
42
+           {{getHouseName(scope.row.storehouse_out_id)}}
44 43
           </template>
45 44
         </el-table-column>
46 45
         <el-table-column label="调入仓库" align="center">
47 46
           <template slot-scope="scope">
48
-            <span>{{ scope.row.outCount ? scope.row.outCount : "" }}</span>
47
+           {{getHouseName(scope.row.storehouse_in_id)}}
49 48
           </template>
50 49
         </el-table-column>
51 50
         <el-table-column label="库存总数" align="center">
52 51
           <template slot-scope="scope">
53
-            <span>{{ scope.row.outCount ? scope.row.outCount : "" }}</span>
52
+            {{scope.row.second_total}}
54 53
           </template>
55 54
         </el-table-column>
56 55
         <el-table-column label="制单人" align="center">
57 56
           <template slot-scope="scope">
58
-            <span>{{ scope.row.outCount ? scope.row.outCount : "" }}</span>
57
+            {{getDocName(warehouse.creater)}}
59 58
           </template>
60 59
         </el-table-column>
61 60
         <el-table-column label="审核人" align="center">
62 61
           <template slot-scope="scope">
63
-            <span>{{ scope.row.outCount ? scope.row.outCount : "" }}</span>
62
+            {{getDocName(warehouse.checker)}}
64 63
           </template>
65 64
         </el-table-column>
66 65
         <el-table-column label="审核时间" align="center">
67 66
           <template slot-scope="scope">
68
-            <span>{{ scope.row.outCount ? scope.row.outCount : "" }}</span>
67
+           <span v-if="warehouse.check_time >0">{{getTimes(warehouse.check_time)}}</span>  
69 68
           </template>
70 69
         </el-table-column>
71 70
         <el-table-column label="备注" align="center">
72 71
           <template slot-scope="scope">
73
-            <span>{{ scope.row.outCount ? scope.row.outCount : "" }}</span>
72
+            <span>{{ scope.row.remake ? scope.row.remake : "" }}</span>
74 73
           </template>
75 74
         </el-table-column>
76 75
       </el-table>
77
-      <el-pagination
78
-        @size-change="handleSizeChange"
79
-        @current-change="handleCurrentChange"
80
-        :page-sizes="[10, 50, 100, 200, 500, 1000]"
81
-        :page-size="10"
82
-        background
83
-        align="right"
84
-        style="margin-top: 20px"
85
-        layout="total, sizes, prev, pager, next, jumper"
86
-        :total="total"
87
-      >
88
-      </el-pagination>
76
+     
89 77
     </div>
90 78
   </div>
91 79
 </template>
92 80
 
93 81
 <script>
94 82
 import BreadCrumb from "@/xt_pages/components/bread-crumb";
83
+import {getSecondOrderDetailList} from "@/api/seconde";
84
+import { uParseTime } from "@/utils/tools";
95 85
 export default {
96 86
   components: {
97 87
     BreadCrumb,
@@ -116,6 +106,12 @@ export default {
116 106
           { required: true, message: "请选择活动区域", trigger: "change" },
117 107
         ],
118 108
       },
109
+      supplyList: [],
110
+      check_id: 0,
111
+      doctorList: [],
112
+      houseList:[],
113
+      warehouse:{},
114
+      tableList:[],
119 115
     };
120 116
   },
121 117
 
@@ -168,7 +164,71 @@ export default {
168 164
         };
169 165
       }
170 166
     },
167
+       getTimes(time) {
168
+      if (time === "") {
169
+        return "";
170
+      }
171
+      return uParseTime(time, "{y}-{m}-{d}");
172
+    },
173
+    getlist() {
174
+       var id = parseInt(this.$route.query.id)
175
+      getSecondOrderDetailList(id).then((response) => {
176
+        if (response.data.state == 1) {
177
+          var list = response.data.data.list;
178
+          this.tableList = list;
179
+          this.houseList = response.data.data.houseList
180
+          this.doctorList = response.data.data.doctorList
181
+          var warehouse = response.data.data.warehouse
182
+          this.warehouse = warehouse
183
+        }
184
+      });
185
+    },
186
+    getHouseName(id){
187
+      var storehouse_name = ""
188
+      for(let i=0;i<this.houseList.length;i++){
189
+         if(id == this.houseList[i].id){
190
+           storehouse_name = this.houseList[i].storehouse_name
191
+         }
192
+      }
193
+      return storehouse_name
194
+    },
195
+    getDocName(id) {
196
+      var user_name = "";
197
+      for (let i = 0; i < this.doctorList.length; i++) {
198
+        if (id == this.doctorList[i].admin_user_id) {
199
+          user_name = this.doctorList[i].user_name;
200
+        }
201
+      }
202
+      return user_name;
203
+    }
171 204
   },
205
+  created(){
206
+    var now = new Date(); //当前日期
207
+    var nowMonth = now.getMonth(); //当前月
208
+    var nowYear = now.getFullYear(); //当前年
209
+    //本月的开始时间
210
+    var monthStartDate = new Date(nowYear, nowMonth, 1);
211
+    this.start_time = this.getTimes(monthStartDate);
212
+    this.end_time = this.getTimes(new Date());
213
+
214
+    this.org_id = this.$store.getters.xt_user.org_id;
215
+    // var start_time =  window.sessionStorage.getItem('purchase_start_time')
216
+    
217
+    // var end_time =  window.sessionStorage.getItem('purchase_end_time')
218
+  
219
+    // if(start_time !=null){
220
+    //   this.start_time = ""
221
+    //   this.start_time = start_time
222
+    // }
223
+    // if(end_time!=null){
224
+    //   this.end_time = ""
225
+    //   this.end_time = end_time
226
+    // }
227
+    // window.sessionStorage.removeItem('purchase_start_time')
228
+    // window.sessionStorage.removeItem('purchase_end_time')
229
+  
230
+    this.getlist();
231
+  }
172 232
 };
173 233
 </script>
174 234
 

+ 24 - 12
src/xt_pages/stock/stockBatchNumber.vue Parādīt failu

@@ -71,6 +71,11 @@
71 71
              <span>{{scope.row.number}} </span>
72 72
            </template>
73 73
         </el-table-column>
74
+        <el-table-column prop="drug_name" label="仓库名称" align="center">
75
+           <template slot-scope="scope">
76
+              <span>{{getHouseName(scope.row.storehouse_id)}}</span>
77
+           </template>
78
+        </el-table-column>
74 79
         <el-table-column prop="drug_name" label="入库数量" align="center">
75 80
            <template slot-scope="scope">
76 81
              <span> {{scope.row.warehousing_count}}{{packing_unit}}</span>
@@ -183,6 +188,7 @@
183 188
         keywords:"",
184 189
         packing_unit:"",
185 190
         cancelCountList:[],
191
+        houseList:[],
186 192
       }
187 193
     },
188 194
     methods:{
@@ -246,16 +252,13 @@
246 252
       getStockInList(params).then(response=>{
247 253
          if(response.data.state == 1){
248 254
            var list = response.data.data.list
249
-           console.log("入库数据",list)
250
-          //  for(let i=0;i<list.length;i++){
251
-          //    list[i].stock_way = 4
252
-          //  }
255
+        
253 256
            this.tableList = list
254 257
            var total = response.data.data.total
255 258
            this.total = total
256
-           console.log("入库数据",this.tableList)
257 259
            var manufacturerList = response.data.data.manufacturerList
258 260
            this.manufacturerList = manufacturerList
261
+           this.houseList = response.data.data.houseList
259 262
          }
260 263
       })
261 264
      },
@@ -269,7 +272,6 @@
269 272
         return count
270 273
      },
271 274
      getOutCount(id){
272
-        console.log("id222",id)
273 275
         var count = ""
274 276
         for(let i=0;i<this.outCountList.length;i++){
275 277
           if(id == this.outCountList[i].good_id){
@@ -309,18 +311,19 @@
309 311
         getStockDrugCount(params).then(response=>{
310 312
           if(response.data.state == 1){
311 313
             var count = response.data.data.count
312
-            console.log("详情入库统计",count)
314
+           
313 315
             this.countList = count
314 316
             var outlist = response.data.data.outList
315
-            console.log("详情出库数量",outlist)
316
-            
317
+           
317 318
             this.outCountList = outlist
318 319
             var autoCount = response.data.data.autoCount
319
-            console.log("详情自动出库",autoCount)
320
+           
320 321
             this.autoCountList = autoCount
321 322
             var totalCount = response.data.data.totalCount
322
-            console.log("totalcount",totalCount)
323
+  
323 324
             this.cancelCountList = totalCount
325
+
326
+           
324 327
           }
325 328
         })
326 329
       },
@@ -332,7 +335,16 @@
332 335
           }
333 336
         }
334 337
        return stock_count
335
-      }
338
+      },
339
+      getHouseName(id){
340
+        var storehouse_name = ""
341
+        for(let i=0;i<this.houseList.length;i++){
342
+          if(id == this.houseList[i].id){
343
+            storehouse_name = this.houseList[i].storehouse_name
344
+          }
345
+        }
346
+        return storehouse_name
347
+     },
336 348
       
337 349
 
338 350
     }

+ 43 - 24
src/xt_pages/stock/stockDamaged.vue Parādīt failu

@@ -1,6 +1,15 @@
1 1
 <template>
2 2
   <div>
3 3
     <div  style="margin-bottom:10px;">
4
+       <label class="title"><span class="name">仓库</span> :</label>
5
+       <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px" @change="changeHouseList">
6
+          <el-option
7
+            v-for="(option, index) in houseList"
8
+            :key="index"
9
+            :label="option.storehouse_name"
10
+            :value="option.id">
11
+          </el-option>
12
+        </el-select>  
4 13
         <el-input
5 14
         size="small"
6 15
         style="width: 200px;"
@@ -60,6 +69,11 @@
60 69
             {{getAllDamageCount(scope.row.good_id,scope.row.buy_price)}}
61 70
             </template>    
62 71
         </el-table-column>
72
+        <el-table-column prop="date" label="仓库名称"  align="center">
73
+          <template  slot-scope="scope">
74
+            {{getStorehouseName(scope.row.storehouse_id)}}
75
+            </template>    
76
+        </el-table-column>
63 77
         <el-table-column prop="name" label="操作"  align="center">
64 78
           <template  slot-scope="scope">
65 79
             <el-button type="primary" @click="toDamagedDetail(scope.row.good_id)">查看详情</el-button>
@@ -444,6 +458,8 @@ export default {
444 458
             good_name:"",
445 459
             price:0,
446 460
             good_id:0,
461
+            storehouse_id:0,
462
+            houseList:[],
447 463
         }
448 464
     },
449 465
     methods:{
@@ -641,18 +657,23 @@ export default {
641 657
           keyword:this.searchKey,
642 658
           limit:this.limit,
643 659
           page:this.page,
660
+          storehouse_id:this.storehouse_id,
644 661
          }
645 662
        getReportStockList(params).then(response=>{
646 663
           if(response.data.state == 1){
647 664
             var list = response.data.data.list
648
-            console.log("报损金额22222",list)
649 665
             this.total = response.data.data.total
650 666
             this.tableList = list
651 667
            var doctorlist = response.data.data.doctorlist
652 668
            this.doctorList = doctorlist
653 669
            var damageList =  response.data.data.damageList
654
-          
655
-          this.damageList = damageList
670
+           this.damageList = damageList
671
+           var obj = {id:0,storehouse_name:"全部"}
672
+           this.houseList = []
673
+           this.houseList.push(obj)
674
+           for(let i=0;i<response.data.data.houseList.length;i++){
675
+            this.houseList.push(response.data.data.houseList[i])
676
+           }
656 677
           }
657 678
        })   
658 679
       },
@@ -793,30 +814,28 @@ export default {
793 814
       },
794 815
       toQuery(){
795 816
         this.toDamagedDetail(this.good_id)
817
+      },
818
+      getStorehouseName(id){
819
+        var storehouse_name = ""
820
+        for(let i=0;i<this.houseList.length;i++){
821
+          if(id == this.houseList[i].id){
822
+            storehouse_name = this.houseList[i].storehouse_name
823
+          }
824
+        }
825
+        if(storehouse_name == "全部"){
826
+          return ""
827
+        }else{
828
+          return storehouse_name
829
+        }
830
+      },
831
+      changeHouseList(){
832
+        this.houseList = []
833
+        this.getlist()
796 834
       }
797 835
     },
798 836
     created(){
799
-        // var nowDate = new Date();
800
-        // var nowYear = nowDate.getFullYear();
801
-        // var nowMonth = nowDate.getMonth() + 1;
802
-        // var nowDay = nowDate.getDate();
803
-        // this.end_time =
804
-        // nowYear +
805
-        // "-" +
806
-        // (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
807
-        // "-" +
808
-        // (nowDay < 10 ? "0" + nowDay : nowDay);
809
-        // nowDate.setMonth(nowDate.getMonth() - 1);
810
-        // nowYear = nowDate.getFullYear();
811
-        // nowMonth = nowDate.getMonth() + 1;
812
-        // nowDay = nowDate.getDate();
813
-        // this.start_time =
814
-        // nowYear +
815
-        // "-" +
816
-        // (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
817
-        // "-" +
818
-        // (nowDay < 10 ? "0" + nowDay : nowDay);
819
-         this.getlist()
837
+  
838
+       this.getlist()
820 839
     },
821 840
   
822 841
     mounted() {

+ 31 - 20
src/xt_pages/stock/stockFlow.vue Parādīt failu

@@ -68,6 +68,8 @@
68 68
              <span v-if="scope.row.consumable_type == 7">自动退库</span>
69 69
              <span v-if="scope.row.consumable_type == 10">盘盈</span>
70 70
              <span v-if="scope.row.consumable_type == 11">盘亏</span>
71
+             <span v-if="scope.row.consumable_type == 12">调拨出库</span>
72
+             <span v-if="scope.row.consumable_type == 13">调拨入库</span>
71 73
            </template>
72 74
         </el-table-column>
73 75
         <el-table-column prop="drug_name" label="出/入库单据编码" align="center">
@@ -78,25 +80,26 @@
78 80
             <span v-if="scope.row.consumable_type == 4 || scope.row.consumable_type == 7">{{scope.row.cancel_order_number}}</span>  
79 81
             <span v-if="scope.row.consumable_type == 10">{{scope.row.warehouse_out_order_number}}</span>
80 82
             <span v-if="scope.row.consumable_type == 11">{{scope.row.warehouse_out_order_number}}</span>
83
+            <span v-if="scope.row.consumable_type == 12">{{scope.row.warehouse_out_order_number}}</span>
84
+            <span v-if="scope.row.consumable_type == 13">{{scope.row.warehousing_order}}</span>
81 85
            </template>
82 86
         </el-table-column>
83 87
         <el-table-column prop="drug_name" label="操作日期" align="center">
84 88
            <template slot-scope="scope">
85 89
              {{getTime(scope.row.ctime)}}
86 90
            </template>
91
+        </el-table-column>
92
+        <el-table-column prop="drug_name" label="仓库名称"  align="center">
93
+           <template slot-scope="scope">
94
+             <span>{{getHouseName(scope.row.storehouse_id)}}</span>
95
+           </template>
87 96
         </el-table-column>
88 97
          <el-table-column prop="drug_name" label="数量"  align="center">
89 98
            <template slot-scope="scope">
90 99
              <span>{{scope.row.count}}{{packing_unit}}</span>
91 100
            </template>
92 101
         </el-table-column>
93
-     
94
-       <!-- <el-table-column label="是否退库" align="center">
95
-         <template slot-scope="scope">
96
-           <span v-if="scope.row.is_edit == 2">是</span>
97
-           <span v-if="scope.row.is_edit ==1">否</span>   
98
-         </template>
99
-       </el-table-column> -->
102
+   
100 103
 
101 104
        <!-- <el-table-column label="批次" align="center">
102 105
          <template slot-scope="scope">
@@ -170,10 +173,7 @@
170 173
         (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
171 174
         "-" +
172 175
         (nowDay < 10 ? "0" + nowDay : nowDay);
173
-      // this.getlist()
174
-      // this.getStockOutList()
175
-      // this.getStockDrugCount()
176
-    
176
+      
177 177
       this.getStockFlow()
178 178
       this.packing_unit = this.$route.query.packing_unit
179 179
     },
@@ -220,6 +220,8 @@
220 220
           {id:4,name:"手动退库"},
221 221
           {id:10,name:"盘盈"},
222 222
           {id:11,name:"盘亏"},
223
+          {id:12,name:"调拨出库"},
224
+          {id:13,name:"调拨入库"},
223 225
         ],
224 226
         countList:[],
225 227
         outCountList:[],
@@ -228,7 +230,8 @@
228 230
         obj:{},
229 231
         packing_unit:"",
230 232
         cancelCountList:[],
231
-        good:{}
233
+        good:{},
234
+        houseList:[],
232 235
       }
233 236
     },
234 237
     methods:{
@@ -345,17 +348,17 @@
345 348
       getStockDrugCount(params).then(response=>{
346 349
          if(response.data.state == 1){
347 350
            var count = response.data.data.count
348
-          //  console.log("详情入库统计",count)
351
+         
349 352
            this.countList = count
350 353
            var outlist = response.data.data.outList
351
-          //  console.log("详情出库数量",outlist)
354
+        
352 355
           
353 356
            this.outCountList = outlist
354 357
            var autoCount = response.data.data.autoCount
355
-          //  console.log("详情自动出库",autoCount)
358
+         
356 359
            this.autoCountList = autoCount
357 360
            var totalCount = response.data.data.totalCount
358
-          //  console.log("totalcount",totalCount)
361
+         
359 362
            this.cancelCountList = totalCount
360 363
          }
361 364
       })
@@ -370,7 +373,7 @@
370 373
         return count
371 374
         },
372 375
       getOutCount(id){
373
-        console.log("id222",id)
376
+       
374 377
         var count = ""
375 378
         for(let i=0;i<this.outCountList.length;i++){
376 379
           if(id == this.outCountList[i].good_id){
@@ -429,17 +432,25 @@
429 432
        getStockFlow(params).then(response=>{
430 433
           if(response.data.state == 1){
431 434
             var list =  response.data.data.list
432
-            console.log("list2323",list)
433 435
             var total = response.data.data.total
434
-            console.log("total",total)
435 436
             this.tableList = list
436 437
             this.total = total
437 438
             this.good = response.data.data.good
438 439
            var manufacturerList = response.data.data.manufacturerList
439 440
            this.manufacturerList = manufacturerList
441
+           this.houseList = response.data.data.houseList
440 442
           }
441 443
        })
442
-     }
444
+     },
445
+     getHouseName(id){
446
+        var storehouse_name = ""
447
+        for(let i=0;i<this.houseList.length;i++){
448
+          if(id == this.houseList[i].id){
449
+            storehouse_name = this.houseList[i].storehouse_name
450
+          }
451
+        }
452
+        return storehouse_name
453
+     },
443 454
     }
444 455
   }
445 456
 </script>

+ 75 - 24
src/xt_pages/stock/stockInOrder.vue Parādīt failu

@@ -15,10 +15,20 @@
15 15
     </div>
16 16
 
17 17
     <div class="app-container">
18
+      
18 19
       <div class="cell clearfix">
20
+        <label class="title"><span class="name">仓库</span> :</label>
21
+        <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px" @change="changeStoreHouse">
22
+            <el-option
23
+              v-for="(option, index) in list"
24
+              :key="index"
25
+              :label="option.storehouse_name"
26
+              :value="option.id">
27
+            </el-option>
28
+        </el-select>
19 29
         <el-input
20 30
           size="small"
21
-          style="width: 400px;"
31
+          style="width: 200px;"
22 32
           v-model.trim="searchKey"
23 33
           class="filter-item"
24 34
           placeholder="单据编码/制单人/耗材名称"
@@ -110,12 +120,25 @@
110 120
           </template>
111 121
         </el-table-column>
112 122
 
123
+       <el-table-column label="仓库名称" align="center">
124
+          <template slot-scope="scope">
125
+            {{getHouseName(scope.row.storehouse_id)}}
126
+          </template>
127
+        </el-table-column>
128
+
113 129
         <el-table-column label="制单人" align="center">
114 130
           <template slot-scope="scope">
115 131
             {{ getXuserName(scope.row.creater) }}
116 132
           </template>
117 133
         </el-table-column>
118 134
 
135
+        <el-table-column label="入库方式" align="center">
136
+          <template slot-scope="scope">
137
+            <span v-if="scope.row.is_sys == 12">调拨入库</span>
138
+            <span v-if="scope.row.is_sys == 0">手动入库</span>
139
+          </template>
140
+        </el-table-column>
141
+
119 142
         <el-table-column label="操作" align="center" width="260px">
120 143
           <template slot-scope="scope">
121 144
             <el-tooltip
@@ -203,6 +226,12 @@
203 226
             {{ scope.row.number}}
204 227
           </template>
205 228
         </el-table-column>
229
+         <el-table-column label="仓库名称" align="center">
230
+          <template slot-scope="scope">
231
+            {{getHouseName(scope.row.storehouse_id)}}
232
+          </template>
233
+        </el-table-column>
234
+
206 235
         <el-table-column label="入库数量" align="center">
207 236
           <template slot-scope="scope">
208 237
             {{ scope.row.warehousing_count}}{{scope.row.GoodInfo.packing_unit}}
@@ -775,6 +804,8 @@ export default {
775 804
       order_id:0,
776 805
       exportList:[],
777 806
       checkAllStatus:false,
807
+      list:[],
808
+      storehouse_id:0,
778 809
     };
779 810
     
780 811
   
@@ -793,7 +824,8 @@ export default {
793 824
         start_time: this.start_time,
794 825
         end_time: this.end_time,
795 826
         type: this.type,
796
-        keywords: this.searchKey
827
+        keywords: this.searchKey,
828
+        storehouse_id:this.storehouse_id,
797 829
       };
798 830
       this.Warehouse.warehouseDate = [];
799 831
       getWarehouseList(Params).then(response => {
@@ -807,6 +839,7 @@ export default {
807 839
           for (let i = 0; i < response.data.data.list.length; i++) {
808 840
             this.Warehouse.warehouseDate.push(response.data.data.list[i]);
809 841
           }
842
+        
810 843
         }
811 844
       });
812 845
     },
@@ -816,9 +849,10 @@ export default {
816 849
         limit: this.limit,
817 850
         start_time: this.start_time,
818 851
         end_time: this.end_time,
819
-        type: this.type
852
+        type: this.type,
853
+        storehouse_id:this.storehouse_id,
820 854
       };
821
-      console.log("parasm22222",Params)
855
+
822 856
       this.Warehouse.warehouseDate = [];
823 857
       getWarehouseList(Params).then(response => {
824 858
         if (response.data.state == 0) {
@@ -831,6 +865,13 @@ export default {
831 865
           for (let i = 0; i < response.data.data.list.length; i++) {
832 866
             this.Warehouse.warehouseDate.push(response.data.data.list[i]);
833 867
           }
868
+          this.list = []
869
+          var obj = {id:0,storehouse_name:"全部"}
870
+          this.list.push(obj)
871
+          for(let i=0;i<response.data.data.houselist.length;i++){
872
+            this.list.push(response.data.data.houselist[i])
873
+          }
874
+          
834 875
         }
835 876
       });
836 877
     },
@@ -890,7 +931,6 @@ export default {
890 931
     },
891 932
     fetchAllAdminUsers() {
892 933
       fetchAllAdminUsers().then(response => {
893
-        console.log(response);
894 934
         if (response.data.state == 1) {
895 935
           this.adminUserOptions = response.data.data.users;
896 936
           var alen = this.adminUserOptions.length;
@@ -922,8 +962,6 @@ export default {
922 962
       return name;
923 963
     },
924 964
     getTypeNameOne:function(id){
925
-      console.log("999999",this.goodInfo)
926
-     
927 965
       let name = "";
928 966
       for (let i = 0; i < this.goodInfo.length; i++) {
929 967
         if (this.goodInfo[i].id == id) {
@@ -960,7 +998,7 @@ export default {
960 998
       });
961 999
     },
962 1000
     clicks: function() {
963
-      console.log(this.WarehouseInfo.warehouseInfoDate);
1001
+
964 1002
     },
965 1003
     handleWarehouse: function() {
966 1004
       this.$router.push({ path: "/stock/in/add", query: { type: this.type } });
@@ -1038,8 +1076,7 @@ export default {
1038 1076
         } else {
1039 1077
           this.manufacturer = response.data.data.manufacturer;
1040 1078
           this.dealer = response.data.data.dealer;
1041
-          // this.manufacturer.splice(0, 0, { id: 0, manufacturer_name: "全部" });
1042
-          // this.dealer.splice(0, 0, { id: 0, dealer_name: "全部" });
1079
+          // this.list = response.data.data.list
1043 1080
           this.getlist()
1044 1081
         }
1045 1082
       });
@@ -1059,11 +1096,13 @@ export default {
1059 1096
       }
1060 1097
     },
1061 1098
     handleEdit: function(index, row) {
1062
-      console.log("rowe232323232332",row)
1063
-      this.$router.push({path:"/stock/in/order/edit?id="+row.id+"&supply_warehouse_id="+row.supply_warehouse_id})
1099
+      this.$router.push({path:"/stock/in/order/edit?id="+row.id+"&supply_warehouse_id="+row.supply_warehouse_id+"&is_sys="+row.is_sys})
1064 1100
     },
1065 1101
     handleDelete: function(index, row) {
1066
-     
1102
+      if(row.is_sys== 12){
1103
+        this.$message.error("调拨入库数据不能删除!")
1104
+        return false
1105
+      }
1067 1106
       if(row.supply_warehouse_id > 0){
1068 1107
         this.$message.error("采购入库单不能删除!")
1069 1108
         return false
@@ -1107,7 +1146,6 @@ export default {
1107 1146
     },
1108 1147
    
1109 1148
     select(selection) {
1110
-      console.log("selection",selection)
1111 1149
       var ids= []
1112 1150
       for(let i=0;i<selection.length;i++){
1113 1151
         ids.push(selection[i].id)
@@ -1126,10 +1164,13 @@ export default {
1126 1164
       const ids = [];
1127 1165
       const idOne = []
1128 1166
       for (let i = 0; i < this.selectedTableData.length; i++) {
1167
+        if(this.selectedTableData[i].is_sys ==12){
1168
+          this.$message.error("调拨入库数据不能删除!")
1169
+          return false
1170
+        }
1129 1171
         ids.push(this.selectedTableData[i].id);
1130 1172
         idOne.push(this.selectedTableData[i].supply_warehouse_id)
1131 1173
       }
1132
-      console.log("idson23322323",idOne)
1133 1174
       for(let i=0;i<idOne.length;i++){
1134 1175
         if(idOne[i] >0){
1135 1176
           this.$message.error("采购入库数据不能删除!")
@@ -1203,11 +1244,10 @@ export default {
1203 1244
 
1204 1245
             this.recordInfo.recordData.push(response.data.data.info[i]);
1205 1246
             this.tableList.push(response.data.data.info[i])
1206
-            console.log("详情",this.tableList)
1207 1247
           }
1208 1248
            this.warehouse = response.data.data.warehousing;
1209 1249
            this.warehousing_time = this.getTime(this.warehouse.warehousing_time,"{y}-{m}-{d}");
1210
-           console.log("单据日期",this.warehousing_time)
1250
+
1211 1251
           this.WarehouseInfo.warehouse = response.data.data.warehousing;
1212 1252
          
1213 1253
         }
@@ -1336,7 +1376,7 @@ export default {
1336 1376
       this.$refs["tableForm"].validate(valid => {
1337 1377
         if (valid) {
1338 1378
           const array = this.recordInfo.recordData;
1339
-          console.log('array',array)
1379
+
1340 1380
           for (let i = 0; i < array.length; i++) {
1341 1381
             if (array[i].good_type_id == 0) {
1342 1382
               this.$message.error("商品类型不能为空");
@@ -1483,12 +1523,13 @@ export default {
1483 1523
         id:this.order_id,
1484 1524
         start_time:this.start_time,
1485 1525
         end_time:this.end_time,
1526
+        storehouse_id:this.storehouse_id,
1486 1527
       }
1487
-      console.log("params",params)
1528
+     
1488 1529
       getExportStockList(params).then(response=>{
1489 1530
         if(response.data.state == 1){
1490 1531
            var list = response.data.data.list
1491
-           console.log("数据导出222222",list)
1532
+          
1492 1533
            for(let i=0;i<this.goodType.length;i++){
1493 1534
              for(let j=0;j<list.length;j++){
1494 1535
                if(this.goodType[i].id == list[j].good_type_id){
@@ -1506,15 +1547,12 @@ export default {
1506 1547
                   list[i].manufacturer = this.manufacturer[j].manufacturer_name
1507 1548
                }
1508 1549
             }
1509
-           console.log("经销⬆商",this.dealer)
1510 1550
            for(let z=0;z<this.dealer.length;z++){
1511 1551
                if(list[i].dealer == this.dealer[z].id){
1512 1552
                  list[i].dealer = this.dealer[z].dealer_name
1513 1553
                }
1514 1554
             }
1515 1555
           }
1516
-          console.log("表格2222222",this.exportList)
1517
-          
1518 1556
           this.exportList = list
1519 1557
         }
1520 1558
       })
@@ -1545,7 +1583,7 @@ export default {
1545 1583
       const tHeader = ['耗材名称','耗材类型', '规格&单位','批号','入库数量','进货价','总价','生产厂家','生产日期','有效期','经销商','批准文号','备注']
1546 1584
       const filterVal = ['good_name', 'good_type_id', 'unit','number','warehousing_count','price','total_price','manufacturer','product_date','expiry_date','dealer','license_number','remark']
1547 1585
 
1548
-      console.log("table",this.exportList)
1586
+
1549 1587
      
1550 1588
       const data = this.formatJson(filterVal, this.exportList)
1551 1589
       excel.export_json_to_excel({
@@ -1559,6 +1597,19 @@ export default {
1559 1597
     formatJson(filterVal, jsonData) {
1560 1598
     return jsonData.map(v => filterVal.map(j => v[j]));
1561 1599
    },
1600
+   getHouseName(id){
1601
+    var storehouse_name = ""
1602
+    for(let i=0;i<this.list.length;i++){
1603
+        if(id == this.list[i].id){
1604
+          storehouse_name = this.list[i].storehouse_name
1605
+        }
1606
+    }
1607
+    return storehouse_name
1608
+    },
1609
+    changeStoreHouse(){
1610
+      this.GetWarehouse();
1611
+      this.getlist()
1612
+    }
1562 1613
   }
1563 1614
 };
1564 1615
 </script>

+ 24 - 10
src/xt_pages/stock/stockInOrderAdd.vue Parādīt failu

@@ -20,6 +20,15 @@
20 20
 
21 21
 
22 22
       <div class="cell clearfix">
23
+         <label class="title"><span class="name"><span style="color:red">*</span>仓库</span> :</label>
24
+         <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px">
25
+              <el-option
26
+                v-for="(option, index) in list"
27
+                :key="index"
28
+                :label="option.storehouse_name"
29
+                :value="option.id">
30
+              </el-option>
31
+           </el-select>
23 32
         <label class="title"><span class="name">入库时间</span> : </label>
24 33
         <el-date-picker size="small" v-model="warehousing_time" prefix-icon="el-icon-date" :editable="false"
25 34
                         style="width: 196px;" type="date" placeholder="选择日期时间" align="right" format="yyyy-MM-dd"
@@ -378,6 +387,8 @@
378 387
         manufacturerList:[],
379 388
         goodList:[],
380 389
         loading:false,
390
+        list:[],
391
+        storehouse_id:"",
381 392
       }
382 393
     },
383 394
     methods: {
@@ -467,7 +478,8 @@
467 478
             }
468 479
           }
469 480
         })
470
-      }, GetConfigInfo: function() {
481
+      },
482
+      GetConfigInfo: function() {
471 483
         const loading = this.$loading({
472 484
           lock: true,
473 485
           text: 'Loading',
@@ -490,6 +502,8 @@
490 502
             this.dealer.splice(0, 0, { id: -1, dealer_name: '其他' })
491 503
             this.form.manufacturer = 0
492 504
             this.form.dealer = 0
505
+            this.list = response.data.data.list
506
+            this.storehouse_id = response.data.data.configlist.storehouse_info
493 507
           }
494 508
           loading.close()
495 509
 
@@ -660,12 +674,14 @@
660 674
       }
661 675
       ,
662 676
       submit() {
663
-        console.log("res23322332",this.$refs)
664 677
         this.$refs['tableForm'].validate((valid) => {
665 678
           if (valid) {
666 679
             this.loading = true
667 680
             const array = this.recordInfo.recordData
668
-            console.log("array9999999",array)
681
+            if(this.storehouse_id == 0){
682
+              this.$message.error("仓库不能为空!")
683
+              return
684
+            }
669 685
             for (let i = 0; i < array.length; i++) {
670 686
               if (array[i].good_type_id == 0) {
671 687
                 this.$message.error('商品类型不能为空')
@@ -679,6 +695,7 @@
679 695
               this.$message.success('请添加入库商品')
680 696
               return
681 697
             }
698
+
682 699
             for(let i=0;i<this.recordInfo.recordData.length;i++){
683 700
              if(this.recordInfo.recordData[i].dealer == ""){
684 701
                 this.recordInfo.recordData[i].dealer = 0
@@ -707,9 +724,8 @@
707 724
             const params = {
708 725
               'stockIn': this.recordInfo.recordData
709 726
             }
710
-            console.log("stockIn",this.recordInfo.recordData)
711
-            
712
-            postWarehouse(params, this.warehousing_time, this.form.manufacturer, this.form.dealer, this.type).then(response => {
727
+           
728
+            postWarehouse(params, this.warehousing_time, this.form.manufacturer, this.form.dealer, this.type,this.storehouse_id).then(response => {
713 729
               if (response.data.state == 0) {
714 730
                 this.loading = false
715 731
                 this.$message.error(response.data.msg)
@@ -778,7 +794,6 @@
778 794
         this.currentIndex = val
779 795
       },
780 796
       handleSelect(val){
781
-         console.log("val3232232323",val)
782 797
          for(let i=0;i<this.recordInfo.recordData.length;i++){
783 798
            if(this.currentIndex == i){
784 799
               this.recordInfo.recordData[i].good_type_id = val.id
@@ -812,7 +827,8 @@
812 827
              
813 828
            }
814 829
          }
815
-      }
830
+      },
831
+   
816 832
     }
817 833
     ,
818 834
     created() {
@@ -846,8 +862,6 @@
846 862
       this.recordInfo.recordData.push(tempObj)
847 863
       this.GetConfigInfo()
848 864
       this.propForm.goodUnit = this.$store.getters.good_unit
849
-
850
-      console.log("单位",this.getDataConfig('hemodialysis','units'))
851 865
     }
852 866
 
853 867
   }

+ 37 - 7
src/xt_pages/stock/stockInOrderEdit.vue Parādīt failu

@@ -34,6 +34,15 @@
34 34
       ></stock-in-dialog>
35 35
 
36 36
       <div class="cell clearfix">
37
+         <label class="title"><span class="name"><span style="color:red">*</span>仓库</span> :</label>
38
+         <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px" :disabled="true">
39
+              <el-option
40
+                v-for="(option, index) in list"
41
+                :key="index"
42
+                :label="option.storehouse_name"
43
+                :value="option.id">
44
+              </el-option>
45
+          </el-select>
37 46
         <label class="title"><span class="name">入库时间</span> : </label>
38 47
         <el-date-picker
39 48
           size="small"
@@ -402,6 +411,8 @@ export default {
402 411
       numberList:[],
403 412
       loading:false,
404 413
       disabled:false,
414
+      storehouse_id:0,
415
+      list:[],
405 416
     };
406 417
   },
407 418
   methods: {
@@ -468,6 +479,7 @@ export default {
468 479
           this.dealer = response.data.data.dealer;
469 480
           this.goodType = response.data.data.goodType;
470 481
           this.goodInfo = response.data.data.goodInfo;
482
+          this.list = response.data.data.list
471 483
           // this.manufacturer.splice(0, 0, { id: 0, manufacturer_name: "全部" });
472 484
           // this.dealer.splice(0, 0, { id: 0, dealer_name: "全部" });
473 485
         }
@@ -497,6 +509,11 @@ export default {
497 509
         this.$message.error("采购入库数据不能新增!")
498 510
         return false
499 511
       }
512
+      
513
+      if(parseInt(this.$route.query.is_sys) >0){
514
+        this.$message.error("调拨入库数据不能新增!")
515
+        return false
516
+      }
500 517
       const tempObj = {};
501 518
       tempObj["id"] = 0;
502 519
       tempObj["good_type_id"] = 0;
@@ -514,6 +531,10 @@ export default {
514 531
       this.recordInfo.recordData.push(tempObj);
515 532
     },
516 533
     handleDelete: function(index, row) {
534
+      if(parseInt(this.$route.query.is_sys) >0){
535
+        this.$message.error("调拨入库数据不能删除!")
536
+        return false
537
+      }
517 538
       if(row.supply_warehouse_id >0){
518 539
         this.$message.error("采购入库数据不能删除!")
519 540
         return false
@@ -629,6 +650,10 @@ export default {
629 650
         if (valid) {
630 651
           this.loading = true
631 652
           const array = this.recordInfo.recordData;
653
+          if(this.storehouse_id == 0){
654
+            this.$message.error("仓库不能为空!")
655
+            return
656
+          }    
632 657
           for (let i = 0; i < array.length; i++) {
633 658
             if (array[i].good_type_id == 0) {
634 659
               this.$message.error("商品类型不能为空");
@@ -661,7 +686,7 @@ export default {
661 686
           const params = {
662 687
             stockIn: this.recordInfo.recordData
663 688
           };
664
-          console.log("params2222",params)
689
+          
665 690
           const loading = this.$loading({
666 691
             lock: true,
667 692
             text: 'Loading',
@@ -674,7 +699,8 @@ export default {
674 699
             this.$route.query.id,
675 700
             this.$route.query.type,
676 701
             this.form.manufacturer,
677
-            this.form.dealer
702
+            this.form.dealer,
703
+            this.storehouse_id,
678 704
           ).then(response => {
679 705
             if (response.data.state == 0) {
680 706
               this.loading =false
@@ -697,13 +723,13 @@ export default {
697 723
       const params = {
698 724
         id: order_id
699 725
       };
700
-      console.log("parm2222222222",params)
726
+
701 727
       getWarehouseInfoList(params).then(response => {
702 728
         if (response.data.state == 0) {
703 729
           this.$message.error(response.data.msg);
704 730
           return false;
705 731
         } else {
706
-          console.log("列表2222222",response.data.data.info)
732
+        
707 733
          
708 734
           for (let i = 0; i < response.data.data.info.length; i++) {
709 735
             response.data.data.info[i].product_date = this.getTime(
@@ -729,12 +755,12 @@ export default {
729 755
            
730 756
             this.recordInfo.recordData.push(response.data.data.info[i]);
731 757
            
732
-            console.log("列表",this.recordInfo.recordData)
758
+           
733 759
           }
734 760
 
735 761
           this.warehouse = response.data.data.warehousing;
736
-          console.log("jhhahfhh",this.warehouse)
737
- 
762
+          this.storehouse_id = response.data.data.warehousing[0].storehouse_id
763
+       
738 764
           this.warehousing_time = this.getTime(
739 765
             this.warehouse[0].warehousing_time,
740 766
             "{y}-{m}-{d}"
@@ -835,9 +861,13 @@ export default {
835 861
     this.propForm.goodUnit = this.$store.getters.good_unit;
836 862
     const order_id = this.$route.query.id;
837 863
     var supply_warehouse_id =  parseInt(this.$route.query.supply_warehouse_id)  
864
+    var is_sys = parseInt(this.$route.query.is_sys)
838 865
     if(supply_warehouse_id > 0){
839 866
       this.disabled = true
840 867
     }
868
+    if(is_sys == 12){
869
+      this.disabled = true
870
+    }
841 871
     this.GetOrderDetail(order_id);
842 872
 
843 873
   }

+ 73 - 10
src/xt_pages/stock/stockOutOrder.vue Parādīt failu

@@ -14,9 +14,18 @@
14 14
     </div>
15 15
     <div class="app-container">
16 16
       <div class="cell clearfix">
17
+        <label class="title"><span class="name">仓库</span> :</label>
18
+        <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px" @change="changeStoreHouse">
19
+            <el-option
20
+              v-for="(option, index) in houselist"
21
+              :key="index"
22
+              :label="option.storehouse_name"
23
+              :value="option.id">
24
+            </el-option>
25
+        </el-select> 
17 26
         <el-input
18 27
           size="small"
19
-          style="width: 400px;"
28
+          style="width: 200px;"
20 29
           class="filter-item"
21 30
           v-model.trim="searchKey"
22 31
           placeholder="单据编码/制单人/耗材名称"
@@ -103,6 +112,12 @@
103 112
             {{ scope.row.warehouse_out_order_number }}
104 113
           </template>
105 114
         </el-table-column>
115
+       
116
+        <el-table-column label="仓库名称" align="center">
117
+          <template slot-scope="scope">
118
+            {{getHouseName(scope.row.storehouse_id)}}
119
+          </template>
120
+        </el-table-column>
106 121
 
107 122
         <el-table-column label="制单人" align="center">
108 123
           <template slot-scope="scope">
@@ -114,6 +129,7 @@
114 129
           <template slot-scope="scope">
115 130
             <span v-if="scope.row.is_sys == 1">自动出库</span>
116 131
             <span v-if="scope.row.is_sys == 0">手动出库</span>
132
+            <span v-if="scope.row.is_sys == 12">调拨出库</span>
117 133
           </template>
118 134
         </el-table-column>
119 135
        
@@ -197,6 +213,12 @@
197 213
               {{ scope.row.social_security_directory_code}}
198 214
             </template>
199 215
           </el-table-column>
216
+
217
+          <el-table-column label="仓库名称" align="center">
218
+            <template slot-scope="scope">
219
+              {{getHouseName(scope.row.storehouse_id)}}
220
+            </template>
221
+          </el-table-column>
200 222
          
201 223
           <el-table-column label="出库数量" align="center">
202 224
             <template slot-scope="scope">
@@ -204,6 +226,11 @@
204 226
               <span v-if="scope.row.is_sys == 1">{{getOutStockCount(scope.row.good_id)}}{{scope.row.packing_unit}}</span> 
205 227
             </template>
206 228
           </el-table-column>
229
+          <el-table-column label="出库对象" align="center" v-if="is_sys== 0">
230
+            <template slot-scope="scope">
231
+             {{getXuserName(scope.row.admin_user_id)}}
232
+            </template>
233
+          </el-table-column>
207 234
           <el-table-column label="出货价" align="center">
208 235
             <template slot-scope="scope">
209 236
               <span v-if="scope.row.price >0">{{ scope.row.price}}</span> 
@@ -788,7 +815,11 @@ export default {
788 815
       exportList:[],
789 816
       is_sys:0,
790 817
       infoList:[],
791
-      stockFlowList:[]
818
+      stockFlowList:[],
819
+      list:[],
820
+      houselist:[],
821
+      storehouse_id:0,
822
+      is_sys:0,
792 823
     };
793 824
   },
794 825
   methods: {
@@ -799,7 +830,8 @@ export default {
799 830
         start_time: this.start_time,
800 831
         end_time: this.end_time,
801 832
         type: this.type,
802
-        keywords: this.searchKey
833
+        keywords: this.searchKey,
834
+        storehouse_id:this.storehouse_id,
803 835
       };
804 836
       this.warehouseOutDate = [];
805 837
       getWarehouseOutList(Params).then(response => {
@@ -826,7 +858,8 @@ export default {
826 858
         limit: this.limit,
827 859
         start_time: this.start_time,
828 860
         end_time: this.end_time,
829
-        type: this.type
861
+        type: this.type,
862
+        storehouse_id:this.storehouse_id,
830 863
       };
831 864
       this.warehouseOutDate = [];
832 865
       getWarehouseOutList(Params).then(response => {
@@ -834,14 +867,18 @@ export default {
834 867
           this.$message.error(response.data.msg);
835 868
           return false;
836 869
         } else {
837
-          console.log("parsm",response.data.data)
838
-          
870
+         
839 871
           this.total = response.data.data.total;
840 872
           for (let i = 0; i < response.data.data.list.length; i++) {
841 873
             
842 874
             this.warehouseOutDate.push(response.data.data.list[i]);
843 875
           }
844
-          console.log("2222222",this.warehouseOutDate)
876
+          var obj = {id:0,storehouse_name:"全部"}
877
+          this.houselist = []
878
+          this.houselist.push(obj)
879
+          for(let i=0;i<response.data.data.houselist.length;i++){
880
+            this.houselist.push(response.data.data.houselist[i])
881
+          }
845 882
         }
846 883
       });
847 884
     },
@@ -933,6 +970,7 @@ export default {
933 970
           this.dealer = response.data.data.dealer;
934 971
           this.goodInfo = response.data.data.goodInfo
935 972
           this.goodType = response.data.data.goodType
973
+          this.list = response.data.data.list
936 974
           // this.manufacturer.splice(0, 0, { id: 0, manufacturer_name: "全部" });
937 975
           // this.dealer.splice(0, 0, { id: 0, dealer_name: "全部" });
938 976
           this.getlist()
@@ -958,7 +996,10 @@ export default {
958 996
        
959 997
     },
960 998
     handleDelete: function(index, row) {
961
-     
999
+      if(row.is_sys == 12){
1000
+        this.$message.error("调拨出库数据不能删除!")
1001
+        return false
1002
+      }
962 1003
       if(row.supply_cancel_out_id >0){
963 1004
         this.$message.error("采购出库数据不能删除!")
964 1005
         return false
@@ -1034,6 +1075,10 @@ export default {
1034 1075
         if(this.selectedTableData[i].is_sys == 1){
1035 1076
           this.$message.error("自动出库数据不能删除!")
1036 1077
           return false
1078
+        }
1079
+        if(this.selectedTableData[i].is_sys ==12){
1080
+          this.$message.error("调拨出库数据不能删除!")
1081
+          return false
1037 1082
         }
1038 1083
          if(this.selectedTableData[i].is_sys == 0){
1039 1084
            ids.push(this.selectedTableData[i].id);
@@ -1075,15 +1120,16 @@ export default {
1075 1120
               }
1076 1121
             }
1077 1122
           });
1078
-        })
1079
-        .catch(() => {});
1123
+        }).catch(() => {});
1080 1124
     },
1081 1125
 
1082 1126
 
1083 1127
     handleSearch(val){
1128
+      this.is_sys = val.is_sys
1084 1129
       this.tableList = []
1085 1130
       this.editdialogVisibleThree = false
1086 1131
       this.GetOrderDetailOne(val.id)
1132
+
1087 1133
       this.GetTotalCount(val.warehouse_out_time)
1088 1134
     },
1089 1135
   
@@ -1678,6 +1724,23 @@ export default {
1678 1724
      }
1679 1725
      arr = this.unique(arr)
1680 1726
      return arr.join(',')
1727
+   },
1728
+   getHouseName(id){
1729
+    var storehouse_name = ""
1730
+    for(let i=0;i<this.houselist.length;i++){
1731
+        if(id == this.houselist[i].id){
1732
+          storehouse_name = this.houselist[i].storehouse_name
1733
+        }
1734
+    }
1735
+    if(storehouse_name == "全部"){
1736
+      return ""
1737
+    }else{
1738
+       return storehouse_name
1739
+    }
1740
+   
1741
+   },
1742
+   changeStoreHouse(){
1743
+     this.GetWarehouseOut()
1681 1744
    }
1682 1745
   }
1683 1746
 };

+ 58 - 18
src/xt_pages/stock/stockOutOrderAdd.vue Parādīt failu

@@ -37,6 +37,15 @@
37 37
 
38 38
 
39 39
       <div class="cell clearfix">
40
+         <label class="title"><span class="name"><span style="color:red">*</span>仓库</span> :</label>
41
+         <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px">
42
+              <el-option
43
+                v-for="(option, index) in list"
44
+                :key="index"
45
+                :label="option.storehouse_name"
46
+                :value="option.id">
47
+              </el-option>
48
+         </el-select>
40 49
         <label class="title"><span class="name">出库时间</span> : </label>
41 50
         <el-date-picker
42 51
           size="small"
@@ -140,6 +149,19 @@
140 149
             </template>
141 150
           </el-table-column>
142 151
 
152
+          <el-table-column label="出库对象"  width="150" align="center">
153
+            <template slot-scope="scope">
154
+               <el-select size="small" v-model="scope.row.admin_user_id" filterable placeholder="请选择出库对象">
155
+                <el-option
156
+                  v-for="(option, index) in doctorList"
157
+                  :key="index"
158
+                  :label="option.user_name"
159
+                  :value="option.admin_user_id">
160
+                </el-option>
161
+               </el-select>
162
+            </template>   
163
+          </el-table-column>
164
+
143 165
           <el-table-column  width="150" align="center">
144 166
             <template slot="header" slot-scope="scope">
145 167
               <span>出货单价<span style="color: red">*</span></span>
@@ -339,6 +361,9 @@ export default {
339 361
       goodList:[],
340 362
       manufacturerList:[],
341 363
       numberList:[],
364
+      storehouse_id:"",
365
+      list:[],
366
+      doctorList:[],
342 367
     };
343 368
   },
344 369
   methods: {
@@ -347,7 +372,7 @@ export default {
347 372
       this.propForm.goods = []
348 373
 
349 374
       this.$refs.dialog.hide()
350
-      console.log(val)
375
+    
351 376
       if (val.selectedGoodInfo.length > 0) {
352 377
         for (let i = val.selectedGoodInfo.length - 1; i >= 0; i--) {
353 378
           if (i == 0) {
@@ -401,7 +426,9 @@ export default {
401 426
           this.dealer.splice(0, 0, { id: 0, dealer_name: '全部' })
402 427
           this.manufacturer.splice(0, 0, { id: -1, manufacturer_name: '其他' })
403 428
           this.dealer.splice(0, 0, { id: -1, dealer_name: '其他' })
404
-
429
+          this.list = response.data.data.list
430
+          this.storehouse_id = response.data.data.configlist.storehouse_out_info
431
+          this.doctorList =  response.data.data.doctorList
405 432
         }
406 433
       });
407 434
     },
@@ -446,6 +473,7 @@ export default {
446 473
       tempObj["product_date"] = ""
447 474
       tempObj["license_number"] = ""
448 475
       tempObj["warehouse_info_id"] = 0
476
+      tempObj["admin_user_id"] = this.$store.getters.xt_user.user.user_name
449 477
       this.recordInfo.recordData.push(tempObj);
450 478
     },
451 479
     handleDelete: function(index, row) {
@@ -530,7 +558,7 @@ export default {
530 558
             this.propForm.goods.push(goodObj)
531 559
 
532 560
           }
533
-          console.log( this.propForm.goods)
561
+       
534 562
         }
535 563
       )
536 564
 
@@ -573,6 +601,7 @@ export default {
573 601
            
574 602
              this.recordInfo.recordData[i].price = this.recordInfo.recordData[i].price.toString()
575 603
           }
604
+       
576 605
           for(let i=0;i<this.recordInfo.recordData.length;i++){
577 606
             for(let j=0;j<this.manufacturerList.length;j++){
578 607
               if(this.recordInfo.recordData[i].manufacturer == this.manufacturerList[j].manufacturer_name){
@@ -590,10 +619,19 @@ export default {
590 619
                    this.recordInfo.recordData[i].number = this.numberList[y].number
591 620
                }
592 621
             }
622
+            
623
+            for(let s=0;s<this.doctorList.length;s++){
624
+
625
+              if(this.recordInfo.recordData[i].admin_user_id == this.doctorList[s].user_name){
626
+                this.recordInfo.recordData[i].admin_user_id = this.doctorList[s].admin_user_id
627
+              }
628
+
629
+            }
593 630
           }
594 631
           const params = {
595 632
             stockOut: this.recordInfo.recordData
596 633
           };
634
+        
597 635
           const loading = this.$loading({
598 636
             lock: true,
599 637
             text: 'Loading',
@@ -605,7 +643,8 @@ export default {
605 643
             this.warehouse_out_time,
606 644
             this.form.dealer,
607 645
             this.form.manufacturer,
608
-            this.type
646
+            this.type,
647
+            this.storehouse_id
609 648
           ).then(response => {
610 649
             if (response.data.state == 0) {
611 650
               this.$message.error("库存不足")
@@ -615,7 +654,8 @@ export default {
615 654
                var msg = response.data.data.msg
616 655
                var good_name = response.data.data.good_name
617 656
                var specification_name = response.data.data.specification_name
618
-               var str = good_name +"*" + specification_name +"无库存,请入库"
657
+               var storehose_name = response.data.data.storehose_name
658
+               var str = storehose_name + " " + good_name +"*" + specification_name +"无库存,请入库"
619 659
              
620 660
                if(msg == 1){
621 661
                   this.$message.error(str)
@@ -646,11 +686,11 @@ export default {
646 686
       if (keyword != undefined) {
647 687
         key = keyword
648 688
       }
649
-      console.log("keyrowrd",key)
689
+
650 690
       postSearchGoodList(key).then(response => {
651 691
         if (response.data.state == 1) {
652 692
             var list = response.data.data.list
653
-            console.log("33334445555",list)
693
+          
654 694
             this.goodList = list
655 695
             var manufacturerList = response.data.data.manufacturerList
656 696
             this.manufacturerList = manufacturerList
@@ -681,14 +721,14 @@ export default {
681 721
       this.currentIndex = val
682 722
     },
683 723
     handleSelect(val){
684
-       
724
+       console.log("val232323",val)
685 725
         var arr = []
686 726
         for(let i=0;i<this.recordInfo.recordData.length;i++){
687 727
            arr.push(this.recordInfo.recordData[i].good_id)
688 728
         }
689 729
        
690 730
         var str = arr.join(",")
691
-        console.log("str",str,"good_id",val.id)
731
+       
692 732
         if(str.indexOf(val.id)!=-1){
693 733
           this.$message.error("该耗材已存在列表中")
694 734
           return
@@ -703,6 +743,7 @@ export default {
703 743
             this.recordInfo.recordData[i].name = val.specification_name +"/"+val.packing_unit
704 744
             this.recordInfo.recordData[i].manufacturer = val.manufacturer
705 745
             this.recordInfo.recordData[i].remark = val.remark
746
+          
706 747
             if(val.packing_price == 0){
707 748
               this.recordInfo.recordData[i].price =""
708 749
             }else{
@@ -729,7 +770,7 @@ export default {
729 770
       getStockBatchNumber(params).then(response=>{
730 771
         if(response.data.state == 1){
731 772
           var list = response.data.data.list
732
-          console.log("list2243444",list)
773
+ 
733 774
           this.numberList = list
734 775
         }
735 776
      })
@@ -738,19 +779,17 @@ export default {
738 779
       return getDataConfig(module, filed_name)
739 780
     },
740 781
     changeNumberList(val,index){
741
-
742 782
        for(let i=0;i<this.recordInfo.recordData.length;i++){
743
-        //  if(val.good_id == this.recordInfo.recordData[i].good_id){
744
-        //     this.recordInfo.recordData[i].warehouse_info_id = val.number
745
-        //  }
746 783
          if(index == i){
747 784
           this.recordInfo.recordData[i].warehouse_info_id = val.number
748 785
          }
749 786
        }  
750
-      console.log("表格",this.recordInfo.recordData)
751
-    }
787
+    
788
+    },
789
+    
752 790
   },
753 791
   created() {
792
+   
754 793
     var nowDate = new Date();
755 794
     var nowYear = nowDate.getFullYear();
756 795
     var nowMonth = nowDate.getMonth() + 1;
@@ -773,12 +812,13 @@ export default {
773 812
     tempObj["dealer"] = ""
774 813
     tempObj["license_number"] = ""
775 814
     tempObj["warehouse_info_id"] = 0
776
-    
815
+    tempObj["admin_user_id"] = this.$store.getters.xt_user.user.user_name
777 816
     this.recordInfo.recordData.push(tempObj);
778 817
     this.GetConfigInfo();
818
+  
779 819
     this.propForm.goodUnit = this.$store.getters.good_unit;
780 820
     this.unitList =  getDataConfig('hemodialysis','units')
781
-    console.log("单位",this.unitList)
821
+ 
782 822
   }
783 823
 };
784 824
 </script>

+ 105 - 53
src/xt_pages/stock/stockOutOrderEdit.vue Parādīt failu

@@ -13,7 +13,7 @@
13 13
 
14 14
     <div class="app-container">
15 15
 
16
-  
16
+
17 17
       <stock-in-dialog
18 18
         ref="dialog"
19 19
         :propForm="propForm"
@@ -24,6 +24,15 @@
24 24
       </stock-in-dialog>
25 25
 
26 26
       <div class="cell clearfix">
27
+         <label class="title"><span class="name"><span style="color:red">*</span>仓库</span> :</label>
28
+         <el-select size="small" v-model="storehouse_id" filterable placeholder="请选择仓库" style="width:200px" :disabled="true">
29
+              <el-option
30
+                v-for="(option, index) in storelist"
31
+                :key="index"
32
+                :label="option.storehouse_name"
33
+                :value="option.id">
34
+              </el-option>
35
+         </el-select>
27 36
         <label class="title"><span class="name">出库时间</span> : </label>
28 37
         <el-date-picker size="small" v-model="warehouse_out_time" prefix-icon="el-icon-date" :disabled="stockShow"
29 38
                         style="width: 200px;"
@@ -32,7 +41,7 @@
32 41
       </div>
33 42
 
34 43
 
35
-    
44
+
36 45
 
37 46
 
38 47
 
@@ -41,7 +50,7 @@
41 50
                   max-height="450" :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)'}"
42 51
         >
43 52
 
44
-       
53
+
45 54
           <el-table-column width="200" align="center">
46 55
               <template slot="header" slot-scope="scope">
47 56
                 <span>耗材名称</span>
@@ -60,7 +69,7 @@
60 69
                       @input="changeGoodName(scope.$index)"
61 70
                       style="width:150px;"
62 71
                       :disabled="stockShow"
63
-                      
72
+
64 73
                     >
65 74
                       <i class="el-icon-search el-input__icon" slot="suffix"></i>
66 75
                     <template slot-scope="{ item }">
@@ -86,8 +95,8 @@
86 95
               </el-form-item>
87 96
             </template>
88 97
           </el-table-column>
89
-          
90
-             
98
+
99
+
91 100
           <el-table-column width="140" align="center">
92 101
             <template slot="header" slot-scope="scope">
93 102
               <span>规格&单位<span style="color: red">*</span></span>
@@ -116,13 +125,13 @@
116 125
               </el-form-item>
117 126
             </template>
118 127
           </el-table-column> -->
119
-         
128
+
120 129
           <el-table-column width="150" align="center">
121 130
             <template slot="header" slot-scope="scope">
122 131
               <span>单价<span style="color: red">*</span></span>
123 132
             </template>
124 133
             <template slot-scope="scope">
125
-         
134
+
126 135
               <el-form-item :prop="'recordData.' + scope.$index + '.price'" :rules='tableRules.price'
127 136
                             style="padding-top: 17px">
128 137
                 <el-input type="number" v-model="scope.row.price"  :disabled="stockShow"></el-input>
@@ -144,6 +153,19 @@
144 153
             </template>
145 154
           </el-table-column>
146 155
 
156
+          <el-table-column label="出库对象"  width="150" align="center">
157
+            <template slot-scope="scope">
158
+               <el-select size="small" v-model="scope.row.admin_user_id" filterable placeholder="请选择厂商"  :disabled="stockShow">
159
+                <el-option
160
+                  v-for="(option, index) in doctorList"
161
+                  :key="index"
162
+                  :label="option.user_name"
163
+                  :value="option.admin_user_id">
164
+                </el-option>
165
+               </el-select>
166
+            </template>
167
+          </el-table-column>
168
+
147 169
           <el-table-column label="总价" width="150" align="center">
148 170
             <template slot-scope="scope">
149 171
               {{calculate(scope.row.price*scope.row.count)}}
@@ -159,7 +181,7 @@
159 181
                   :value="option.id">
160 182
                 </el-option>
161 183
                </el-select>
162
-            </template>   
184
+            </template>
163 185
           </el-table-column>
164 186
          <el-table-column label="生产日期"  width="150" align="center">
165 187
            <template slot-scope="scope">
@@ -190,7 +212,7 @@
190 212
               ></el-date-picker>
191 213
             </template>
192 214
           </el-table-column>
193
-          
215
+
194 216
         <el-table-column  width="150" align="center">
195 217
             <template slot="header" slot-scope="scope">
196 218
             <span>批准文号<span style="color: red"></span></span>
@@ -210,7 +232,7 @@
210 232
                   :value="option.id">
211 233
                 </el-option>
212 234
                </el-select>
213
-            </template>   
235
+            </template>
214 236
           </el-table-column>
215 237
 
216 238
           <el-table-column label="备注" width="150" align="center">
@@ -322,7 +344,9 @@
322 344
         numberList:[],
323 345
         stockShow:false,
324 346
         stockTrue:true,
325
-       
347
+        storelist:[],
348
+        storehouse_id:"",
349
+        doctorList:[],
326 350
       }
327 351
     },
328 352
     methods: {
@@ -364,7 +388,7 @@
364 388
         this.propForm.goods = [];
365 389
 
366 390
         this.propForm.goodType = [];
367
-      }, 
391
+      },
368 392
       GetConfigInfo: function() {
369 393
         const loading = this.$loading({
370 394
           lock: true,
@@ -400,11 +424,15 @@
400 424
           }
401 425
         }
402 426
         return name;
403
-      }, 
427
+      },
404 428
       handleEdit: function(index, row) {
429
+       if(parseInt(this.$route.query.is_sys) == 12){
430
+         this.$message.error("调拨出库数据不能新增!")
431
+          return
432
+       }
405 433
        if(row.supply_cancel_out_id >0){
406 434
           this.$message.error("采购出库数据不能新增!")
407
-          return 
435
+          return
408 436
         }
409 437
         this.stockTrue = false
410 438
         if(this.stockShow == true){
@@ -422,15 +450,19 @@
422 450
         tempObj['license_number'] = ""
423 451
         tempObj['dealer'] = ""
424 452
         tempObj['manufacturer'] = ""
453
+        tempObj["admin_user_id"] = this.$store.getters.xt_user.user.user_name
425 454
         this.recordInfo.recordData.push(tempObj)
426
-      }, 
455
+      },
427 456
       handleDelete: function(index, row) {
428
-      
457
+       if(parseInt(this.$route.query.is_sys) == 12){
458
+         this.$message.error("调拨出库数据不能删除!")
459
+          return
460
+       }
429 461
         if(row.supply_cancel_out_id >0){
430 462
           this.$message.error("采购出库数据不能删除!")
431
-          return 
463
+          return
432 464
         }
433
- 
465
+
434 466
         if(this.stockShow == true){
435 467
          this.$message.error("自动出库数据无法删除")
436 468
          return
@@ -534,7 +566,7 @@
534 566
         this.$router.go(-1)
535 567
       },
536 568
        submit() {
537
-       
569
+
538 570
         this.$refs['tableForm'].validate((valid) => {
539 571
           if (valid) {
540 572
             const array = this.recordInfo.recordData
@@ -554,12 +586,12 @@
554 586
              }
555 587
               if(this.recordInfo.recordData[i].expiry_date == "" || this.recordInfo.recordData[i].expiry_date == undefined){
556 588
                 this.recordInfo.recordData[i].expiry_date = ""
557
-              } 
589
+              }
558 590
               if(this.recordInfo.recordData[i].product_date == "" || this.recordInfo.recordData[i].product_date == undefined){
559 591
                 this.recordInfo.recordData[i].product_date = ""
560 592
               }
561 593
                this.recordInfo.recordData[i].price = this.recordInfo.recordData[i].price.toString()
562
-            
594
+
563 595
               for(let j=0;j<this.manufacturerList.length;j++){
564 596
                 if(this.recordInfo.recordData[i].manufacturer == this.manufacturerList[j].manufacturer_name){
565 597
                   this.recordInfo.recordData[i].manufacturer = this.manufacturerList[j].id
@@ -571,11 +603,20 @@
571 603
                 }
572 604
               }
573 605
 
574
-            for(let y=0;y<this.numberList.length;y++){
606
+             for(let y=0;y<this.numberList.length;y++){
575 607
                if(this.recordInfo.recordData[i].number == this.numberList[y].id){
576 608
                    this.recordInfo.recordData[i].number = this.numberList[y].number
577 609
                }
578 610
              }
611
+
612
+
613
+              for(let s=0;s<this.doctorList.length;s++){
614
+
615
+                if(this.recordInfo.recordData[i].admin_user_id == this.doctorList[s].user_name){
616
+                  this.recordInfo.recordData[i].admin_user_id = this.doctorList[s].admin_user_id
617
+                }
618
+
619
+              }
579 620
             }
580 621
               const loading = this.$loading({
581 622
                 lock: true,
@@ -587,11 +628,12 @@
587 628
               'warehouse_out_time':this.warehouse_out_time,
588 629
               'stockOut': this.recordInfo.recordData,
589 630
               "warehout_id":parseInt(this.$route.query.id),
631
+              "storehouse_id":parseInt(this.storehouse_id),
590 632
             }
591
-           
592
-            console.log("stockout",params,this.$route.query.id)
633
+
634
+
593 635
             var warehout_id = parseInt(this.$route.query.id)
594
-            editWarehouseoutInfo(params, this.warehouse_out_time, warehout_id, this.$route.query.type, this.form.manufacturer, this.form.dealer).then(response => {
636
+            editWarehouseoutInfo(params, this.warehouse_out_time, warehout_id, this.$route.query.type, this.form.manufacturer, this.form.dealer,this.storehouse_id).then(response => {
595 637
               if (response.data.state == 0) {
596 638
                 this.$message.error(response.data.msg)
597 639
                 loading.close()
@@ -611,7 +653,7 @@
611 653
                   var good_name = response.data.data.good_name
612 654
                   var specification_name = response.data.data.specification_name
613 655
                   var str = good_name +"*" + specification_name +"无库存,请入库"
614
-                
656
+
615 657
                   if(msg == 7){
616 658
                     this.$message.error(str)
617 659
                   }
@@ -626,7 +668,7 @@
626 668
             return false
627 669
           }
628 670
         })
629
-      }, 
671
+      },
630 672
      calculate: function(val) {
631 673
         if (val == 0) {
632 674
           return ''
@@ -642,10 +684,10 @@
642 684
       if (keyword != undefined) {
643 685
         key = keyword
644 686
       }
645
-      console.log("keyrowrd",key)
687
+
646 688
       postSearchGoodList(key).then(response => {
647 689
         if (response.data.state == 1) {
648
-          
690
+
649 691
             var list = response.data.data.list
650 692
             this.goodList = list
651 693
             var manufacturerList = response.data.data.manufacturerList
@@ -662,7 +704,7 @@
662 704
                 }
663 705
               }
664 706
             }
665
-          
707
+
666 708
             cb(this.goodList)
667 709
         } else {
668 710
           cb([])
@@ -678,7 +720,7 @@
678 720
            arr.push(this.recordInfo.recordData[i].good_id)
679 721
         }
680 722
         var str = arr.join(",")
681
-        console.log("str",str,"good_id",val.id)
723
+
682 724
         if(str.indexOf(val.id)!=-1){
683 725
           this.$message.error("该耗材已存在列表中")
684 726
           return
@@ -699,7 +741,7 @@
699 741
             }else{
700 742
                this.recordInfo.recordData[i].price = val.packing_price
701 743
             }
702
-           
744
+
703 745
             this.recordInfo.recordData[i].specification_name = val.specification_name
704 746
             this.recordInfo.recordData[i].good_id = val.id
705 747
              if(val.dealer == 0){
@@ -707,7 +749,7 @@
707 749
              }else{
708 750
                this.recordInfo.recordData[i].dealer = val.dealer
709 751
              }
710
-           
752
+
711 753
          }
712 754
       }
713 755
     },
@@ -724,15 +766,16 @@
724 766
         }
725 767
       getSingleOutOrderDetail(params).then(response=>{
726 768
         if(response.data.state == 1){
727
-         
769
+
728 770
           var dealerList = response.data.data.dealerList
729 771
           this.dealerList = dealerList
730 772
           var manufacturerList = response.data.data.manufacturerList
731
-         
773
+
732 774
           this.manufacturerList = manufacturerList
733 775
           this.goodType = response.data.data.goodType
776
+          this.doctorList = response.data.data.doctorlist
734 777
           for (let i = 0; i < response.data.data.list.length; i++) {
735
-           
778
+
736 779
             response.data.data.list[i].price = response.data.data.list[i].price.toString()
737 780
             response.data.data.list[i].count = response.data.data.list[i].count.toString()
738 781
             response.data.data.list[i].good_name = response.data.data.list[i].good_name
@@ -741,6 +784,7 @@
741 784
             response.data.data.list[i].expiry_date = this.getTime(response.data.data.list[i].expiry_date,"{y}-{m}-{d}")
742 785
             response.data.data.list[i].product_date = this.getTime(response.data.data.list[i].product_date,"{y}-{m}-{d}")
743 786
             response.data.data.list[i].remark = response.data.data.list[i].remark
787
+
744 788
             if(response.data.data.list[i].dealer == 0){
745 789
                response.data.data.list[i].dealer = ""
746 790
             }
@@ -749,6 +793,9 @@
749 793
             }
750 794
             this.recordInfo.recordData.push(response.data.data.list[i])
751 795
           }
796
+          this.storelist = response.data.data.storelist
797
+          this.warehouse_out_time = this.getTime(response.data.data.out.warehouse_out_time,"{y}-{m}-{d}")
798
+          this.storehouse_id = response.data.data.out.storehouse_id
752 799
           loading.close();
753 800
         }
754 801
       })
@@ -760,34 +807,36 @@
760 807
         getStockBatchNumber(params).then(response=>{
761 808
           if(response.data.state == 1){
762 809
             var list = response.data.data.list
763
-           
810
+
811
+
764 812
             this.numberList = list
765 813
           }
766 814
        })
767 815
       },
768 816
      changeNumberList(val,index){
769
-       
817
+
818
+
770 819
        for(let i=0;i<this.recordInfo.recordData.length;i++){
771 820
          if(index == i){
772 821
             this.recordInfo.recordData[i].warehouse_info_id = val.number
773 822
          }
774
-       }  
775
-      console.log("表格",this.recordInfo.recordData)
823
+       }
824
+
776 825
      }
777 826
     },
778 827
     created() {
779
-      var nowDate = new Date();
780
-      var nowYear = nowDate.getFullYear();
781
-      var nowMonth = nowDate.getMonth() + 1;
782
-      var nowDay = nowDate.getDate();
783
-      this.warehouse_out_time =
784
-        nowYear +
785
-        "-" +
786
-        (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
787
-        "-" +
788
-        (nowDay < 10 ? "0" + nowDay : nowDay);
828
+      // var nowDate = new Date();
829
+      // var nowYear = nowDate.getFullYear();
830
+      // var nowMonth = nowDate.getMonth() + 1;
831
+      // var nowDay = nowDate.getDate();
832
+      // this.warehouse_out_time =
833
+      //   nowYear +
834
+      //   "-" +
835
+      //   (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
836
+      //   "-" +
837
+      //   (nowDay < 10 ? "0" + nowDay : nowDay);
789 838
       this.propForm.goodUnit = this.$store.getters.good_unit
790
-      const order_id = this.$route.query.id  
839
+      const order_id = this.$route.query.id
791 840
       this.getSingleOutOrderDetail(order_id)
792 841
       var is_sys = this.$route.query.is_sys
793 842
       if(is_sys == 0){
@@ -796,10 +845,13 @@
796 845
       if(is_sys == 1){
797 846
         this.stockShow = true
798 847
       }
848
+      if(is_sys == 12){
849
+        this.stockShow = true
850
+      }
799 851
       if(parseInt(this.$route.query.supply_cancel_out_id) >0){
800 852
         this.stockShow = true
801 853
       }
802
-      
854
+
803 855
     }
804 856
 
805 857
   }

+ 381 - 8
src/xt_pages/stock/stockQuery.vue Parādīt failu

@@ -13,6 +13,30 @@
13 13
         "
14 14
       >
15 15
         <div>
16
+          <span>仓库名称:</span>
17
+          <el-select v-model="storehouse_id" style="width:200px;margin-right:10px;" placeholder="请选择"
18
+          filterable
19
+           @change="changeStorehouseName">
20
+            <el-option
21
+              v-for="item in houseList"
22
+              :key="item.id"
23
+              :label="item.storehouse_name"
24
+              :value="item.id">
25
+            </el-option>
26
+          </el-select>
27
+          <span>耗材名称:</span>
28
+          <el-select v-model="good_id" style="width:250px;margin-right:10px;" placeholder="请选择"
29
+          filterable
30
+           @change="changeGoodName">
31
+            <el-option
32
+              v-for="item in goodList"
33
+              :key="item.id"
34
+              :label="item.good_name"
35
+              :value="item.id">
36
+            </el-option>
37
+          </el-select>
38
+          <!-- <el-select v-model="type_name" style="width:140px;margin-right:10px;" placeholder="请选择"
39
+          @change="changeTypeName">
16 40
           <el-select
17 41
             v-model="type_name"
18 42
             style="width: 140px; margin-right: 10px"
@@ -26,8 +50,8 @@
26 50
               :value="item.id"
27 51
             >
28 52
             </el-option>
29
-          </el-select>
30
-          <el-date-picker
53
+          </el-select> -->
54
+          <!-- <el-date-picker
31 55
             size="small"
32 56
             v-model="start_time"
33 57
             prefix-icon="el-icon-date"
@@ -55,20 +79,35 @@
55 79
             @change="endTimeChange"
56 80
           ></el-date-picker>
57 81
           <el-input
82
+           ></el-date-picker>-
83
+            <el-date-picker
84
+              size="small"
85
+              v-model="end_time"
86
+              prefix-icon="el-icon-date"
87
+              :editable="false"
88
+              style="width: 196px;"
89
+              type="date"
90
+              placeholder="选择日期时间"
91
+              align="right"
92
+              format="yyyy-MM-dd"
93
+              value-format="yyyy-MM-dd"
94
+              @change="endTimeChange"
95
+          ></el-date-picker> -->
96
+          <!-- <el-input
58 97
             size="small"
59 98
             style="width: 200px; margin-left: 10px"
60 99
             class="filter-item"
61 100
             v-model.trim="keywords"
62 101
             placeholder="耗材名称"
63
-          />
64
-          <el-button
102
+          /> -->
103
+          <!-- <el-button
65 104
             size="small"
66 105
             class="filter-item"
67 106
             type="primary"
68 107
             icon="el-icon-search"
69 108
             @click="search"
70 109
             >搜索</el-button
71
-          >
110
+          > -->
72 111
         </div>
73 112
         <div>
74 113
           <el-button size="small" type="primary" @click="exportList"
@@ -81,6 +120,8 @@
81 120
       </div>
82 121
 
83 122
       <el-table
123
+       <el-table
124
+        :cell-class-name="cellStyle"
84 125
         :row-style="{ color: '#303133' }"
85 126
         :header-cell-style="{
86 127
           backgroundColor: 'rgb(245, 247, 250)',
@@ -90,6 +131,7 @@
90 131
         :class="signAndWeighBoxPatients"
91 132
         border
92 133
         v-loading="WarehouseInfo.loading"
134
+        :span-method="objectOneMethod"
93 135
       >
94 136
         <el-table-column label="耗材类型" align="center">
95 137
           <template slot-scope="scope">
@@ -131,6 +173,59 @@
131 173
             </span>
132 174
           </template>
133 175
         </el-table-column>
176
+       <el-table-column label="仓库名称" align="center" width="150">
177
+          <template slot-scope="scope">
178
+            <tr style="background: none" v-for="(item,index) in scope.row.warehouse_info" :key="index">
179
+              <td style="border-right: none; border-inline-end: none;text-align: center" >
180
+               {{getHouseName(item.storehouse_id)}}
181
+              </td>
182
+            </tr>
183
+          </template>
184
+        </el-table-column>
185
+       <el-table-column label="入库数量" align="center">
186
+         <template slot-scope="scope">
187
+
188
+            <tr style="background: none" v-for="(item,index) in scope.row.warehouse_info" :key="index">
189
+              <td style="border-right: none; border-inline-end: none;text-align: center">
190
+               {{getWareInfoCount(scope.row.xt_warehouse_info,item.storehouse_id)}}
191
+              </td>
192
+            </tr>
193
+         </template>
194
+       </el-table-column>
195
+       <el-table-column label="出库数量" align="center">
196
+         <template slot-scope="scope">
197
+          <span>
198
+             <tr style="background: none" v-for="(item,index) in scope.row.warehouse_info" :key="index">
199
+              <td style="border-right: none; border-inline-end: none;text-align: center">
200
+              {{getWareInfoCount(scope.row.xt_warehouse_info,item.storehouse_id) - getWareInfoCountOne(scope.row.xt_warehouse_info,item.storehouse_id)}}
201
+              </td>
202
+            </tr>
203
+         </span>
204
+
205
+         </template>
206
+       </el-table-column>
207
+
208
+        <el-table-column label="剩余库存量" align="center">
209
+         <template slot-scope="scope">
210
+             <tr style="background: none" v-for="(item,index) in scope.row.warehouse_info" :key="index">
211
+              <td style="border-right: none; border-inline-end: none;text-align: center">
212
+               {{getWareInfoCountOne(scope.row.xt_warehouse_info,item.storehouse_id)}}
213
+              </td>
214
+            </tr>
215
+         </template>
216
+       </el-table-column>
217
+
218
+       <el-table-column label="总库存量" align="center">
219
+         <template slot-scope="scope">
220
+           {{getOverFlushInfo(scope.row.xt_warehouse_info)}}
221
+         </template>
222
+       </el-table-column>
223
+
224
+      <el-table-column label="总库存量" align="center" v-if="showTwo">
225
+         <template slot-scope="scope">
226
+          <span>{{getWareInfoCountTwo(scope.row.xt_warehouse_info)}} </span>
227
+         </template>
228
+       </el-table-column>
134 229
         <el-table-column label="入库数量" align="center">
135 230
           <template slot-scope="scope">
136 231
               <span
@@ -139,7 +234,7 @@
139 234
                 {{ getWareInfo(scope.row.xt_warehouse_info)
140 235
                 }}{{ scope.row.packing_unit }}
141 236
               </span>
142
-           
237
+
143 238
             <!-- <span v-if="getWareInfo(scope.row.xt_warehouse_info)>0">{{getWareInfo(scope.row.xt_warehouse_info)}}{{scope.row.packing_unit}}</span> -->
144 239
           </template>
145 240
         </el-table-column>
@@ -183,7 +278,7 @@
183 278
 
184 279
         <el-table-column label="剩余库存量" align="center" v-if="showThree">
185 280
           <template slot-scope="scope">
186
-           
281
+
187 282
               <span
188 283
                 v-if="
189 284
                   org_id == 9671 ||
@@ -217,7 +312,7 @@
217 312
                   getCancelCount(scope.row.id)
218 313
                 }}
219 314
               </span>
220
-           
315
+
221 316
             <!-- <span
222 317
               v-if="
223 318
                 org_id == 9671 ||
@@ -271,6 +366,7 @@
271 366
           </template>
272 367
         </el-table-column>
273 368
 
369
+       <el-table-column label="操作" align="center" width="200px">
274 370
         <el-table-column label="操作" align="center" width="260px">
275 371
           <template slot-scope="scope">
276 372
             <el-button size="small" type="primary" @click="toClick(scope.row)"
@@ -367,6 +463,27 @@ export default {
367 463
       showTwo: false,
368 464
       showThree: true,
369 465
       showFour: false,
466
+      options:[],
467
+      value:"",
468
+      type_name:0,
469
+      types:[],
470
+      tableList:[],
471
+      manufacturerList:[],
472
+      countList:[],
473
+      outCountList:[],
474
+      autoCountList:[],
475
+      cancelCountList:[],
476
+      org_id:0,
477
+      showOne:true,
478
+      showTwo:false,
479
+      showThree:true,
480
+      showFour:false,
481
+      houseList:[],
482
+      storehouse_id:0,
483
+      goodList:[],
484
+      good_id:0,
485
+      tempArr:[],
486
+      storehouseList:[],
370 487
     };
371 488
   },
372 489
   methods: {
@@ -381,10 +498,38 @@ export default {
381 498
             type_name: "全部",
382 499
           };
383 500
           this.types.push(obj);
501
+           var obj = {
502
+            id:0,
503
+            type_name:'全部'
504
+          }
505
+          var objOne = {
506
+            id:0,
507
+            storehouse_name:"全部",
508
+          }
509
+          var objTwo = {
510
+            id:0,
511
+            good_name:"全部",
512
+          }
513
+          this.types.push(obj)
514
+          this.houseList.push(objOne)
515
+          this.goodList.push(objTwo)
384 516
           for (let i = 0; i < response.data.data.goodType.length; i++) {
385 517
             this.goodType.push(response.data.data.goodType[i]);
386 518
             this.types.push(response.data.data.goodType[i]);
387 519
           }
520
+          for(let i=0;i<response.data.data.houseList.length;i++){
521
+            this.houseList.push(response.data.data.houseList[i])
522
+          }
523
+          for(let i=0;i<response.data.data.goodInfo.length;i++){
524
+            for(let j=0;j<response.data.data.manufacturerList.length;j++){
525
+                if(response.data.data.goodInfo[i].manufacturer == response.data.data.manufacturerList[j].id){
526
+                   response.data.data.goodInfo[i].manufacturer = response.data.data.manufacturerList[j].manufacturer_name
527
+                }
528
+              }
529
+           response.data.data.goodInfo[i].good_name = response.data.data.goodInfo[i].good_name  + " " + response.data.data.goodInfo[i].specification_name + " " + response.data.data.goodInfo[i].manufacturer
530
+           this.goodList.push(response.data.data.goodInfo[i])
531
+          }
532
+          this.storehouseList = response.data.data.storehouseList
388 533
         }
389 534
       });
390 535
     },
@@ -480,6 +625,14 @@ export default {
480 625
         return "spanClass";
481 626
       }
482 627
     },
628
+        // 合并单元格样式
629
+    cellStyle({ row, column, rowIndex, columnIndex }) {
630
+      let arr = [6, 7, 8, 9];
631
+      if (arr.indexOf(columnIndex) > -1) {
632
+        return "spanClass";
633
+      }
634
+    },
635
+
483 636
 
484 637
     exportList() {
485 638
       import("@/vendor/Export2Excel").then((excel) => {
@@ -660,6 +813,11 @@ export default {
660 813
         start_time: this.start_time,
661 814
         end_time: this.end_time,
662 815
         type: this.type_name,
816
+        start_time:this.start_time,
817
+        end_time:this.end_time,
818
+        type:this.type_name,
819
+        good_id:this.good_id,
820
+        storehouse_id:this.storehouse_id,
663 821
       };
664 822
       console.log("params232322323", params);
665 823
       getAllStockList(params).then((response) => {
@@ -686,6 +844,16 @@ export default {
686 844
           this.manufacturerList = manufacturerList;
687 845
         }
688 846
       });
847
+    getAllStockList(params).then(response=>{
848
+      if(response.data.state == 1){
849
+          var list = response.data.data.list
850
+          this.tableList = list
851
+          var total = response.data.data.total
852
+          this.total = total
853
+          var manufacturerList = response.data.data.manufacturerList
854
+          this.manufacturerList = manufacturerList
855
+         }
856
+      })
689 857
     },
690 858
     getManufacture(id) {
691 859
       var name = "";
@@ -772,6 +940,24 @@ export default {
772 940
           this.cancelCountList = totalCount;
773 941
         }
774 942
       });
943
+    getStockDrugCount(){
944
+        var params ={
945
+           keywords: this.keywords,
946
+           start_time:this.start_time,
947
+           end_time:this.end_time,
948
+        }
949
+      getStockDrugCount(params).then(response=>{
950
+         if(response.data.state == 1){
951
+           var outlist = response.data.data.outList
952
+           this.outCountList = outlist
953
+           var autoCount = response.data.data.autoCount
954
+
955
+           this.autoCountList = autoCount
956
+           var totalCount = response.data.data.totalCount
957
+
958
+           this.cancelCountList = totalCount
959
+         }
960
+      })
775 961
     },
776 962
     getInCount(id) {
777 963
       var count = 0;
@@ -870,6 +1056,171 @@ export default {
870 1056
       return cancle_toal;
871 1057
     },
872 1058
   },
1059
+     return count
1060
+   },
1061
+   getAutoCount(id){
1062
+     var count= 0
1063
+     for(let i=0;i<this.autoCountList.length;i++){
1064
+       if(id == this.autoCountList[i].good_id){
1065
+         count = this.autoCountList[i].count
1066
+       }
1067
+     }
1068
+     return count
1069
+   },
1070
+   getCancelCount(id){
1071
+     var count = 0
1072
+     for(let i=0;i<this.cancelCountList.length;i++){
1073
+       if(id == this.cancelCountList[i].good_id){
1074
+          count = this.cancelCountList[i].count
1075
+       }
1076
+     }
1077
+     return count
1078
+   },
1079
+   getStockCount(id){
1080
+     var stock_count = 0
1081
+     for(let i=0;i<this.countList.length;i++){
1082
+       if(id == this.countList[i].good_id){
1083
+         stock_count = this.countList[i].stock_count
1084
+       }
1085
+     }
1086
+     return stock_count
1087
+   },
1088
+   getWareInfo(arr){
1089
+     var total = 0
1090
+     if(arr.length > 0){
1091
+       for(let i=0;i<arr.length;i++){
1092
+         total += parseInt(arr[i].warehousing_count)
1093
+       }
1094
+     }else{
1095
+       total = ""
1096
+     }
1097
+     return total
1098
+   },
1099
+   getOverplus(arr){
1100
+     var total = 0
1101
+     if(arr.length > 0){
1102
+      for(let i=0;i<arr.length;i++){
1103
+        total += arr[i].stock_count
1104
+      }
1105
+     }else{
1106
+       total = ""
1107
+     }
1108
+     return total
1109
+   },
1110
+   getCancelInfo(arr){
1111
+     var total = 0
1112
+     if(arr.length > 0){
1113
+      for(let i=0;i<arr.length;i++){
1114
+        total += arr[i].count
1115
+      }
1116
+     }else{
1117
+       total = ""
1118
+     }
1119
+     return total
1120
+   },
1121
+   getOverFlushInfo(arr){
1122
+     var total = 0
1123
+     if(arr.length >0){
1124
+      for(let i=0;i<arr.length;i++){
1125
+        total += arr[i].stock_count
1126
+      }
1127
+     }
1128
+     return total
1129
+   },
1130
+   getCancelSotckInfo(arr){
1131
+
1132
+     var cancle_toal = 0
1133
+     if(arr.length >0){
1134
+      for(let z=0;z<arr.length;z++){
1135
+        cancle_toal += arr[z].count
1136
+      }
1137
+     }
1138
+     return cancle_toal
1139
+   },
1140
+   getHouseName(id){
1141
+     var storehouse_name = ""
1142
+     for(let i=0;i<this.storehouseList.length;i++){
1143
+       if(id == this.storehouseList[i].id){
1144
+         storehouse_name = this.storehouseList[i].storehouse_name
1145
+       }
1146
+     }
1147
+     return storehouse_name
1148
+   },
1149
+   objectOneMethod({ row, column, rowIndex, columnIndex }) {
1150
+     console.log("column",column)
1151
+     console.log("rowindex",rowIndex)
1152
+     console.log("columnninex",columnIndex)
1153
+    //  if(columnIndex === 1){
1154
+    //    if(rowIndex === 1){
1155
+    //      return {
1156
+    //         rowspan: 1,
1157
+    //         colspan: 3
1158
+    //       };
1159
+    //    }
1160
+    //  }
1161
+   },
1162
+   getWareInfoCount(val,storehouse_id){
1163
+     var count = 0
1164
+     if(val.length > 0){
1165
+       for(let i=0;i<val.length;i++){
1166
+         if(val[i].storehouse_id == storehouse_id){
1167
+             count +=val[i].warehousing_count
1168
+         }
1169
+       }
1170
+     }
1171
+     if(count > 0){
1172
+       return count
1173
+     }else{
1174
+       return ""
1175
+     }
1176
+   },
1177
+   getWareInfoCountOne(val,storehouse_id){
1178
+     var count = 0
1179
+     if(val.length > 0){
1180
+       for(let i=0;i<val.length;i++){
1181
+         if(val[i].storehouse_id == storehouse_id){
1182
+             count +=val[i].stock_count
1183
+         }
1184
+       }
1185
+     }
1186
+     if(count > 0){
1187
+       return count
1188
+     }else{
1189
+       return ""
1190
+     }
1191
+   },
1192
+   getWareInfoCountTwo(val,storehouse_id){
1193
+     var count = 0
1194
+     if(val.length > 0){
1195
+       for(let i=0;i<val.length;i++){
1196
+         count +=val[i].stock_count
1197
+       }
1198
+     }
1199
+     if(count > 0){
1200
+       return count
1201
+     }else{
1202
+       return ""
1203
+     }
1204
+   },
1205
+   changeStorehouseName(){
1206
+     this.getlist()
1207
+   },
1208
+   changeGoodName(){
1209
+    this.getlist()
1210
+   },
1211
+   arraySpanMethod({ row, column, rowIndex, columnIndex }) {
1212
+     console.log("当前行",row)
1213
+     console.log("当前列",column)
1214
+     console.log("当前行号",rowIndex)
1215
+     console.log("当前列号",columnIndex)
1216
+     if(rowIndex == 1 && columnIndex === 4){
1217
+       return {
1218
+        rowspan: 2,
1219
+        colspan: 1
1220
+       };
1221
+     }
1222
+   },
1223
+  }
873 1224
 };
874 1225
 </script>
875 1226
 
@@ -944,4 +1295,26 @@ export default {
944 1295
 .spanClass .cell tr:last-of-type td {
945 1296
   border-bottom: none;
946 1297
 }
1298
+
1299
+/* 合并表格线样式 */
1300
+
1301
+.spanClass .cell {
1302
+  padding: 0 !important;
1303
+}
1304
+
1305
+.spanClass .cell tr {
1306
+  display: inline-block;
1307
+  width: 100%;
1308
+}
1309
+
1310
+.spanClass .cell tr td {
1311
+  padding: 10px 0;
1312
+  border-bottom: 1px solid #ebeef5;
1313
+  display: block;
1314
+  width: 100%;
1315
+}
1316
+.spanClass .cell tr:last-of-type td{
1317
+  border-bottom: none;
1318
+}
1319
+
947 1320
 </style>

+ 0 - 2
src/xt_pages/supply/components/addGoodOrder.vue Parādīt failu

@@ -1213,8 +1213,6 @@ export default {
1213 1213
     checkGoodOrder() {
1214 1214
       var id = this.warese_out_id;
1215 1215
       var warehousing_id = this.id;
1216
-      console.log("采购单ID",id)
1217
-      console.log("采购订单ID",warehousing_id)
1218 1216
       this.loading = true
1219 1217
       getGoodOrderCountList(id, warehousing_id).then((response) => {
1220 1218
         if (response.data.state == 1) {

+ 29 - 0
src/xt_pages/supply/components/addGoodReturn.vue Parādīt failu

@@ -1040,6 +1040,8 @@ export default {
1040 1040
                 orderInfo[i].drug.min_number,
1041 1041
                 orderInfo[i].warehouse_out_id
1042 1042
               );
1043
+              }
1044
+             orderInfo[i].count = this.getWarehoseInfoSix(orderInfo[i].drug_warehouse_info,orderInfo[i].drug.max_unit,orderInfo[i].drug.min_unit,orderInfo[i].drug.min_number,orderInfo[i].warehouse_out_id)
1043 1045
               // orderInfo[i].count = orderInfo[i].count + orderInfo[i].supply_unit
1044 1046
             }
1045 1047
 
@@ -1065,6 +1067,7 @@ export default {
1065 1067
 
1066 1068
           this.recordInfo.tableList = [];
1067 1069
           console.log("相亲233232322332323223322323", orderInfo);
1070
+          console.log("乡里233232322332323223322323",orderInfo)
1068 1071
           this.recordInfo.tableList = orderInfo;
1069 1072
           this.tableDataList = [];
1070 1073
           this.tableDataList = orderInfo;
@@ -1460,6 +1463,30 @@ export default {
1460 1463
           for (let i = 0; i < this.recordInfo.tableList.length; i++) {
1461 1464
             if (index == i) {
1462 1465
               this.recordInfo.tableList[i].supply_count = supply_count;
1466
+    getSupplyCount(supply_count,sum_count,supply_unit,type,min_number,max_unit,min_unit,index){
1467
+     console.log("val23322323",sum_count)
1468
+      var total_count = 0
1469
+
1470
+      if(type == 1){
1471
+       if(supply_unit == max_unit){
1472
+          total_count = supply_count * min_number
1473
+       }
1474
+       if(supply_unit == min_unit){
1475
+         total_count = supply_count
1476
+       }
1477
+       console.log("sum_counts",sum_count)
1478
+       console.log("count232232332",total_count)
1479
+       if(total_count > sum_count){
1480
+         this.$message.error("数量不能大于可退数量!")
1481
+         for(let i=0;i<this.recordInfo.tableList.length;i++){
1482
+           if(index == i){
1483
+             this.recordInfo.tableList[i].supply_count = ""
1484
+           }
1485
+         }
1486
+       }else{
1487
+           for(let i=0;i<this.recordInfo.tableList.length;i++){
1488
+            if(index == i){
1489
+              this.recordInfo.tableList[i].supply_count = supply_count
1463 1490
             }
1464 1491
           }
1465 1492
         }
@@ -1487,6 +1514,8 @@ export default {
1487 1514
     },
1488 1515
 
1489 1516
     getWarehoseInfoSix(arr, max_unit, min_unit, min_number, warehouse_out_id) {
1517
+
1518
+   getWarehoseInfoSix(arr, max_unit, min_unit, min_number,warehouse_out_id) {
1490 1519
       var total = 0;
1491 1520
       var max_str = "";
1492 1521
       var min_str = "";

+ 2 - 2
src/xt_pages/supply/components/editGoodReturn.vue Parādīt failu

@@ -1004,7 +1004,7 @@ export default {
1004 1004
       this.payment = this.total_price - this.arrearage;
1005 1005
     },
1006 1006
     getSupplyCount(supply_count,sum_count,supply_unit,type,min_number,max_unit,min_unit,index){
1007
-     console.log("val23322323",supply_count,sum_count,supply_unit,type,min_number,max_unit,min_unit)
1007
+      console.log("sum_count2323232",sum_count)
1008 1008
       var total_count = 0
1009 1009
       
1010 1010
       if(type == 1){
@@ -1159,7 +1159,7 @@ export default {
1159 1159
                 // orderInfo[i].count = this.getTotalStockCountTwo(goodList[j].good_warehouse_info);
1160 1160
                // orderInfo[i].supply_total = this.getTotalStockCountTwo(goodList[j].good_warehouse_info);
1161 1161
               }
1162
-              orderInfo[i].sum_count = orderInfo[i].count
1162
+              orderInfo[i].sum_count = orderInfo[i].sum_count
1163 1163
               orderInfo[i].min_number = 0
1164 1164
               orderInfo[i].count = orderInfo[i].count;
1165 1165
               orderInfo[i].supply_total = orderInfo[i].supply_total

+ 2 - 1
src/xt_pages/supply/purchaseOrderQuery.vue Parādīt failu

@@ -103,9 +103,10 @@
103 103
         </el-table-column>
104 104
         <el-table-column label="关联采购单号" align="center" width="150">
105 105
           <template slot-scope="scope">
106
+            
106 107
             <tr style="background: none;" v-for="(item,index) in scope.row.orderOut" :key="index">
107 108
                  <td style="border-right: none;">{{item.good_number}}</td>
108
-              </tr>
109
+             </tr>
109 110
           </template>
110 111
         </el-table-column>
111 112
         <el-table-column label="采购金额" align="center">

+ 1 - 0
src/xt_pages/supply/supplyQuery.vue Parādīt failu

@@ -201,6 +201,7 @@ export default {
201 201
       tableList: [],
202 202
       tyep_name: "",
203 203
       sType: [],
204
+     
204 205
     };
205 206
   },
206 207
 

+ 15 - 3
src/xt_pages/user/components/PatientDetail.vue Parādīt failu

@@ -264,6 +264,13 @@
264 264
                   </el-checkbox>
265 265
                 </el-checkbox-group>
266 266
               </el-form-item>
267
+
268
+              <el-form-item label="疑难内瘘:">
269
+                <el-radio-group v-model="form.troble_shoot">
270
+                  <el-radio :label="1">是</el-radio>
271
+                  <el-radio :label="2">否</el-radio>
272
+                </el-radio-group>
273
+              </el-form-item>
267 274
             </el-col>
268 275
 
269 276
             <!--<el-col :span="16" >-->
@@ -1080,7 +1087,8 @@ const defaultForm = {
1080 1087
   expense_kind: "",
1081 1088
   contact_name: "",
1082 1089
   sch_remark:"",
1083
-  org_id:0
1090
+  org_id:0,
1091
+  troble_shoot:"",
1084 1092
 };
1085 1093
 
1086 1094
 export default {
@@ -1169,7 +1177,11 @@ export default {
1169 1177
           { required: true, message: "请填写身份证号", trigger: "blur" }
1170 1178
         ],
1171 1179
         birth: [{ required: true, message: "请填写生日", trigger: "blur" }]
1172
-      }
1180
+      },
1181
+      shootList:[
1182
+       {id:1,name:"是"},
1183
+       {id:2,name:"否"}
1184
+      ]
1173 1185
     };
1174 1186
   },
1175 1187
   computed: {
@@ -1263,7 +1275,7 @@ export default {
1263 1275
             this.form.dialysisNo = patietInfo.dialysis_no;
1264 1276
             this.form.gender = patietInfo.gender;
1265 1277
             this.form.is_infectious = patietInfo.is_infectious;
1266
-           
1278
+            this.form.troble_shoot = patietInfo.troble_shoot
1267 1279
             // this.form.record_date = patietInfo.is_infectious
1268 1280
             this.form.response_result = patietInfo.response_result;
1269 1281
             this.form.remind_cycle = patietInfo.remind_cycle;

+ 10 - 1
src/xt_pages/user/components/PatientForm.vue Parādīt failu

@@ -335,6 +335,13 @@
335 335
                     >
336 336
                   </el-checkbox-group>
337 337
                 </el-form-item>
338
+
339
+                  <el-form-item label="疑难内瘘:">
340
+                    <el-radio-group v-model="form.troble_shoot">
341
+                      <el-radio :label="1">是</el-radio>
342
+                      <el-radio :label="2">否</el-radio>
343
+                    </el-radio-group>
344
+                   </el-form-item>
338 345
               </el-col>
339 346
               
340 347
               <!-- <el-col :span="8">
@@ -1005,7 +1012,7 @@ const defaultForm = {
1005 1012
   expense_kind: "",
1006 1013
   contact_name: "",
1007 1014
   user_sys_before_count: "",
1008
-
1015
+  troble_shoot:2,
1009 1016
   formItem: [
1010 1017
     {
1011 1018
       id: 0,
@@ -1438,6 +1445,7 @@ export default {
1438 1445
           if (this.isEdit) {
1439 1446
             this.form.age = parseInt(this.form.age);
1440 1447
             this.form.user_sys_before_count = this.form.user_sys_before_count.toString();
1448
+            this.form.troble_shoot = parseInt(this.form.troble_shoot)
1441 1449
             if(this.form.avatar.indexOf('?imageView2/2/w/500/h/500/q/90')!=-1){
1442 1450
                this.form.avatar = this.form.avatar
1443 1451
             }else{
@@ -1475,6 +1483,7 @@ export default {
1475 1483
               });
1476 1484
           } else {
1477 1485
             this.form.age = parseInt(this.form.age);
1486
+            this.form.troble_shoot = parseInt(this.form.troble_shoot)
1478 1487
             createPatient(this.form)
1479 1488
               .then(response => {
1480 1489
                 if (response.data.state == 0) {

+ 1 - 3
src/xt_pages/user/doctorAdvice.vue Parādīt failu

@@ -182,8 +182,7 @@
182 182
           <template slot-scope="scope">
183 183
             <el-dropdown trigger="click" v-if="scope.row.parent_id == 0">
184 184
               <span class="el-dropdown-link" v-if="scope.row.parent_id == 0">
185
-                {{ scope.row.advice_name
186
-                }}<i class="el-icon-arrow-down el-icon--right"></i>
185
+                {{ scope.row.advice_name}}<i class="el-icon-arrow-down el-icon--right"></i>
187 186
               </span>
188 187
 
189 188
               <el-dropdown-menu slot="dropdown">
@@ -3390,7 +3389,6 @@ export default {
3390 3389
             }
3391 3390
           });
3392 3391
           let list = Object.values(dataInfo);
3393
-          // console.log("list", list);
3394 3392
           list.map(item => {
3395 3393
             for (let i = 0; i < advice.length; i++) {
3396 3394
               if (