purchaseNewStockQuery.vue 36KB

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