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

purchaseNewStockQueryPrint.vue 27KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813
  1. <template>
  2. <div class="main-contain">
  3. <div class="position">
  4. <bread-crumb :crumbs="crumbs"></bread-crumb>
  5. <el-row style="float:right;">
  6. <el-col :span="24">
  7. <el-button size="small" icon="el-icon-printer" type="primary" @click="printAction">打印</el-button>
  8. </el-col>
  9. </el-row>
  10. </div>
  11. <div class="app-container" style="background-color: white;" v-loading="loading">
  12. <div id="print_content">
  13. <div class="print_main_content">
  14. <div class="order_title_panl">
  15. <span class="main_title">耗材进销存查询表</span>
  16. </div>
  17. <div style="text-align:left;margin-bottom:20px;font-size: 14px;margin-bottom:-30px">
  18. <span class="time_p">查询日期:{{start_time}} ~</span><span class="time_p">{{end_time}}</span>
  19. </div>
  20. <div style="text-align:right;margin-bottom:20px;font-size: 14px;">
  21. <span class="time_p"> 打印时间:{{time_now}}</span>
  22. </div>
  23. <div class="table_panel">
  24. <table class="table">
  25. <thead>
  26. <tr>
  27. <td rowspan="2" width="80">序号</td>
  28. <td rowspan="2" width="80" v-if="org_id==9956">耗材编码</td>
  29. <td rowspan="2" width="80">耗材名称</td>
  30. <td rowspan="2" width="80">耗材类型</td>
  31. <td rowspan="2" width="80">规格&单位</td>
  32. <td rowspan="2" width="80">生产厂商</td>
  33. <td rowspan="2" width="80">经销商</td>
  34. <td width="80" colspan="3">期初结余</td>
  35. <td width="80" colspan="3">本期增加</td>
  36. <td width="80" colspan="3">本期减少</td>
  37. <td width="80" colspan="3">期末结余</td>
  38. </tr>
  39. <tr>
  40. <td>数量</td>
  41. <td>进货金额</td>
  42. <td>销售金额</td>
  43. <td>数量</td>
  44. <td>进货金额</td>
  45. <td>销售金额</td>
  46. <td>数量</td>
  47. <td>进货金额</td>
  48. <td>销售金额</td>
  49. <td>数量</td>
  50. <td>进货金额</td>
  51. <td>销售金额</td>
  52. </tr>
  53. </thead>
  54. <tbody>
  55. <tr v-for="(item,index) in this.tableList" :key="index">
  56. <td>{{index + 1}}</td>
  57. <td v-if="org_id==9956">{{item.good_number}}</td>
  58. <td>{{item.good_name}}</td>
  59. <td>{{getGoodTypeName(item.good_type_id)}}</td>
  60. <td>{{item.specification_name}}</td>
  61. <td> {{getManufacturName(item.manufacturer)}}</td>
  62. <td> {{getDearName(item.dealer)}}</td>
  63. <td>{{item.stockIn}}</td>
  64. <td>{{item.stock_in_price}}</td>
  65. <td>{{item.stockMoney}}</td>
  66. <td>{{item.stockAdd}}</td>
  67. <td>{{item.addStockMoney}}</td>
  68. <td>{{item.saleStockMoney}}</td>
  69. <td>{{item.outStock}}</td>
  70. <td>{{item.stockOutprice}}</td>
  71. <td>{{item.saleOutMoney}}</td>
  72. <td>{{item.overStock}}</td>
  73. <td>{{item.overPrice}}</td>
  74. <td>{{item.overMoney}}</td>
  75. </tr>
  76. </tbody>
  77. </table>
  78. </div>
  79. </div>
  80. </div>
  81. </div>
  82. </div>
  83. </template>
  84. <script>
  85. import BreadCrumb from '@/xt_pages/components/bread-crumb'
  86. import { getStorehouseList,getNewPurchaseStockQuery } from "@/api/drug/drug"
  87. import {
  88. getStockDrugCount
  89. } from "@/api/stock";
  90. import print from 'print-js'
  91. const moment = require('moment')
  92. export default {
  93. components:{
  94. BreadCrumb
  95. },
  96. data(){
  97. return{
  98. crumbs: [
  99. { path: false, name: '库存管理' },
  100. { path: false, name: '库存查询' },
  101. { path: false, name: '库存查询打印' },
  102. ],
  103. start_time:"",
  104. end_time:"",
  105. drug_name:"",
  106. drug_spec:"",
  107. keyword:"",
  108. tableData:[],
  109. time_now:moment(new Date()).add('year',0).format("YYYY-MM-DD"),
  110. type_name:"",
  111. limit:"",
  112. page:"",
  113. loading: false,
  114. warehouseInfoDate: [],
  115. tableList:[],
  116. good_type:[],
  117. manufacturerList:[],
  118. countList:[],
  119. outCountList:[],
  120. autoCountList:[],
  121. cancelCountList:[],
  122. org_id:0,
  123. goodTypeList:[],
  124. dealerList:[]
  125. }
  126. },
  127. methods:{
  128. printAction: function() {
  129. const style = '@media print { .print_main_content { background-color: white; width:1500px; margin:0 auto; padding: 0 0 20px 0; } .order_title_panl { text-align: center; } .time_p{font-size:16px;} .main_title { font-size: 18px; line-height: 40px; font-weight: 500; } .table_panel { } .table { width: 100%; border: 1px solid; border-collapse: collapse; padding: 2px; } thead tr td { border: 1px solid; text-align: center; font-size: 16px; padding: 15px 5px; } tbody tr td { border: 1px solid; text-align: center; font-size: 16px; padding: 10px 5px; white-space: pre-line;} .proj { padding: 5px 0; text-align: left; } .proj_title { font-size: 16px; font-weight: 500; line-height: 25px; } .proj_item { font-size: 15px; line-height: 20px; } .zone_name { font-weight: 500; } }'
  130. printJS({
  131. printable: 'print_content',
  132. type: 'html',
  133. documentTitle: ' ',
  134. style: style,
  135. scanStyles: false
  136. })
  137. },
  138. getStorehouseList(){
  139. getStorehouseList().then(response=>{
  140. if(response.data.state == 1){
  141. this.manufacturerList = response.data.data.manufacturerList
  142. var obj = {id:0,type_name:"全部"}
  143. this.goodTypeList.push(obj)
  144. var goodTypeList = response.data.data.goodTypeList
  145. for(let i=0;i<goodTypeList.length;i++){
  146. this.goodTypeList.push(goodTypeList[i])
  147. }
  148. this.dealerList = response.data.data.dealerList
  149. }
  150. })
  151. },
  152. getlist(){
  153. this.loading = true
  154. var params = {
  155. good_type:this.good_type,
  156. keyword:this.keyword,
  157. page:this.page,
  158. limit:this.limit,
  159. start_time:this.start_time,
  160. end_time:this.end_time,
  161. }
  162. getNewPurchaseStockQuery(params).then(response=>{
  163. if(response.data.state == 1){
  164. var list = response.data.data.list
  165. this.loading = false
  166. for(let i=0;i<list.length;i++){
  167. list[i].stockIn = list[i].GoodStartFlowInfo.over_count
  168. list[i].stock_in_price = "/"
  169. list[i].stockMoney = "/"
  170. // list[i].stockIn = this.getWarehouseInfoStart(list[i].StartFlowInfo,list[i].StartOutFlowInfo,list[i].WareStartStockInventoryProfit,list[i].WareStartStockInventoryLosses,list[i].StartCancelFlowInfo) //期初结余
  171. // list[i].stock_in_price = this.getWarehouseInfoStartPrice(list[i].StartFlowInfo,list[i].StartOutFlowInfo,list[i].WareStartStockInventoryProfit,list[i].WareStartStockInventoryLosses,list[i].StartCancelFlowInfo)
  172. // list[i].stockMoney = this.getWarehouseInfoStartMoney(list[i].StartFlowInfo,list[i].StartOutFlowInfo,list[i].WareStartStockInventoryProfit,list[i].WareStartStockInventoryLosses,list[i].StartCancelFlowInfo)
  173. list[i].stockAdd = this.getWarehouseInfoOne(list[i].StartFlowWarehouseInfo,list[i].WareStartEndStockInventoryProfit)//期间增加
  174. // list[i].addStockMoney = this.getAddStockMony(list[i].StartFlowWarehouseInfo,list[i].WareStartEndStockInventoryProfit)
  175. // list[i].saleStockMoney = this.getSaleStockMony(list[i].StartFlowWarehouseInfo,list[i].WareStartEndStockInventoryProfit)
  176. list[i].addStockMoney = "/"
  177. list[i].saleStockMoney = "/"
  178. list[i].outStock = this.getWarehosueOutInfo(list[i].WarehouseOutInfoStart,list[i].WareStartEndStockInventoryLosses,list[i].StartEndCancelFLowInfo)//本期减少
  179. // list[i].stockOutprice = this.stockOutprice(list[i].WarehouseOutInfoStart,list[i].WareStartEndStockInventoryLosses,list[i].StartEndCancelFLowInfo)
  180. // list[i].saleOutMoney = this.getSaleStockMony(list[i].WarehouseOutInfoStart,list[i].WareStartEndStockInventoryLosses,list[i].StartEndCancelFLowInfo)
  181. list[i].stockOutprice = "/"
  182. list[i].saleOutprice = "/"
  183. // list[i].overStock= this.getEndWarehouseInfo(list[i].EndFlowInfo,list[i].EndFlowOutInfo,list[i].WareEndStockInventoryProfit,list[i].WareEndStockInventoryLosses,list[i].EndCancelFLowInfo)
  184. // list[i].overPrice= this.getEndOverPrice(list[i].EndFlowInfo,list[i].EndFlowOutInfo,list[i].WareEndStockInventoryProfit,list[i].WareEndStockInventoryLosses,list[i].EndCancelFLowInfo)
  185. // list[i].overMoney = this.getEndSalePrice(list[i].EndFlowInfo,list[i].EndFlowOutInfo,list[i].WareEndStockInventoryProfit,list[i].WareEndStockInventoryLosses,list[i].EndCancelFLowInfo)
  186. // list[i].overStock = list[i].GoodEndFlowInfo.over_count
  187. list[i].overStock = list[i].stockIn + list[i].stockAdd - list[i].outStock
  188. list[i].overPrice = "/"
  189. list[i].overMoney = "/"
  190. }
  191. this.tableList = list
  192. this.manufacturerList = response.data.data.manufacturerList
  193. }
  194. })
  195. },
  196. getWarehouseInfoStartMoney(arr,arr1,arr2,arr3,arr4){
  197. var total_price = 0
  198. var total_price_one = 0
  199. var total_price_two = 0
  200. var total_price_three = 0
  201. var total_price_four = 0
  202. var total_price_all = 0
  203. if(arr!=null && arr.length >0){
  204. for(let i=0;i<arr.length;i++){
  205. total_price +=arr[i].count * arr[i].price
  206. }
  207. }
  208. if(arr1!=null && arr1.length > 0){
  209. for(let i=0;i<arr1.length;i++){
  210. total_price_one +=arr1[i].count * arr1[i].price
  211. }
  212. }
  213. if(arr2!=null && arr2.length > 0){
  214. for(let i=0;i<arr2.length;i++){
  215. total_price_two +=arr2[i].count * arr2[i].price
  216. }
  217. }
  218. if(arr3!=null && arr3.length > 0){
  219. for(let i=0;i<arr3.length;i++){
  220. total_price_three +=arr3[i].count * arr3[i].price
  221. }
  222. }
  223. if(arr4!=null && arr4.length > 0){
  224. for(let i=0;i<arr4.length;i++){
  225. total_price_four +=arr4[i].count * arr4[i].price
  226. }
  227. }
  228. total_price_all = total_price - total_price_one + total_price_two - total_price_three + total_price_four
  229. if (total_price_all > 0) {
  230. return total_price_all.toFixed(2)
  231. }else{
  232. return "0.00"
  233. }
  234. },
  235. getWarehosueOutInfo(val,val2,val3){
  236. var count = 0
  237. var count_one = 0
  238. var all_count = 0
  239. var count_two = 0
  240. if(val!=null && val.length >0){
  241. for(let i=0;i<val.length;i++){
  242. count +=val[i].count
  243. }
  244. }
  245. if(val2!=null && val2.length > 0){
  246. for(let i=0;i<val2.length;i++){
  247. count_one +=val2[i].count
  248. }
  249. }
  250. if(val3!=null && val3.length > 0){
  251. for(let i=0;i<val3.length;i++){
  252. count_two +=val3[i].count
  253. }
  254. }
  255. all_count = count +count_one - count_two
  256. if(all_count >0){
  257. return all_count
  258. }else{
  259. return 0
  260. }
  261. },
  262. stockOutprice(val,val2,val3){
  263. var total_price = 0
  264. var total_price_one = 0
  265. var total_price_two = 0
  266. var all_price = 0
  267. if(val!=null && val.length >0){
  268. for(let i=0;i<val.length;i++){
  269. total_price +=val[i].count * val[i].buy_price
  270. }
  271. }
  272. if(val2!=null && val2.length > 0){
  273. for(let i=0;i<val2.length;i++){
  274. total_price_one +=val2[i].count * val2[i].buy_price
  275. }
  276. }
  277. if(val3!=null && val3.length > 0){
  278. for(let i=0;i<val3.length;i++){
  279. total_price_two +=val3[i].count * val3[i].buy_price
  280. }
  281. }
  282. all_price = total_price + total_price_one - total_price_two
  283. if(all_price >0){
  284. return all_price.toFixed(2)
  285. }else{
  286. return "0.00"
  287. }
  288. },
  289. saleOutprice(val,val2,val3){
  290. var total_price = 0
  291. var total_price_one = 0
  292. var all_price = 0
  293. var total_price_two = 0
  294. if(val!=null && val.length >0){
  295. for(let i=0;i<val.length;i++){
  296. total_price +=val[i].count * val[i].xt_warehouse_info.packing_price
  297. }
  298. }
  299. if(val2!=null && val2.length > 0){
  300. for(let i=0;i<val2.length;i++){
  301. total_price_one +=val2[i].count * val2[i].price
  302. }
  303. }
  304. if(val3!=null && val3.length > 0){
  305. for(let i=0;i<val3.length;i++){
  306. total_price_two +=val3[i].count * val3[i].price
  307. }
  308. }
  309. all_price = total_price + total_price_one - total_price_two
  310. if(all_price >0){
  311. return all_price.toFixed(2)
  312. }else{
  313. return "0.00"
  314. }
  315. },
  316. getEndWarehouseInfo(val,val3,val1,val2,val4){
  317. var count = 0
  318. var count_one = 0
  319. var count_two = 0
  320. var count_three =0
  321. var count_four = 0
  322. var all_count = 0
  323. if(val!=null && val.length >0){
  324. for(let i=0;i<val.length;i++){
  325. count +=val[i].count
  326. }
  327. }
  328. if(val1!=null&&val1.length >0){
  329. for(let i=0;i<val1.length;i++){
  330. count_one +=val1[i].count
  331. }
  332. }
  333. if(val3!=null&& val3.length > 0){
  334. for(let i=0;i<val3.length;i++){
  335. count_three +=val3[i].count
  336. }
  337. }
  338. if(val2!=null&&val2.length >0){
  339. for(let i=0;i<val2.length;i++){
  340. count_two +=val2[i].count
  341. }
  342. }
  343. if(val4!=null&&val4.length >0){
  344. for(let i=0;i<val4.length;i++){
  345. count_four +=val4[i].count
  346. }
  347. }
  348. all_count = count- count_three + count_one - count_two + count_four
  349. if(all_count >0){
  350. return all_count
  351. }else{
  352. return 0
  353. }
  354. },
  355. getEndWarehouseInfo(val,val3,val1,val2,val4){
  356. var count = 0
  357. var count_one = 0
  358. var count_two = 0
  359. var count_three =0
  360. var count_four = 0
  361. var all_count = 0
  362. if(val!=null && val.length >0){
  363. for(let i=0;i<val.length;i++){
  364. count +=val[i].count
  365. }
  366. }
  367. if(val1!=null&&val1.length >0){
  368. for(let i=0;i<val1.length;i++){
  369. count_one +=val1[i].count
  370. }
  371. }
  372. if(val3!=null&& val3.length > 0){
  373. for(let i=0;i<val3.length;i++){
  374. count_three +=val3[i].count
  375. }
  376. }
  377. if(val2!=null&&val2.length >0){
  378. for(let i=0;i<val2.length;i++){
  379. count_two +=val2[i].count
  380. }
  381. }
  382. if(val4!=null&&val4.length >0){
  383. for(let i=0;i<val4.length;i++){
  384. count_four +=val4[i].count
  385. }
  386. }
  387. all_count = count- count_three + count_one - count_two + count_four
  388. if(all_count >0){
  389. return all_count
  390. }else{
  391. return 0
  392. }
  393. },
  394. getEndSalePrice(val,val3,val1,val2,val4){
  395. var total_price = 0
  396. var total_price_one = 0
  397. var total_price_two = 0
  398. var total_price_three = 0
  399. var total_price_four = 0
  400. var all_price= 0
  401. if(val!=null && val.length >0){
  402. for(let i=0;i<val.length;i++){
  403. total_price +=val[i].count * val[i].price
  404. }
  405. }
  406. if(val1!=null && val1.length >0){
  407. for(let i=0;i<val1.length;i++){
  408. total_price_one +=val1[i].count * val1[i].price
  409. }
  410. }
  411. if(val3!=null && val3.length >0){
  412. for(let i=0;i<val3.length;i++){
  413. total_price_three +=val3[i].count * val3[i].price
  414. }
  415. }
  416. if(val2!=null && val2.length >0){
  417. for(let i=0;i<val2.length;i++){
  418. total_price_two +=val2[i].count * val2[i].price
  419. }
  420. }
  421. if(val4!=null && val4.length >0){
  422. for(let i=0;i<val4.length;i++){
  423. total_price_four +=val4[i].count * val4[i].price
  424. }
  425. }
  426. var all_price = total_price-total_price_three + total_price_one - total_price_two + total_price_four
  427. if(all_price >0){
  428. return all_price.toFixed(2)
  429. }else{
  430. return "0.00"
  431. }
  432. },
  433. getEndSalePrice(val,val3,val1,val2,val4){
  434. var total_price = 0
  435. var total_price_one = 0
  436. var total_price_two = 0
  437. var total_price_three = 0
  438. var total_price_four = 0
  439. var all_price= 0
  440. if(val!=null && val.length >0){
  441. for(let i=0;i<val.length;i++){
  442. total_price +=val[i].count * val[i].price
  443. }
  444. }
  445. if(val1!=null && val1.length >0){
  446. for(let i=0;i<val1.length;i++){
  447. total_price_one +=val1[i].count * val1[i].price
  448. }
  449. }
  450. if(val3!=null && val3.length >0){
  451. for(let i=0;i<val3.length;i++){
  452. total_price_three +=val3[i].count * val3[i].price
  453. }
  454. }
  455. if(val2!=null && val2.length >0){
  456. for(let i=0;i<val2.length;i++){
  457. total_price_two +=val2[i].count * val2[i].price
  458. }
  459. }
  460. if(val4!=null && val4.length >0){
  461. for(let i=0;i<val4.length;i++){
  462. total_price_four +=val4[i].count * val4[i].price
  463. }
  464. }
  465. var all_price = total_price-total_price_three + total_price_one - total_price_two + total_price_four
  466. if(all_price >0){
  467. return all_price.toFixed(2)
  468. }else{
  469. return 0
  470. }
  471. },
  472. getGoodTypeName(id){
  473. var type_name = ""
  474. for(let i=0;i<this.goodTypeList.length;i++){
  475. if(id == this.goodTypeList[i].id){
  476. type_name = this.goodTypeList[i].type_name
  477. }
  478. }
  479. return type_name
  480. },
  481. getWarehouseInfoStart(arr1,arr2,arr3,arr4,arr5){
  482. var count =0
  483. var countOne =0
  484. var countTwo= 0
  485. var countthree = 0 //期初
  486. var countfour = 0
  487. var countfive = 0
  488. if(arr1!=null && arr1.length > 0){
  489. for(let i=0;i<arr1.length;i++){
  490. countOne +=arr1[i].count
  491. }
  492. }
  493. if(arr2!=null && arr2.length > 0){
  494. for(let i=0;i<arr2.length;i++){
  495. countTwo +=arr2[i].count
  496. }
  497. }
  498. if(arr3!=null && arr3.length > 0){
  499. for(let i=0;i<arr3.length;i++){
  500. countthree +=arr3[i].count
  501. }
  502. }
  503. if(arr4!=null && arr4.length > 0){
  504. for(let i=0;i<arr4.length;i++){
  505. countfour +=arr4[i].count
  506. }
  507. }
  508. if(arr5!=null && arr5.length > 0){
  509. for(let i=0;i<arr5.length;i++){
  510. countfive +=arr5[i].count
  511. }
  512. }
  513. console.log("countOne",countOne)
  514. console.log("countTwo",countTwo)
  515. console.log("countthree",countthree)
  516. console.log("countfour",countfour)
  517. console.log("*********************")
  518. count = countOne - countTwo + countthree - countfour + countfive
  519. if(count > 0 ){
  520. return count
  521. }else{
  522. return 0
  523. }
  524. },
  525. getWarehouseInfoStartPrice(arr,arr1,arr2,arr3,arr4){
  526. var total_price = 0
  527. var total_price_one = 0
  528. var total_price_two = 0
  529. var total_price_three = 0
  530. var total_price_four = 0
  531. var total_price_all = 0
  532. if(arr!=null&&arr.length > 0){
  533. for(let i=0;i<arr.length;i++){
  534. total_price += arr[i].count * arr[i].buy_price
  535. }
  536. }
  537. if(arr1!=null && arr1.length > 0){
  538. for(let i=0;i<arr1.length;i++){
  539. total_price_one +=arr1[i].count * arr1[i].buy_price
  540. }
  541. }
  542. if(arr2!=null && arr2.length > 0){
  543. for(let i=0;i<arr2.length;i++){
  544. total_price_two +=arr2[i].count * arr2[i].buy_price
  545. }
  546. }
  547. if(arr3!=null && arr3.length > 0){
  548. for(let i=0;i<arr3.length;i++){
  549. total_price_three +=arr3[i].count * arr3[i].buy_price
  550. }
  551. }
  552. if(arr4!=null && arr4.length > 0){
  553. for(let i=0;i<arr4.length;i++){
  554. total_price_three +=arr4[i].count * arr4[i].buy_price
  555. }
  556. }
  557. total_price_all = total_price - total_price_one + total_price_two - total_price_three + total_price_four
  558. if (total_price_all > 0) {
  559. return total_price_all.toFixed(2)
  560. }else{
  561. return "0.00"
  562. }
  563. },
  564. getWarehouseInfoOne(val,val2){
  565. var count =0
  566. var countOne = 0
  567. var all_count = 0
  568. if(val!=null && val.length >0){
  569. for(let i=0;i<val.length;i++){
  570. count +=val[i].count
  571. }
  572. }
  573. if(val2!=null && val2.length > 0){
  574. for(let i=0;i<val2.length;i++){
  575. countOne +=val2[i].count
  576. }
  577. }
  578. all_count = count + countOne
  579. console.log("count2332323223232o2222222222wide",count)
  580. console.log("countONE23232322323323223",countOne)
  581. console.log("all_count9999999999999wode",all_count)
  582. console.log("-------------------------------------------")
  583. if(all_count > 0 ){
  584. return all_count
  585. }else{
  586. return 0
  587. }
  588. },
  589. getAddStockMony(val,val2){
  590. var total_price =0
  591. var total_price_one = 0
  592. var all_price = 0
  593. if(val!=null && val.length >0){
  594. for(let i=0;i<val.length;i++){
  595. total_price +=val[i].count * val[i].buy_price
  596. }
  597. }
  598. if(val2!=null && val2.length > 0){
  599. for(let i=0;i<val2.length;i++){
  600. total_price_one +=val2[i].count * val2[i].price
  601. }
  602. }
  603. all_price = total_price + total_price_one
  604. if(all_price >0 ){
  605. return total_price.toFixed(2)
  606. }else{
  607. return "0.00"
  608. }
  609. },
  610. getSaleStockMony(val,val2){
  611. var total_price =0
  612. var total_price_one = 0
  613. var all_price = 0
  614. if(val!=null && val.length >0){
  615. for(let i=0;i<val.length;i++){
  616. total_price +=val[i].count * val[i].price
  617. }
  618. }
  619. if(val2!=null && val2.length > 0){
  620. for(let i=0;i<val2.length;i++){
  621. total_price_one +=val2[i].count * val2[i].price
  622. }
  623. }
  624. all_price = total_price + total_price_one
  625. if(all_price >0 ){
  626. return all_price.toFixed(2)
  627. }else{
  628. return "0.00"
  629. }
  630. },
  631. getWarehouseOut(val){
  632. var count = 0
  633. for(let i=0;i<val.length;i++){
  634. count +=val[i].count
  635. }
  636. if(count >0){
  637. return count
  638. }else{
  639. return 0
  640. }
  641. },
  642. getManufacturName(id){
  643. var manufacturer_name = ""
  644. for(let i=0;i<this.manufacturerList.length;i++){
  645. if(id == this.manufacturerList[i].id){
  646. manufacturer_name = this.manufacturerList[i].manufacturer_name
  647. }
  648. }
  649. return manufacturer_name
  650. },
  651. getDearName(id){
  652. var dear_name = ""
  653. for(let i=0;i<this.dealerList.length;i++){
  654. if(id == this.dealerList[i].id){
  655. dear_name = this.dealerList[i].dealer_name
  656. }
  657. }
  658. return dear_name
  659. },
  660. getEndOverPrice(val,val3,val1,val2,val4){
  661. var total_price = 0
  662. var total_price_one = 0
  663. var total_price_two = 0
  664. var total_price_three = 0
  665. var total_price_four =0
  666. var all_price = 0
  667. if(val!=null && val.length >0){
  668. for(let i=0;i<val.length;i++){
  669. total_price +=val[i].count * val[i].buy_price
  670. }
  671. }
  672. if(val1!=null && val1.length > 0){
  673. for(let i=0;i<val1.length;i++){
  674. total_price_one +=val1[i].count * val1[i].buy_price
  675. }
  676. }
  677. if(val3!=null && val3.length > 0){
  678. for(let i=0;i<val3.length;i++){
  679. total_price_three +=val3[i].count * val3[i].buy_price
  680. }
  681. }
  682. if(val2!=null && val2.length > 0){
  683. for(let i=0;i<val2.length;i++){
  684. total_price_two +=val2[i].count * val2[i].buy_price
  685. }
  686. }
  687. if(val4!=null && val4.length > 0){
  688. for(let i=0;i<val4.length;i++){
  689. total_price_four +=val4[i].count * val4[i].buy_price
  690. }
  691. }
  692. // console.log("total_price",total_price)
  693. // console.log("total_price_three",total_price_three)
  694. // console.log("total_price_two",total_price_two)
  695. // console.log("total_price_one",total_price_one)
  696. // console.log("total_price_four",total_price_four)
  697. all_price = total_price- total_price_three +total_price_one - total_price_two + total_price_four
  698. console.log("arrll_price",all_price)
  699. if(all_price >0){
  700. return all_price.toFixed(2)
  701. }else{
  702. return "0.00"
  703. }
  704. },
  705. },
  706. created(){
  707. this.org_id = this.$store.getters.xt_user.org_id
  708. var starttime = this.$route.query.start_time
  709. this.start_time = starttime
  710. var endtime = this.$route.query.end_time
  711. this.end_time = endtime
  712. var good_type = parseInt(this.$route.query.good_type)
  713. this.good_type = good_type
  714. var keyword = this.$route.query.keyword
  715. this.keyword = keyword
  716. this.page = parseInt(this.$route.query.page)
  717. this.limit = parseInt(this.$route.query.limit)
  718. this.getStorehouseList()
  719. this.getlist()
  720. }
  721. }
  722. </script>
  723. <style rel="stylesheet/scss" lang="scss" scoped>
  724. .print_main_content {
  725. background-color: white;
  726. max-width: 1500px;
  727. margin: 0 auto;
  728. padding: 0 0 20px 0;
  729. .order_title_panl {
  730. text-align: center;
  731. .main_title {
  732. font-size: 18px;
  733. line-height: 40px;
  734. font-weight: 500;
  735. }
  736. }
  737. .table_panel {
  738. .table {
  739. width: 100%;
  740. border: 1px solid;
  741. border-collapse: collapse;
  742. padding: 2px;
  743. thead {
  744. tr {
  745. td {
  746. border: 1px solid;
  747. text-align: center;
  748. font-size: 14px;
  749. padding: 15px 5px;
  750. }
  751. }
  752. }
  753. tbody {
  754. tr {
  755. td {
  756. border: 1px solid;
  757. text-align: center;
  758. font-size: 14px;
  759. padding: 10px 5px;
  760. white-space: pre-line;
  761. .proj {
  762. padding: 5px 0;
  763. text-align: left;
  764. .proj_title {
  765. font-size: 16px;
  766. font-weight: 500;
  767. line-height: 25px;
  768. }
  769. .proj_item {
  770. font-size: 15px;
  771. line-height: 20px;
  772. .zone_name {
  773. font-weight: 500;
  774. }
  775. }
  776. }
  777. }
  778. }
  779. }
  780. }
  781. }
  782. }
  783. </style>