123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813 |
- <template>
- <div class="main-contain">
- <div class="position">
- <bread-crumb :crumbs="crumbs"></bread-crumb>
- <el-row style="float:right;">
- <el-col :span="24">
- <el-button size="small" icon="el-icon-printer" type="primary" @click="printAction">打印</el-button>
- </el-col>
- </el-row>
- </div>
- <div class="app-container" style="background-color: white;" v-loading="loading">
- <div id="print_content">
- <div class="print_main_content">
- <div class="order_title_panl">
- <span class="main_title">耗材进销存查询表</span>
- </div>
- <div style="text-align:left;margin-bottom:20px;font-size: 14px;margin-bottom:-30px">
- <span class="time_p">查询日期:{{start_time}} ~</span><span class="time_p">{{end_time}}</span>
- </div>
- <div style="text-align:right;margin-bottom:20px;font-size: 14px;">
- <span class="time_p"> 打印时间:{{time_now}}</span>
- </div>
- <div class="table_panel">
- <table class="table">
- <thead>
- <tr>
- <td rowspan="2" width="80">序号</td>
- <td rowspan="2" width="80" v-if="org_id==9956">耗材编码</td>
- <td rowspan="2" width="80">耗材名称</td>
- <td rowspan="2" width="80">耗材类型</td>
- <td rowspan="2" width="80">规格&单位</td>
- <td rowspan="2" width="80">生产厂商</td>
- <td rowspan="2" width="80">经销商</td>
- <td width="80" colspan="3">期初结余</td>
- <td width="80" colspan="3">本期增加</td>
- <td width="80" colspan="3">本期减少</td>
- <td width="80" colspan="3">期末结余</td>
- </tr>
- <tr>
- <td>数量</td>
- <td>进货金额</td>
- <td>销售金额</td>
- <td>数量</td>
- <td>进货金额</td>
- <td>销售金额</td>
- <td>数量</td>
- <td>进货金额</td>
- <td>销售金额</td>
- <td>数量</td>
- <td>进货金额</td>
- <td>销售金额</td>
- </tr>
-
- </thead>
- <tbody>
- <tr v-for="(item,index) in this.tableList" :key="index">
- <td>{{index + 1}}</td>
- <td v-if="org_id==9956">{{item.good_number}}</td>
- <td>{{item.good_name}}</td>
- <td>{{getGoodTypeName(item.good_type_id)}}</td>
- <td>{{item.specification_name}}</td>
- <td> {{getManufacturName(item.manufacturer)}}</td>
- <td> {{getDearName(item.dealer)}}</td>
- <td>{{item.stockIn}}</td>
- <td>{{item.stock_in_price}}</td>
- <td>{{item.stockMoney}}</td>
- <td>{{item.stockAdd}}</td>
- <td>{{item.addStockMoney}}</td>
- <td>{{item.saleStockMoney}}</td>
- <td>{{item.outStock}}</td>
- <td>{{item.stockOutprice}}</td>
- <td>{{item.saleOutMoney}}</td>
- <td>{{item.overStock}}</td>
- <td>{{item.overPrice}}</td>
- <td>{{item.overMoney}}</td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
-
- <script>
- import BreadCrumb from '@/xt_pages/components/bread-crumb'
- import { getStorehouseList,getNewPurchaseStockQuery } from "@/api/drug/drug"
- import {
- getStockDrugCount
- } from "@/api/stock";
- import print from 'print-js'
- const moment = require('moment')
- export default {
- components:{
- BreadCrumb
- },
- data(){
- return{
- crumbs: [
- { path: false, name: '库存管理' },
- { path: false, name: '库存查询' },
- { path: false, name: '库存查询打印' },
- ],
- start_time:"",
- end_time:"",
- drug_name:"",
- drug_spec:"",
- keyword:"",
- tableData:[],
- time_now:moment(new Date()).add('year',0).format("YYYY-MM-DD"),
- type_name:"",
- limit:"",
- page:"",
- loading: false,
- warehouseInfoDate: [],
- tableList:[],
- good_type:[],
- manufacturerList:[],
- countList:[],
- outCountList:[],
- autoCountList:[],
- cancelCountList:[],
- org_id:0,
- goodTypeList:[],
- dealerList:[]
- }
- },
- methods:{
- printAction: function() {
- 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; } }'
- printJS({
- printable: 'print_content',
- type: 'html',
- documentTitle: ' ',
- style: style,
- scanStyles: false
- })
- },
- getStorehouseList(){
- getStorehouseList().then(response=>{
- if(response.data.state == 1){
-
- this.manufacturerList = response.data.data.manufacturerList
- var obj = {id:0,type_name:"全部"}
- this.goodTypeList.push(obj)
- var goodTypeList = response.data.data.goodTypeList
- for(let i=0;i<goodTypeList.length;i++){
- this.goodTypeList.push(goodTypeList[i])
- }
- this.dealerList = response.data.data.dealerList
- }
- })
- },
- getlist(){
- this.loading = true
- var params = {
- good_type:this.good_type,
- keyword:this.keyword,
- page:this.page,
- limit:this.limit,
- start_time:this.start_time,
- end_time:this.end_time,
- }
- getNewPurchaseStockQuery(params).then(response=>{
- if(response.data.state == 1){
- var list = response.data.data.list
- this.loading = false
- for(let i=0;i<list.length;i++){
- list[i].stockIn = list[i].GoodStartFlowInfo.over_count
- list[i].stock_in_price = "/"
- list[i].stockMoney = "/"
- // list[i].stockIn = this.getWarehouseInfoStart(list[i].StartFlowInfo,list[i].StartOutFlowInfo,list[i].WareStartStockInventoryProfit,list[i].WareStartStockInventoryLosses,list[i].StartCancelFlowInfo) //期初结余
- // list[i].stock_in_price = this.getWarehouseInfoStartPrice(list[i].StartFlowInfo,list[i].StartOutFlowInfo,list[i].WareStartStockInventoryProfit,list[i].WareStartStockInventoryLosses,list[i].StartCancelFlowInfo)
- // list[i].stockMoney = this.getWarehouseInfoStartMoney(list[i].StartFlowInfo,list[i].StartOutFlowInfo,list[i].WareStartStockInventoryProfit,list[i].WareStartStockInventoryLosses,list[i].StartCancelFlowInfo)
-
- list[i].stockAdd = this.getWarehouseInfoOne(list[i].StartFlowWarehouseInfo,list[i].WareStartEndStockInventoryProfit)//期间增加
- // list[i].addStockMoney = this.getAddStockMony(list[i].StartFlowWarehouseInfo,list[i].WareStartEndStockInventoryProfit)
- // list[i].saleStockMoney = this.getSaleStockMony(list[i].StartFlowWarehouseInfo,list[i].WareStartEndStockInventoryProfit)
- list[i].addStockMoney = "/"
- list[i].saleStockMoney = "/"
-
- list[i].outStock = this.getWarehosueOutInfo(list[i].WarehouseOutInfoStart,list[i].WareStartEndStockInventoryLosses,list[i].StartEndCancelFLowInfo)//本期减少
- // list[i].stockOutprice = this.stockOutprice(list[i].WarehouseOutInfoStart,list[i].WareStartEndStockInventoryLosses,list[i].StartEndCancelFLowInfo)
- // list[i].saleOutMoney = this.getSaleStockMony(list[i].WarehouseOutInfoStart,list[i].WareStartEndStockInventoryLosses,list[i].StartEndCancelFLowInfo)
- list[i].stockOutprice = "/"
- list[i].saleOutprice = "/"
- // list[i].overStock= this.getEndWarehouseInfo(list[i].EndFlowInfo,list[i].EndFlowOutInfo,list[i].WareEndStockInventoryProfit,list[i].WareEndStockInventoryLosses,list[i].EndCancelFLowInfo)
- // list[i].overPrice= this.getEndOverPrice(list[i].EndFlowInfo,list[i].EndFlowOutInfo,list[i].WareEndStockInventoryProfit,list[i].WareEndStockInventoryLosses,list[i].EndCancelFLowInfo)
- // list[i].overMoney = this.getEndSalePrice(list[i].EndFlowInfo,list[i].EndFlowOutInfo,list[i].WareEndStockInventoryProfit,list[i].WareEndStockInventoryLosses,list[i].EndCancelFLowInfo)
- // list[i].overStock = list[i].GoodEndFlowInfo.over_count
- list[i].overStock = list[i].stockIn + list[i].stockAdd - list[i].outStock
- list[i].overPrice = "/"
- list[i].overMoney = "/"
-
- }
- this.tableList = list
-
- this.manufacturerList = response.data.data.manufacturerList
-
- }
- })
- },
- getWarehouseInfoStartMoney(arr,arr1,arr2,arr3,arr4){
- var total_price = 0
- var total_price_one = 0
- var total_price_two = 0
- var total_price_three = 0
- var total_price_four = 0
- var total_price_all = 0
- if(arr!=null && arr.length >0){
- for(let i=0;i<arr.length;i++){
- total_price +=arr[i].count * arr[i].price
- }
- }
- if(arr1!=null && arr1.length > 0){
- for(let i=0;i<arr1.length;i++){
- total_price_one +=arr1[i].count * arr1[i].price
- }
-
- }
- if(arr2!=null && arr2.length > 0){
- for(let i=0;i<arr2.length;i++){
- total_price_two +=arr2[i].count * arr2[i].price
- }
-
- }
- if(arr3!=null && arr3.length > 0){
- for(let i=0;i<arr3.length;i++){
- total_price_three +=arr3[i].count * arr3[i].price
- }
-
- }
- if(arr4!=null && arr4.length > 0){
- for(let i=0;i<arr4.length;i++){
- total_price_four +=arr4[i].count * arr4[i].price
- }
-
- }
- total_price_all = total_price - total_price_one + total_price_two - total_price_three + total_price_four
- if (total_price_all > 0) {
- return total_price_all.toFixed(2)
- }else{
- return "0.00"
- }
- },
- getWarehosueOutInfo(val,val2,val3){
- var count = 0
- var count_one = 0
- var all_count = 0
- var count_two = 0
- if(val!=null && val.length >0){
- for(let i=0;i<val.length;i++){
- count +=val[i].count
- }
- }
- if(val2!=null && val2.length > 0){
- for(let i=0;i<val2.length;i++){
- count_one +=val2[i].count
- }
- }
- if(val3!=null && val3.length > 0){
- for(let i=0;i<val3.length;i++){
- count_two +=val3[i].count
- }
- }
- all_count = count +count_one - count_two
- if(all_count >0){
- return all_count
- }else{
- return 0
- }
- },
- stockOutprice(val,val2,val3){
- var total_price = 0
- var total_price_one = 0
- var total_price_two = 0
- var all_price = 0
- if(val!=null && val.length >0){
- for(let i=0;i<val.length;i++){
- total_price +=val[i].count * val[i].buy_price
- }
- }
- if(val2!=null && val2.length > 0){
- for(let i=0;i<val2.length;i++){
- total_price_one +=val2[i].count * val2[i].buy_price
- }
- }
- if(val3!=null && val3.length > 0){
- for(let i=0;i<val3.length;i++){
- total_price_two +=val3[i].count * val3[i].buy_price
- }
- }
- all_price = total_price + total_price_one - total_price_two
- if(all_price >0){
- return all_price.toFixed(2)
- }else{
- return "0.00"
- }
- },
- saleOutprice(val,val2,val3){
- var total_price = 0
- var total_price_one = 0
- var all_price = 0
- var total_price_two = 0
- if(val!=null && val.length >0){
- for(let i=0;i<val.length;i++){
- total_price +=val[i].count * val[i].xt_warehouse_info.packing_price
- }
- }
- if(val2!=null && val2.length > 0){
- for(let i=0;i<val2.length;i++){
- total_price_one +=val2[i].count * val2[i].price
- }
- }
- if(val3!=null && val3.length > 0){
- for(let i=0;i<val3.length;i++){
- total_price_two +=val3[i].count * val3[i].price
- }
- }
- all_price = total_price + total_price_one - total_price_two
- if(all_price >0){
- return all_price.toFixed(2)
- }else{
- return "0.00"
- }
- },
- getEndWarehouseInfo(val,val3,val1,val2,val4){
- var count = 0
- var count_one = 0
- var count_two = 0
- var count_three =0
- var count_four = 0
- var all_count = 0
- if(val!=null && val.length >0){
- for(let i=0;i<val.length;i++){
- count +=val[i].count
- }
- }
- if(val1!=null&&val1.length >0){
- for(let i=0;i<val1.length;i++){
- count_one +=val1[i].count
- }
- }
- if(val3!=null&& val3.length > 0){
- for(let i=0;i<val3.length;i++){
- count_three +=val3[i].count
- }
- }
- if(val2!=null&&val2.length >0){
- for(let i=0;i<val2.length;i++){
- count_two +=val2[i].count
- }
- }
- if(val4!=null&&val4.length >0){
- for(let i=0;i<val4.length;i++){
- count_four +=val4[i].count
- }
- }
- all_count = count- count_three + count_one - count_two + count_four
- if(all_count >0){
- return all_count
- }else{
- return 0
- }
- },
- getEndWarehouseInfo(val,val3,val1,val2,val4){
- var count = 0
- var count_one = 0
- var count_two = 0
- var count_three =0
- var count_four = 0
- var all_count = 0
- if(val!=null && val.length >0){
- for(let i=0;i<val.length;i++){
- count +=val[i].count
- }
- }
- if(val1!=null&&val1.length >0){
- for(let i=0;i<val1.length;i++){
- count_one +=val1[i].count
- }
- }
- if(val3!=null&& val3.length > 0){
- for(let i=0;i<val3.length;i++){
- count_three +=val3[i].count
- }
- }
- if(val2!=null&&val2.length >0){
- for(let i=0;i<val2.length;i++){
- count_two +=val2[i].count
- }
- }
- if(val4!=null&&val4.length >0){
- for(let i=0;i<val4.length;i++){
- count_four +=val4[i].count
- }
- }
- all_count = count- count_three + count_one - count_two + count_four
- if(all_count >0){
- return all_count
- }else{
- return 0
- }
- },
- getEndSalePrice(val,val3,val1,val2,val4){
- var total_price = 0
- var total_price_one = 0
- var total_price_two = 0
- var total_price_three = 0
- var total_price_four = 0
- var all_price= 0
- if(val!=null && val.length >0){
- for(let i=0;i<val.length;i++){
- total_price +=val[i].count * val[i].price
- }
- }
- if(val1!=null && val1.length >0){
- for(let i=0;i<val1.length;i++){
- total_price_one +=val1[i].count * val1[i].price
- }
- }
- if(val3!=null && val3.length >0){
- for(let i=0;i<val3.length;i++){
- total_price_three +=val3[i].count * val3[i].price
- }
- }
- if(val2!=null && val2.length >0){
- for(let i=0;i<val2.length;i++){
- total_price_two +=val2[i].count * val2[i].price
- }
- }
- if(val4!=null && val4.length >0){
- for(let i=0;i<val4.length;i++){
- total_price_four +=val4[i].count * val4[i].price
- }
- }
- var all_price = total_price-total_price_three + total_price_one - total_price_two + total_price_four
- if(all_price >0){
- return all_price.toFixed(2)
- }else{
- return "0.00"
- }
- },
- getEndSalePrice(val,val3,val1,val2,val4){
- var total_price = 0
- var total_price_one = 0
- var total_price_two = 0
- var total_price_three = 0
- var total_price_four = 0
- var all_price= 0
- if(val!=null && val.length >0){
- for(let i=0;i<val.length;i++){
- total_price +=val[i].count * val[i].price
- }
- }
- if(val1!=null && val1.length >0){
- for(let i=0;i<val1.length;i++){
- total_price_one +=val1[i].count * val1[i].price
- }
- }
- if(val3!=null && val3.length >0){
- for(let i=0;i<val3.length;i++){
- total_price_three +=val3[i].count * val3[i].price
- }
- }
- if(val2!=null && val2.length >0){
- for(let i=0;i<val2.length;i++){
- total_price_two +=val2[i].count * val2[i].price
- }
- }
- if(val4!=null && val4.length >0){
- for(let i=0;i<val4.length;i++){
- total_price_four +=val4[i].count * val4[i].price
- }
- }
- var all_price = total_price-total_price_three + total_price_one - total_price_two + total_price_four
- if(all_price >0){
- return all_price.toFixed(2)
- }else{
- return 0
- }
- },
- getGoodTypeName(id){
- var type_name = ""
- for(let i=0;i<this.goodTypeList.length;i++){
- if(id == this.goodTypeList[i].id){
- type_name = this.goodTypeList[i].type_name
- }
- }
- return type_name
- },
- getWarehouseInfoStart(arr1,arr2,arr3,arr4,arr5){
- var count =0
- var countOne =0
- var countTwo= 0
- var countthree = 0 //期初
- var countfour = 0
- var countfive = 0
- if(arr1!=null && arr1.length > 0){
- for(let i=0;i<arr1.length;i++){
- countOne +=arr1[i].count
- }
- }
- if(arr2!=null && arr2.length > 0){
- for(let i=0;i<arr2.length;i++){
- countTwo +=arr2[i].count
- }
- }
- if(arr3!=null && arr3.length > 0){
- for(let i=0;i<arr3.length;i++){
- countthree +=arr3[i].count
- }
- }
- if(arr4!=null && arr4.length > 0){
- for(let i=0;i<arr4.length;i++){
- countfour +=arr4[i].count
- }
- }
- if(arr5!=null && arr5.length > 0){
- for(let i=0;i<arr5.length;i++){
- countfive +=arr5[i].count
- }
- }
- console.log("countOne",countOne)
- console.log("countTwo",countTwo)
- console.log("countthree",countthree)
- console.log("countfour",countfour)
- console.log("*********************")
- count = countOne - countTwo + countthree - countfour + countfive
- if(count > 0 ){
- return count
- }else{
- return 0
- }
- },
- getWarehouseInfoStartPrice(arr,arr1,arr2,arr3,arr4){
- var total_price = 0
- var total_price_one = 0
- var total_price_two = 0
- var total_price_three = 0
- var total_price_four = 0
- var total_price_all = 0
- if(arr!=null&&arr.length > 0){
- for(let i=0;i<arr.length;i++){
- total_price += arr[i].count * arr[i].buy_price
- }
- }
- if(arr1!=null && arr1.length > 0){
- for(let i=0;i<arr1.length;i++){
- total_price_one +=arr1[i].count * arr1[i].buy_price
- }
-
- }
- if(arr2!=null && arr2.length > 0){
- for(let i=0;i<arr2.length;i++){
- total_price_two +=arr2[i].count * arr2[i].buy_price
- }
-
- }
- if(arr3!=null && arr3.length > 0){
- for(let i=0;i<arr3.length;i++){
- total_price_three +=arr3[i].count * arr3[i].buy_price
- }
-
- }
- if(arr4!=null && arr4.length > 0){
- for(let i=0;i<arr4.length;i++){
- total_price_three +=arr4[i].count * arr4[i].buy_price
- }
-
- }
- total_price_all = total_price - total_price_one + total_price_two - total_price_three + total_price_four
- if (total_price_all > 0) {
- return total_price_all.toFixed(2)
- }else{
- return "0.00"
- }
- },
- getWarehouseInfoOne(val,val2){
- var count =0
- var countOne = 0
- var all_count = 0
- if(val!=null && val.length >0){
- for(let i=0;i<val.length;i++){
- count +=val[i].count
- }
- }
- if(val2!=null && val2.length > 0){
- for(let i=0;i<val2.length;i++){
- countOne +=val2[i].count
- }
- }
- all_count = count + countOne
- console.log("count2332323223232o2222222222wide",count)
- console.log("countONE23232322323323223",countOne)
- console.log("all_count9999999999999wode",all_count)
- console.log("-------------------------------------------")
- if(all_count > 0 ){
- return all_count
- }else{
- return 0
- }
- },
- getAddStockMony(val,val2){
- var total_price =0
- var total_price_one = 0
- var all_price = 0
- if(val!=null && val.length >0){
- for(let i=0;i<val.length;i++){
- total_price +=val[i].count * val[i].buy_price
- }
- }
- if(val2!=null && val2.length > 0){
- for(let i=0;i<val2.length;i++){
- total_price_one +=val2[i].count * val2[i].price
- }
- }
- all_price = total_price + total_price_one
- if(all_price >0 ){
- return total_price.toFixed(2)
- }else{
- return "0.00"
- }
- },
- getSaleStockMony(val,val2){
- var total_price =0
- var total_price_one = 0
- var all_price = 0
- if(val!=null && val.length >0){
- for(let i=0;i<val.length;i++){
- total_price +=val[i].count * val[i].price
- }
- }
- if(val2!=null && val2.length > 0){
- for(let i=0;i<val2.length;i++){
- total_price_one +=val2[i].count * val2[i].price
- }
- }
- all_price = total_price + total_price_one
- if(all_price >0 ){
- return all_price.toFixed(2)
- }else{
- return "0.00"
- }
- },
- getWarehouseOut(val){
- var count = 0
- for(let i=0;i<val.length;i++){
- count +=val[i].count
- }
- if(count >0){
- return count
- }else{
- return 0
- }
- },
- getManufacturName(id){
- var manufacturer_name = ""
- for(let i=0;i<this.manufacturerList.length;i++){
- if(id == this.manufacturerList[i].id){
- manufacturer_name = this.manufacturerList[i].manufacturer_name
- }
- }
- return manufacturer_name
- },
- getDearName(id){
- var dear_name = ""
- for(let i=0;i<this.dealerList.length;i++){
- if(id == this.dealerList[i].id){
- dear_name = this.dealerList[i].dealer_name
- }
- }
- return dear_name
- },
- getEndOverPrice(val,val3,val1,val2,val4){
- var total_price = 0
- var total_price_one = 0
- var total_price_two = 0
- var total_price_three = 0
- var total_price_four =0
- var all_price = 0
- if(val!=null && val.length >0){
- for(let i=0;i<val.length;i++){
- total_price +=val[i].count * val[i].buy_price
- }
- }
- if(val1!=null && val1.length > 0){
- for(let i=0;i<val1.length;i++){
- total_price_one +=val1[i].count * val1[i].buy_price
- }
- }
- if(val3!=null && val3.length > 0){
- for(let i=0;i<val3.length;i++){
- total_price_three +=val3[i].count * val3[i].buy_price
- }
- }
- if(val2!=null && val2.length > 0){
- for(let i=0;i<val2.length;i++){
- total_price_two +=val2[i].count * val2[i].buy_price
- }
- }
- if(val4!=null && val4.length > 0){
- for(let i=0;i<val4.length;i++){
- total_price_four +=val4[i].count * val4[i].buy_price
- }
- }
- // console.log("total_price",total_price)
- // console.log("total_price_three",total_price_three)
- // console.log("total_price_two",total_price_two)
- // console.log("total_price_one",total_price_one)
- // console.log("total_price_four",total_price_four)
- all_price = total_price- total_price_three +total_price_one - total_price_two + total_price_four
- console.log("arrll_price",all_price)
- if(all_price >0){
- return all_price.toFixed(2)
- }else{
- return "0.00"
- }
- },
-
- },
- created(){
- this.org_id = this.$store.getters.xt_user.org_id
-
- var starttime = this.$route.query.start_time
- this.start_time = starttime
- var endtime = this.$route.query.end_time
- this.end_time = endtime
- var good_type = parseInt(this.$route.query.good_type)
- this.good_type = good_type
- var keyword = this.$route.query.keyword
- this.keyword = keyword
- this.page = parseInt(this.$route.query.page)
- this.limit = parseInt(this.$route.query.limit)
- this.getStorehouseList()
- this.getlist()
-
-
- }
- }
- </script>
-
-
- <style rel="stylesheet/scss" lang="scss" scoped>
- .print_main_content {
- background-color: white;
- max-width: 1500px;
- margin: 0 auto;
- padding: 0 0 20px 0;
-
- .order_title_panl {
- text-align: center;
-
- .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: 14px;
- padding: 15px 5px;
- }
- }
- }
- tbody {
- tr {
- td {
- border: 1px solid;
- text-align: center;
- font-size: 14px;
- 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;
- }
- }
- }
- }
- }
- }
- }
- }
- }
- </style>
|