Elizabeth's proactive approach involves introducing urinal toilet attachment , an ingenious concept that optimizes space and functionality.

purchaseNewStockQuery.vue 33KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057
  1. <template>
  2. <div class="main-contain">
  3. <div class="app-container "
  4. style="padding-left:0px;margin:0px;"
  5. v-loading="loading"
  6. element-loading-text="拼命加载中">
  7. <div style="justify-content: space-between;margin: 0px 0 12px 0;display: flex;align-items: center;">
  8. <div>
  9. <span style="font-size:14px;color:#606266">操作时间:</span>
  10. <el-date-picker
  11. size="small"
  12. v-model="start_time"
  13. prefix-icon="el-icon-date"
  14. :editable="false"
  15. style="width: 150px;"
  16. type="date"
  17. placeholder="选择日期时间"
  18. align="right"
  19. format="yyyy-MM-dd"
  20. value-format="yyyy-MM-dd"
  21. @change="startTimeChange"
  22. :picker-options="pickerOptions"
  23. :clearable="false"
  24. ></el-date-picker>
  25. <span>-</span>
  26. <el-date-picker
  27. size="small"
  28. v-model="end_time"
  29. prefix-icon="el-icon-date"
  30. :editable="false"
  31. style="width: 150px;"
  32. type="date"
  33. placeholder="选择日期时间"
  34. align="right"
  35. format="yyyy-MM-dd"
  36. value-format="yyyy-MM-dd"
  37. @change="endTimeChange"
  38. :picker-options="pickerOptions"
  39. :clearable="false"
  40. ></el-date-picker>
  41. <span style="font-size:14px;color:#606266">耗材类型:</span>
  42. <el-select v-model="good_type" style="width:200px;margin-right:10px;" placeholder="请选择"
  43. filterable
  44. @change="changeGoodTypeName">
  45. <el-option
  46. v-for="item in goodTypeList"
  47. :key="item.id"
  48. :label="item.type_name"
  49. :value="item.id">
  50. </el-option>
  51. </el-select>
  52. <el-input v-model="keyword" style="width:200px" placeholder="请输入耗材名称或生产厂商" ></el-input>
  53. <el-button type="primary" icon="el-icon-search" @click="seach">搜索</el-button>
  54. </div>
  55. <div>
  56. <!-- <el-button type="primary" size="small" @click="toOverCount">调试</el-button> -->
  57. <el-button type="primary" size="small" @click="toPrint">打印</el-button>
  58. <el-button type="primary" size="small" @click="exportList">导出</el-button>
  59. </div>
  60. </div>
  61. <el-table
  62. :row-style="{ color: '#303133' }"
  63. :header-cell-style="{
  64. backgroundColor: 'rgb(245, 247, 250)',
  65. color: '#606266'
  66. }"
  67. :data="tableList"
  68. :class="signAndWeighBoxPatients"
  69. border
  70. >
  71. <el-table-column label="耗材编码" align="center" v-if="org_id ==9956 || org_id == 0">
  72. <template slot-scope="scope">
  73. <span v-if="scope.row.good_number>0">{{ scope.row.good_number?scope.row.good_number:"" }}</span>
  74. </template>
  75. </el-table-column>
  76. <el-table-column label="耗材类型" align="center">
  77. <template slot-scope="scope">
  78. {{getGoodTypeName(scope.row.good_type_id)}}
  79. </template>
  80. </el-table-column>
  81. <el-table-column label="耗材名称" align="center">
  82. <template slot-scope="scope">
  83. {{scope.row.good_name}}
  84. </template>
  85. </el-table-column>
  86. <el-table-column label="规格&单位" align="center">
  87. <template slot-scope="scope">
  88. {{scope.row.specification_name}}/{{scope.row.packing_unit}}
  89. </template>
  90. </el-table-column>
  91. <el-table-column label="生产厂商" align="center">
  92. <template slot-scope="scope">
  93. {{getManufacturName(scope.row.manufacturer)}}
  94. </template>
  95. </el-table-column>
  96. <el-table-column label="经销商" align="center">
  97. <template slot-scope="scope">
  98. {{getDearName(scope.row.dealer)}}
  99. </template>
  100. </el-table-column>
  101. <el-table-column label="期初结余" align="center">
  102. <el-table-column prop="stockIn" label="数量" width="100">
  103. </el-table-column>
  104. <el-table-column prop="stock_in_price" label="进货金额" width="100">
  105. </el-table-column>
  106. <el-table-column prop="stockMoney" label="销售金额" width="100">
  107. </el-table-column>
  108. </el-table-column>
  109. <el-table-column label="本期增加" align="center">
  110. <el-table-column prop="stockAdd" label="数量" width="100">
  111. </el-table-column>
  112. <el-table-column prop="addStockMoney" label="进货金额" width="100">
  113. </el-table-column>
  114. <el-table-column prop="saleStockMoney" label="销售金额" width="100">
  115. </el-table-column>
  116. </el-table-column>
  117. <el-table-column label="本期减少" align="center">
  118. <el-table-column prop="outStock" label="数量" width="100">
  119. </el-table-column>
  120. <el-table-column prop="stockOutprice" label="进货金额" width="100">
  121. </el-table-column>
  122. <el-table-column prop="saleOutMoney" label="销售金额" width="100">
  123. </el-table-column>
  124. </el-table-column>
  125. <el-table-column label="期末结余" align="center">
  126. <el-table-column prop="overStock" label="数量" width="100">
  127. </el-table-column>
  128. <el-table-column prop="overPrice" label="进货金额" width="100">
  129. </el-table-column>
  130. <el-table-column prop="overMoney" label="销售金额" width="100">
  131. </el-table-column>
  132. </el-table-column>
  133. </el-table>
  134. <el-pagination
  135. @size-change="handleSizeChange"
  136. @current-change="handleCurrentChange"
  137. :page-sizes="[10, 50, 100,200,500,1000]"
  138. :page-size="10"
  139. background
  140. align="right"
  141. style="margin-top:20px;"
  142. layout="total, sizes, prev, pager, next, jumper"
  143. :total="total"
  144. >
  145. </el-pagination>
  146. </div>
  147. </div>
  148. </template>
  149. <script>
  150. import { getStorehouseList,getNewPurchaseStockQuery,getGoodOverCount } from "@/api/drug/drug"
  151. import {
  152. getStockDrugCount
  153. } from "@/api/stock";
  154. import { uParseTime } from '@/utils/tools'
  155. const moment = require('moment')
  156. export default {
  157. data(){
  158. return{
  159. tableList:[],
  160. goodList:[
  161. {id:1,name:"全部耗材"},
  162. {id:2,name:"库存预警"},
  163. ],
  164. houseList:[],
  165. storehouse_id:0,
  166. good_type:0,
  167. multipleSelection: [],
  168. signAndWeighBoxPatients: "sign-and-weigh-box-patients",
  169. manufacturerList:[],
  170. limit:10,
  171. page:1,
  172. total:0,
  173. keyword:"",
  174. goodTypeList:[],
  175. start_time:"",
  176. end_time:"",
  177. countList:[],
  178. outCountList:[],
  179. autoCountList:[],
  180. cancelCountList:[],
  181. org_id:this.$store.getters.xt_user.org_id,
  182. dialogVisible:false,
  183. start_first_time:"",
  184. end_first_time:"",
  185. tableData:[],
  186. good_id:0,
  187. patientList:[],
  188. good_name:"",
  189. specification_name:"",
  190. loading:false,
  191. pickerOptions:{ //禁用当前日期之前的日期
  192. disabledDate(v) {
  193. return v.getTime() < 1667491200000
  194. },
  195. },
  196. dealerList:[],
  197. }
  198. },
  199. methods:{
  200. changeStorehouseName(){
  201. },
  202. changeGoodTypeName(){
  203. this.getlist()
  204. },
  205. getStorehouseList(){
  206. getStorehouseList().then(response=>{
  207. if(response.data.state == 1){
  208. var houseList = response.data.data.list
  209. var obj = {id:0,storehouse_name:"全部"}
  210. this.houseList.push(obj)
  211. for(let i=0;i<houseList.length;i++){
  212. this.houseList.push(houseList[i])
  213. }
  214. this.manufacturerList = response.data.data.manufacturerList
  215. var obj = {id:0,type_name:"全部"}
  216. this.goodTypeList.push(obj)
  217. var goodTypeList = response.data.data.goodTypeList
  218. for(let i=0;i<goodTypeList.length;i++){
  219. this.goodTypeList.push(goodTypeList[i])
  220. }
  221. this.patientList = response.data.data.patientList
  222. this.dealerList = response.data.data.dealerList
  223. }
  224. })
  225. },
  226. getlist(){
  227. this.loading = true
  228. var params = {
  229. good_type:this.good_type,
  230. keyword:this.keyword,
  231. page:this.page,
  232. limit:this.limit,
  233. start_time:this.start_time,
  234. end_time:this.end_time,
  235. }
  236. getNewPurchaseStockQuery(params).then(response=>{
  237. if(response.data.state == 1){
  238. var list = response.data.data.list
  239. this.loading = false
  240. for(let i=0;i<list.length;i++){
  241. list[i].stockIn = list[i].GoodStartFlowInfo.over_count
  242. list[i].stock_in_price = "/"
  243. list[i].stockMoney = "/"
  244. // list[i].stockIn = this.getWarehouseInfoStart(list[i].StartFlowInfo,list[i].StartOutFlowInfo,list[i].WareStartStockInventoryProfit,list[i].WareStartStockInventoryLosses,list[i].StartCancelFlowInfo) //期初结余
  245. // list[i].stock_in_price = this.getWarehouseInfoStartPrice(list[i].StartFlowInfo,list[i].StartOutFlowInfo,list[i].WareStartStockInventoryProfit,list[i].WareStartStockInventoryLosses,list[i].StartCancelFlowInfo)
  246. // list[i].stockMoney = this.getWarehouseInfoStartMoney(list[i].StartFlowInfo,list[i].StartOutFlowInfo,list[i].WareStartStockInventoryProfit,list[i].WareStartStockInventoryLosses,list[i].StartCancelFlowInfo)
  247. list[i].stockAdd = this.getWarehouseInfoOne(list[i].StartFlowWarehouseInfo,list[i].WareStartEndStockInventoryProfit)//期间增加
  248. // list[i].addStockMoney = this.getAddStockMony(list[i].StartFlowWarehouseInfo,list[i].WareStartEndStockInventoryProfit)
  249. // list[i].saleStockMoney = this.getSaleStockMony(list[i].StartFlowWarehouseInfo,list[i].WareStartEndStockInventoryProfit)
  250. list[i].addStockMoney = "/"
  251. list[i].saleStockMoney = "/"
  252. list[i].outStock = this.getWarehosueOutInfo(list[i].WarehouseOutInfoStart,list[i].WareStartEndStockInventoryLosses,list[i].StartEndCancelFLowInfo)//本期减少
  253. // list[i].stockOutprice = this.stockOutprice(list[i].WarehouseOutInfoStart,list[i].WareStartEndStockInventoryLosses,list[i].StartEndCancelFLowInfo)
  254. // list[i].saleOutMoney = this.getSaleStockMony(list[i].WarehouseOutInfoStart,list[i].WareStartEndStockInventoryLosses,list[i].StartEndCancelFLowInfo)
  255. list[i].stockOutprice = "/"
  256. list[i].saleOutMoney = "/"
  257. // list[i].overStock= this.getEndWarehouseInfo(list[i].EndFlowInfo,list[i].EndFlowOutInfo,list[i].WareEndStockInventoryProfit,list[i].WareEndStockInventoryLosses,list[i].EndCancelFLowInfo)
  258. // list[i].overPrice= this.getEndOverPrice(list[i].EndFlowInfo,list[i].EndFlowOutInfo,list[i].WareEndStockInventoryProfit,list[i].WareEndStockInventoryLosses,list[i].EndCancelFLowInfo)
  259. // list[i].overMoney = this.getEndSalePrice(list[i].EndFlowInfo,list[i].EndFlowOutInfo,list[i].WareEndStockInventoryProfit,list[i].WareEndStockInventoryLosses,list[i].EndCancelFLowInfo)
  260. list[i].overStock = list[i].GoodEndFlowInfo.over_count
  261. list[i].overPrice = "/"
  262. list[i].overMoney = "/"
  263. }
  264. console.log("listwowowoowowowow",list)
  265. this.tableList = list
  266. this.total = response.data.data.total
  267. this.manufacturerList = response.data.data.manufacturerList
  268. }
  269. })
  270. },
  271. getManufacturName(id){
  272. var manufacturer_name = ""
  273. for(let i=0;i<this.manufacturerList.length;i++){
  274. if(id == this.manufacturerList[i].id){
  275. manufacturer_name = this.manufacturerList[i].manufacturer_name
  276. }
  277. }
  278. return manufacturer_name
  279. },
  280. handleSizeChange(val) {
  281. this.limit = val;
  282. this.getlist()
  283. },
  284. handleCurrentChange(val) {
  285. this.page = val;
  286. this.getlist()
  287. },
  288. handleSizeChangeOne(val) {
  289. this.limitone = val;
  290. this.toDialogClick(this.good_id,this.good_name,this.specification_name)
  291. },
  292. handleCurrentChangeOne(val) {
  293. this.pageone = val;
  294. this.toDialogClick(this.good_id,this.good_name,this.specification_name)
  295. },
  296. seach(){
  297. this.goodTypeList = []
  298. this.getStorehouseList()
  299. this.getlist()
  300. },
  301. getGoodTypeName(id){
  302. var type_name = ""
  303. for(let i=0;i<this.goodTypeList.length;i++){
  304. if(id == this.goodTypeList[i].id){
  305. type_name = this.goodTypeList[i].type_name
  306. }
  307. }
  308. return type_name
  309. },
  310. getHouseName(id){
  311. var storehouse_name = ""
  312. for(let i=0;i<this.houseList.length;i++){
  313. if(id == this.houseList[i].id){
  314. storehouse_name = this.houseList[i].storehouse_name
  315. }
  316. }
  317. return storehouse_name
  318. },
  319. getWareInfoCount(val,storehouse_id){
  320. var count = 0
  321. if(val.length > 0){
  322. for(let i=0;i<val.length;i++){
  323. if(val[i].storehouse_id == storehouse_id){
  324. count +=val[i].warehousing_count
  325. }
  326. }
  327. }
  328. if(count > 0){
  329. return count
  330. }else{
  331. return ""
  332. }
  333. },
  334. getStockDrugCount(){
  335. var params ={
  336. keywords: this.keywords,
  337. start_time:this.start_time,
  338. end_time:this.end_time,
  339. }
  340. getStockDrugCount(params).then(response=>{
  341. if(response.data.state == 1){
  342. var outlist = response.data.data.outList
  343. this.outCountList = outlist
  344. var autoCount = response.data.data.autoCount
  345. this.autoCountList = autoCount
  346. var totalCount = response.data.data.totalCount
  347. this.cancelCountList = totalCount
  348. }
  349. })
  350. },
  351. getWareInfoCountOne(val,storehouse_id){
  352. var count = 0
  353. if(val.length > 0){
  354. for(let i=0;i<val.length;i++){
  355. if(val[i].storehouse_id == storehouse_id){
  356. count +=val[i].stock_count
  357. }
  358. }
  359. }
  360. if(count > 0){
  361. return count
  362. }else{
  363. return ""
  364. }
  365. },
  366. getOutCount(id){
  367. var count = 0
  368. for(let i=0;i<this.outCountList.length;i++){
  369. if(id == this.outCountList[i].good_id){
  370. count = this.outCountList[i].count
  371. }
  372. }
  373. return count
  374. },
  375. getAutoCount(id){
  376. var count= 0
  377. for(let i=0;i<this.autoCountList.length;i++){
  378. if(id == this.autoCountList[i].good_id){
  379. count = this.autoCountList[i].count
  380. }
  381. }
  382. return count
  383. },
  384. getCancelCount(id){
  385. var count = 0
  386. for(let i=0;i<this.cancelCountList.length;i++){
  387. if(id == this.cancelCountList[i].good_id){
  388. count = this.cancelCountList[i].count
  389. }
  390. }
  391. return count
  392. },
  393. getCancelCountInfo(cancel_stock_info,storehouse_id){
  394. var count = 0
  395. if(cancel_stock_info.length >0){
  396. for(let i=0;i<cancel_stock_info.length;i++){
  397. if(storehouse_id == cancel_stock_info[i].storehouse_id){
  398. count += cancel_stock_info[i].count
  399. }
  400. }
  401. }
  402. return count
  403. },
  404. getWareOutInfoCount(warehouse_out_info,storehouse_id){
  405. var count = 0
  406. if(warehouse_out_info.length > 0){
  407. for(let i=0;i<warehouse_out_info.length;i++){
  408. if(storehouse_id == warehouse_out_info[i].storehouse_id){
  409. count +=warehouse_out_info[i].count
  410. }
  411. }
  412. }
  413. return count
  414. },
  415. getInCount(id){
  416. var count= 0
  417. for(let i=0;i<this.countList.length;i++){
  418. if(id == this.countList[i].good_id){
  419. count = this.countList[i].count
  420. }
  421. }
  422. return count
  423. },
  424. getOutCount(id){
  425. var count = 0
  426. for(let i=0;i<this.outCountList.length;i++){
  427. if(id == this.outCountList[i].good_id){
  428. count = this.outCountList[i].count
  429. }
  430. }
  431. return count
  432. },
  433. getAutoCount(id){
  434. var count= 0
  435. for(let i=0;i<this.autoCountList.length;i++){
  436. if(id == this.autoCountList[i].good_id){
  437. count = this.autoCountList[i].count
  438. }
  439. }
  440. return count
  441. },
  442. getCancelCount(id){
  443. var count = 0
  444. for(let i=0;i<this.cancelCountList.length;i++){
  445. if(id == this.cancelCountList[i].good_id){
  446. count = this.cancelCountList[i].count
  447. }
  448. }
  449. return count
  450. },
  451. getStockCount(id){
  452. var stock_count = 0
  453. for(let i=0;i<this.countList.length;i++){
  454. if(id == this.countList[i].good_id){
  455. stock_count = this.countList[i].stock_count
  456. }
  457. }
  458. return stock_count
  459. },
  460. getWareInfo(arr){
  461. var total = 0
  462. if(arr.length > 0){
  463. for(let i=0;i<arr.length;i++){
  464. total += parseInt(arr[i].warehousing_count)
  465. }
  466. }else{
  467. total = ""
  468. }
  469. return total
  470. },
  471. getOverplus(arr){
  472. var total = 0
  473. if(arr.length > 0){
  474. for(let i=0;i<arr.length;i++){
  475. total += arr[i].stock_count
  476. }
  477. }else{
  478. total = ""
  479. }
  480. return total
  481. },
  482. getCancelInfo(arr){
  483. var total = 0
  484. if(arr.length > 0){
  485. for(let i=0;i<arr.length;i++){
  486. total += arr[i].count
  487. }
  488. }else{
  489. total = ""
  490. }
  491. return total
  492. },
  493. getOverFlushInfo(arr){
  494. var total = 0
  495. if(arr.length >0){
  496. for(let i=0;i<arr.length;i++){
  497. total += arr[i].stock_count
  498. }
  499. }
  500. return total
  501. },
  502. startFirstTimeChange(){
  503. this.getlist()
  504. },
  505. endEndTimeChange(){
  506. this.getlist()
  507. },
  508. getTime(val) {
  509. if(val < 0){
  510. return ""
  511. }
  512. if(val == ""){
  513. return ""
  514. }else {
  515. return uParseTime(val, '{y}-{m}-{d}')
  516. }
  517. },
  518. getName(id){
  519. var name = ""
  520. for(let i=0;i<this.patientList.length;i++){
  521. if(id == this.patientList[i].id){
  522. name = this.patientList[i].name
  523. }
  524. }
  525. return name
  526. },
  527. endTimeChange(){
  528. this.getlist()
  529. },
  530. startTimeChange(){
  531. this.getlist()
  532. },
  533. getWarehouseInfoStart(arr1,arr2,arr3,arr4,arr5){
  534. var count =0
  535. var countOne =0
  536. var countTwo= 0
  537. var countthree = 0 //期初
  538. var countfour = 0
  539. var countfive = 0
  540. if(arr1!=null && arr1.length > 0){
  541. for(let i=0;i<arr1.length;i++){
  542. countOne +=arr1[i].count
  543. }
  544. }
  545. if(arr2!=null && arr2.length > 0){
  546. for(let i=0;i<arr2.length;i++){
  547. countTwo +=arr2[i].count
  548. }
  549. }
  550. if(arr3!=null && arr3.length > 0){
  551. for(let i=0;i<arr3.length;i++){
  552. countthree +=arr3[i].count
  553. }
  554. }
  555. if(arr4!=null && arr4.length > 0){
  556. for(let i=0;i<arr4.length;i++){
  557. countfour +=arr4[i].count
  558. }
  559. }
  560. if(arr5!=null && arr5.length > 0){
  561. for(let i=0;i<arr5.length;i++){
  562. countfive +=arr5[i].count
  563. }
  564. }
  565. console.log("countOne",countOne)
  566. console.log("countTwo",countTwo)
  567. console.log("countthree",countthree)
  568. console.log("countfour",countfour)
  569. console.log("*********************")
  570. count = countOne - countTwo + countthree - countfour + countfive
  571. if(count > 0 ){
  572. return count
  573. }else{
  574. return 0
  575. }
  576. },
  577. getWarehouseInfo(val){
  578. var count =0
  579. for(let i=0;i<val.length;i++){
  580. count +=val[i].stock_count
  581. }
  582. if(count > 0 ){
  583. return count
  584. }else{
  585. return 0
  586. }
  587. },
  588. getWarehouseInfoOne(val,val2){
  589. var count =0
  590. var countOne = 0
  591. var all_count = 0
  592. if(val!=null && val.length >0){
  593. for(let i=0;i<val.length;i++){
  594. count +=val[i].count
  595. }
  596. }
  597. if(val2!=null && val2.length > 0){
  598. for(let i=0;i<val2.length;i++){
  599. countOne +=val2[i].count
  600. }
  601. }
  602. all_count = count + countOne
  603. console.log("count2332323223232o2222222222wide",count)
  604. console.log("countONE23232322323323223",countOne)
  605. console.log("all_count9999999999999wode",all_count)
  606. console.log("-------------------------------------------")
  607. if(all_count > 0 ){
  608. return all_count
  609. }else{
  610. return 0
  611. }
  612. },
  613. getAddStockMony(val,val2){
  614. var total_price =0
  615. var total_price_one = 0
  616. var all_price = 0
  617. if(val!=null && val.length >0){
  618. for(let i=0;i<val.length;i++){
  619. total_price +=val[i].count * val[i].buy_price
  620. }
  621. }
  622. if(val2!=null && val2.length > 0){
  623. for(let i=0;i<val2.length;i++){
  624. total_price_one +=val2[i].count * val2[i].price
  625. }
  626. }
  627. all_price = total_price + total_price_one
  628. if(all_price >0 ){
  629. return total_price.toFixed(2)
  630. }else{
  631. return "0.00"
  632. }
  633. },
  634. getSaleStockMony(val,val2){
  635. var total_price =0
  636. var total_price_one = 0
  637. var all_price = 0
  638. if(val!=null && val.length >0){
  639. for(let i=0;i<val.length;i++){
  640. total_price +=val[i].count * val[i].price
  641. }
  642. }
  643. if(val2!=null && val2.length > 0){
  644. for(let i=0;i<val2.length;i++){
  645. total_price_one +=val2[i].count * val2[i].price
  646. }
  647. }
  648. all_price = total_price + total_price_one
  649. if(all_price >0 ){
  650. return all_price.toFixed(2)
  651. }else{
  652. return "0.00"
  653. }
  654. },
  655. getWarehouseOut(val){
  656. var count = 0
  657. for(let i=0;i<val.length;i++){
  658. count +=val[i].count
  659. }
  660. if(count >0){
  661. return count
  662. }else{
  663. return 0
  664. }
  665. },
  666. open(){
  667. // this.start_time = moment().year(2022).month(10).date(4).format('YYYY-MM-DD')
  668. this.start_time = moment().startOf('month').format('YYYY-MM-DD')
  669. this.end_time = moment(new Date()).add('year',0).format("YYYY-MM-DD")
  670. this.houseList = []
  671. this.goodTypeList= []
  672. this.getStorehouseList()
  673. this.getlist()
  674. //this.getStockDrugCount()
  675. },
  676. getWarehouseInfoStartPrice(arr,arr1,arr2,arr3,arr4){
  677. var total_price = 0
  678. var total_price_one = 0
  679. var total_price_two = 0
  680. var total_price_three = 0
  681. var total_price_four = 0
  682. var total_price_all = 0
  683. if(arr!=null&&arr.length > 0){
  684. for(let i=0;i<arr.length;i++){
  685. total_price += arr[i].count * arr[i].buy_price
  686. }
  687. }
  688. if(arr1!=null && arr1.length > 0){
  689. for(let i=0;i<arr1.length;i++){
  690. total_price_one +=arr1[i].count * arr1[i].buy_price
  691. }
  692. }
  693. if(arr2!=null && arr2.length > 0){
  694. for(let i=0;i<arr2.length;i++){
  695. total_price_two +=arr2[i].count * arr2[i].buy_price
  696. }
  697. }
  698. if(arr3!=null && arr3.length > 0){
  699. for(let i=0;i<arr3.length;i++){
  700. total_price_three +=arr3[i].count * arr3[i].buy_price
  701. }
  702. }
  703. if(arr4!=null && arr4.length > 0){
  704. for(let i=0;i<arr4.length;i++){
  705. total_price_three +=arr4[i].count * arr4[i].buy_price
  706. }
  707. }
  708. total_price_all = total_price - total_price_one + total_price_two - total_price_three + total_price_four
  709. if (total_price_all > 0) {
  710. return total_price_all.toFixed(2)
  711. }else{
  712. return "0.00"
  713. }
  714. },
  715. getWarehouseInfoStartMoney(arr,arr1,arr2,arr3,arr4){
  716. var total_price = 0
  717. var total_price_one = 0
  718. var total_price_two = 0
  719. var total_price_three = 0
  720. var total_price_four = 0
  721. var total_price_all = 0
  722. if(arr!=null && arr.length >0){
  723. for(let i=0;i<arr.length;i++){
  724. total_price +=arr[i].count * arr[i].price
  725. }
  726. }
  727. if(arr1!=null && arr1.length > 0){
  728. for(let i=0;i<arr1.length;i++){
  729. total_price_one +=arr1[i].count * arr1[i].price
  730. }
  731. }
  732. if(arr2!=null && arr2.length > 0){
  733. for(let i=0;i<arr2.length;i++){
  734. total_price_two +=arr2[i].count * arr2[i].price
  735. }
  736. }
  737. if(arr3!=null && arr3.length > 0){
  738. for(let i=0;i<arr3.length;i++){
  739. total_price_three +=arr3[i].count * arr3[i].price
  740. }
  741. }
  742. if(arr4!=null && arr4.length > 0){
  743. for(let i=0;i<arr4.length;i++){
  744. total_price_four +=arr4[i].count * arr4[i].price
  745. }
  746. }
  747. total_price_all = total_price - total_price_one + total_price_two - total_price_three + total_price_four
  748. if (total_price_all > 0) {
  749. return total_price_all.toFixed(2)
  750. }else{
  751. return "0.00"
  752. }
  753. },
  754. getWarehosueOutInfo(val,val2,val3){
  755. var count = 0
  756. var count_one = 0
  757. var all_count = 0
  758. var count_two = 0
  759. if(val!=null && val.length >0){
  760. for(let i=0;i<val.length;i++){
  761. count +=val[i].count
  762. }
  763. }
  764. if(val2!=null && val2.length > 0){
  765. for(let i=0;i<val2.length;i++){
  766. count_one +=val2[i].count
  767. }
  768. }
  769. if(val3!=null && val3.length > 0){
  770. for(let i=0;i<val3.length;i++){
  771. count_two +=val3[i].count
  772. }
  773. }
  774. all_count = count +count_one - count_two
  775. if(all_count >0){
  776. return all_count
  777. }else{
  778. return 0
  779. }
  780. },
  781. stockOutprice(val,val2,val3){
  782. var total_price = 0
  783. var total_price_one = 0
  784. var total_price_two = 0
  785. var all_price = 0
  786. if(val!=null && val.length >0){
  787. for(let i=0;i<val.length;i++){
  788. total_price +=val[i].count * val[i].buy_price
  789. }
  790. }
  791. if(val2!=null && val2.length > 0){
  792. for(let i=0;i<val2.length;i++){
  793. total_price_one +=val2[i].count * val2[i].buy_price
  794. }
  795. }
  796. if(val3!=null && val3.length > 0){
  797. for(let i=0;i<val3.length;i++){
  798. total_price_two +=val3[i].count * val3[i].buy_price
  799. }
  800. }
  801. all_price = total_price + total_price_one - total_price_two
  802. if(all_price >0){
  803. return all_price.toFixed(2)
  804. }else{
  805. return "0.00"
  806. }
  807. },
  808. saleOutprice(val,val2,val3){
  809. var total_price = 0
  810. var total_price_one = 0
  811. var all_price = 0
  812. var total_price_two = 0
  813. if(val!=null && val.length >0){
  814. for(let i=0;i<val.length;i++){
  815. total_price +=val[i].count * val[i].xt_warehouse_info.packing_price
  816. }
  817. }
  818. if(val2!=null && val2.length > 0){
  819. for(let i=0;i<val2.length;i++){
  820. total_price_one +=val2[i].count * val2[i].price
  821. }
  822. }
  823. if(val3!=null && val3.length > 0){
  824. for(let i=0;i<val3.length;i++){
  825. total_price_two +=val3[i].count * val3[i].price
  826. }
  827. }
  828. all_price = total_price + total_price_one - total_price_two
  829. if(all_price >0){
  830. return all_price.toFixed(2)
  831. }else{
  832. return "0.00"
  833. }
  834. },
  835. getEndWarehouseInfo(val,val3,val1,val2,val4){
  836. var count = 0
  837. var count_one = 0
  838. var count_two = 0
  839. var count_three =0
  840. var count_four = 0
  841. var all_count = 0
  842. if(val!=null && val.length >0){
  843. for(let i=0;i<val.length;i++){
  844. count +=val[i].count
  845. }
  846. }
  847. if(val1!=null&&val1.length >0){
  848. for(let i=0;i<val1.length;i++){
  849. count_one +=val1[i].count
  850. }
  851. }
  852. if(val3!=null&& val3.length > 0){
  853. for(let i=0;i<val3.length;i++){
  854. count_three +=val3[i].count
  855. }
  856. }
  857. if(val2!=null&&val2.length >0){
  858. for(let i=0;i<val2.length;i++){
  859. count_two +=val2[i].count
  860. }
  861. }
  862. if(val4!=null&&val4.length >0){
  863. for(let i=0;i<val4.length;i++){
  864. count_four +=val4[i].count
  865. }
  866. }
  867. all_count = count- count_three + count_one - count_two + count_four
  868. if(all_count >0){
  869. return all_count
  870. }else{
  871. return 0
  872. }
  873. },
  874. getEndOverPrice(val,val3,val1,val2,val4){
  875. var total_price = 0
  876. var total_price_one = 0
  877. var total_price_two = 0
  878. var total_price_three = 0
  879. var total_price_four =0
  880. var all_price = 0
  881. if(val!=null && val.length >0){
  882. for(let i=0;i<val.length;i++){
  883. total_price +=val[i].count * val[i].buy_price
  884. }
  885. }
  886. if(val1!=null && val1.length > 0){
  887. for(let i=0;i<val1.length;i++){
  888. total_price_one +=val1[i].count * val1[i].buy_price
  889. }
  890. }
  891. if(val3!=null && val3.length > 0){
  892. for(let i=0;i<val3.length;i++){
  893. total_price_three +=val3[i].count * val3[i].buy_price
  894. }
  895. }
  896. if(val2!=null && val2.length > 0){
  897. for(let i=0;i<val2.length;i++){
  898. total_price_two +=val2[i].count * val2[i].buy_price
  899. }
  900. }
  901. if(val4!=null && val4.length > 0){
  902. for(let i=0;i<val4.length;i++){
  903. total_price_four +=val4[i].count * val4[i].buy_price
  904. }
  905. }
  906. console.log("total_price",total_price)
  907. console.log("total_price_three",total_price_three)
  908. console.log("total_price_two",total_price_two)
  909. console.log("total_price_one",total_price_one)
  910. console.log("total_price_four",total_price_four)
  911. all_price = total_price- total_price_three +total_price_one - total_price_two + total_price_four
  912. console.log("arrll_price",all_price)
  913. if(all_price >0){
  914. return all_price.toFixed(2)
  915. }else{
  916. return "0.00"
  917. }
  918. },
  919. getEndSalePrice(val,val3,val1,val2,val4){
  920. var total_price = 0
  921. var total_price_one = 0
  922. var total_price_two = 0
  923. var total_price_three = 0
  924. var total_price_four = 0
  925. var all_price= 0
  926. if(val!=null && val.length >0){
  927. for(let i=0;i<val.length;i++){
  928. total_price +=val[i].count * val[i].price
  929. }
  930. }
  931. if(val1!=null && val1.length >0){
  932. for(let i=0;i<val1.length;i++){
  933. total_price_one +=val1[i].count * val1[i].price
  934. }
  935. }
  936. if(val3!=null && val3.length >0){
  937. for(let i=0;i<val3.length;i++){
  938. total_price_three +=val3[i].count * val3[i].price
  939. }
  940. }
  941. if(val2!=null && val2.length >0){
  942. for(let i=0;i<val2.length;i++){
  943. total_price_two +=val2[i].count * val2[i].price
  944. }
  945. }
  946. if(val4!=null && val4.length >0){
  947. for(let i=0;i<val4.length;i++){
  948. total_price_four +=val4[i].count * val4[i].price
  949. }
  950. }
  951. var all_price = total_price-total_price_three + total_price_one - total_price_two + total_price_four
  952. if(all_price >0){
  953. return all_price.toFixed(2)
  954. }else{
  955. return "0.00"
  956. }
  957. },
  958. toPrint(){
  959. this.$router.push({path:"/purchase/new/stock/query/print?start_time="+this.start_time+"&end_time="+this.end_time+"&page="+this.page+"&limit="+this.limit+"&keyword="+this.keyword+"&good_type="+this.good_type})
  960. },
  961. exportList: function() {
  962. for(let i=0;i<this.tableList.length;i++){
  963. this.tableList[i].index = i+1
  964. this.tableList[i].query_date = this.start_time+"~"+this.end_time
  965. this.tableList[i].good_type = this.getGoodTypeName(this.tableList[i].good_type_id)
  966. this.tableList[i].manufacturer_name = this.getManufacturName(this.tableList[i].manufacturer)
  967. this.tableList[i].dealer_name = this.getDearName(this.tableList[i].dealer)
  968. this.tableList[i].specification_name_one = this.tableList[i].specification_name + "/"+this.tableList[i].packing_unit
  969. }
  970. import('@/vendor/Export2Excel').then(excel => {
  971. const multiHeader = [['序号', '查询日期',' 耗材类型','耗材名称','规格&单位','生产产商','经销商', '期初结余' , '', '', '本期增加', '', '', '本期减少' , '', '', '期末结余' , '', '']]
  972. const header = ['', '','','','','','', '数量', '进货金额', '销售金额', '数量', '进货金额', '销售金额', '数量', '进货金额', '销售金额', '数量', '进货金额', '销售金额']
  973. const merges = ['A1:A2', 'B1:B2','C1:C2','D1:D2','E1:E2','F1:F2','G1:G2','H1:J1', 'K1:M1', 'N1:P1', 'Q1:S1']
  974. const filterVal = ['index', 'query_date', 'good_type','good_name','specification_name_one','manufacturer_name','dealer_name','stockIn','stock_in_price','stockMoney','stockAdd','addStockMoney','saleStockMoney','outStock','stockOutprice','saleOutMoney','overStock','overPrice','overMoney']
  975. const data = this.formatJson(filterVal, this.tableList)
  976. const filename = '进销存查询'
  977. excel.export_json_to_excel({
  978. multiHeader,
  979. header,
  980. merges,
  981. data,
  982. filename
  983. })
  984. })
  985. },
  986. formatJson(filterVal, jsonData) {
  987. return jsonData.map(v => filterVal.map(j => v[j]));
  988. },
  989. toOverCount(){
  990. getGoodOverCount().then(response=>{
  991. if(response.data.state == 1){
  992. var msg = response.data.data.msg
  993. this.$message.success("调试成功")
  994. }
  995. })
  996. },
  997. getDearName(id){
  998. var dear_name = ""
  999. for(let i=0;i<this.dealerList.length;i++){
  1000. if(id == this.dealerList[i].id){
  1001. dear_name = this.dealerList[i].dealer_name
  1002. }
  1003. }
  1004. return dear_name
  1005. },
  1006. },
  1007. }
  1008. </script>