CollectionWriteoff.vue 10.6 KB
Newer Older
1 2 3
<template>
  <div>
    <div class="app-container">
我在何方's avatar
我在何方 committed
4
      <el-descriptions :column="4" border>
5 6 7 8 9 10 11 12 13 14 15 16
        <el-descriptions-item :label="$t('收款单编号')">{{ form.receiptNo }}</el-descriptions-item>
        <el-descriptions-item :label="$t('客户')">{{ form.customerName }}</el-descriptions-item>
        <el-descriptions-item :label="$t('创建时间')">
          <template >
            <span>{{ parseTime(form.createTime, '{y}-{m}-{d}') }}</span>
          </template></el-descriptions-item>
        <el-descriptions-item :label="$t('业务员')">{{ form.salesmanName }}</el-descriptions-item>
        <el-descriptions-item :label="$t('期望收款金额')">
          <template>
              <div v-for="itemAmount in collectionAmount" :key="itemAmount.currencyNameZh">{{$i18n.locale=='zh_CN'?itemAmount.currencyNameZh:itemAmount.currencyNameEn}}: {{ itemAmount.amount}}</div>
          </template>
        </el-descriptions-item>
17

我在何方's avatar
我在何方 committed
18

19 20 21 22 23 24 25 26 27 28
        <el-descriptions-item >
          <template slot="label">
            {{ $t('实收已核销总金额') }}
            <span :title="$t('所有银行收款明细中状态为已核销的实收金额,币种根据实收币种分类统计')"><i class="el-icon-question"></i></span>
          </template>
          <template v-if="!Object.keys(writeOffTotal).length">
            0
          </template>
          <div v-else>
            <div v-for="(amount, currency) in writeOffTotal" :key="currency">
我在何方's avatar
我在何方 committed
29
             {{getCurrencyLabel(currency)}}: {{amount}}
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
            </div>
          </div>
        </el-descriptions-item>
        <el-descriptions-item>
          <template slot="label">
            {{ $t('核销基准币种已核销总金额') }}{{getCurrencyLabel(showCurrencyId)}}
            <span :title="$t('为了方便统计收款单核销比例,将所有银行收款明细中状态为已核销的实收金额,转换为核销基准币种的金额累加')"><i class="el-icon-question"></i></span>
          </template>
          {{ writeOffAmount}}

        </el-descriptions-item>
        <el-descriptions-item>
          <template slot="label">
            {{ $t('总核销比例') }}{{getCurrencyLabel(showCurrencyId)}}
            <span :title="$t('总核销比例=核销基准币种已核销总金额/核销基准币种应收总金额')"><i class="el-icon-question"></i></span>

          </template>
          {{ WriteOffProportion }}%
        </el-descriptions-item>
我在何方's avatar
我在何方 committed
49
        <el-descriptions-item v-if="reason" :label="$t('申请理由')">{{reason}}</el-descriptions-item>
50
      </el-descriptions>
我在何方's avatar
我在何方 committed
51
      </div>
52
      <div style="margin: 20px 0;font-size:16px" v-if="form.financeRemark">{{$t('备注')}}:{{form.financeRemark}}</div>
我在何方's avatar
我在何方 committed
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
      
      <el-card class="card">
        <div slot="header" class="card-title">{{ $t('应收明细') }}</div>
        <el-table :data="list" border>
          <el-table-column :label="$t('订单号')" align="center" prop="orderNo" />
          <el-table-column :label="$t('提单号')" align="center" prop="tidanNo" />
          <el-table-column :label="$t('唛头')" align="center" prop="marks" />
          <el-table-column :label="$t('品名')" align="center" prop="title">
            <template slot-scope="scope">
              <span v-if="scope.row.feeType!=5">{{ scope.row.titleZh?(scope.row.titleZh + "(" + scope.row.titleEn + ")"):'' }}</span>
            </template>
          </el-table-column>
          <el-table-column :label="$t('箱数')" align="center" prop="num" />
          <el-table-column :label="$t('体积/重量')" align="center" prop="weight">
            <template slot-scope="scope">
               <span v-if="scope.row.feeType!=5"> {{ scope.row.volume + "/" + scope.row.weight }}</span>
              </template>
            </el-table-column>
          <el-table-column :label="$t('收入类型')" align="center" prop="feeType">
            <template slot-scope="scope">
              <dict-tag
                :type="DICT_TYPE.FEE_TYPE"
                :value="scope.row.feeType"
              ></dict-tag>
            </template>
          </el-table-column>
          <el-table-column :label="$t('单价金额')" align="center" prop="unitPrice">
            <template slot-scope="scope">
              <span>{{ scope.row.unitPrice }}</span>
              {{getCurrencyLabel(scope.row.currencyId)}}
            </template>
          </el-table-column>
          <el-table-column :label="$t('总金额')" align="center" prop="totalAmount">
            <template slot-scope="scope">
              <span>{{ scope.row.totalAmount }}</span>
              {{getCurrencyLabel(scope.row.currencyId)}}
            </template>
          </el-table-column>
          <el-table-column :label="$t('优惠金额')" align="center">
            <template slot-scope="scope">
              {{ scope.row.discountTotal ? `${scope.row.discountTotal}(${scope.row.discountRemark})` : 0 }}
            </template>
          </el-table-column>
        </el-table>
      </el-card>
      
99 100 101 102
    <div class="btn">
      <el-button
        size="mini"
        type="primary"
我在何方's avatar
我在何方 committed
103
        @click="$router.push('/financial/receiptDetail?id=' + receiptId)"
104 105 106 107 108 109 110 111 112 113 114 115
        >{{ $t('查看收款单')}}</el-button>
    </div>
  </div>
</template>

<script>

import { getCustomer } from '@/api/ecw/customer'
import {
  getReceiptInfoByIds,
  getInvoicingItem,
  getReceiptAccountList,
我在何方's avatar
我在何方 committed
116 117
  getReceivableItem,
  getReceiptApprove
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
} from "@/api/ecw/financial";
import { getCurrencyPage } from "@/api/ecw/currency";
import NP from 'number-precision'


export default {
  props:{
      id: [String, Number]
  },
  data() {
    return {
      form: {},
      collectionAmount: [],
      currencyList:[],
      list:[],
      writeOffAmounts:0,
      detailed:[],
      showCurrencyId:0,
136 137
      receiptId:0,
      reason:''
138 139 140 141 142 143 144
    }
  },
  watch:{
      id(){
          this.getCurrencyData()
      },
      currencyList(){
我在何方's avatar
我在何方 committed
145
        this.getData()
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
      },
      form(){
        this.getListData()
      },
      list(){
        this.getList()
        this.getCollectionData()
      }
  },
  created() {
      if(this.id){
        this.getCurrencyData()
      }
  },
  computed: {
    // 已核销总金额
    writeOffTotal(){
      let total = {}
      this.detailed.forEach(item => {
        if(item.status){
          if(!total[item.currencyId]){
            total[item.currencyId] = item.amount
          }else total[item.currencyId] = NP.plus(total[item.currencyId], item.amount)
        }
      })
      return total
    },
    // 已核销总金额
    writeOffAmount(){
      let total = 0
      this.detailed.forEach(item => {
        if(item.status){
          total = NP.plus(total, item.writeOffAmount)
        }
      })
      return total.toFixed(2)
    },
    WriteOffProportion(){
        let total = 0
        if(!this.writeOffAmounts) return 0
        let amountTotal = this.writeOffAmounts
        this.detailed.forEach(item => {
          if(item.status){
            total = NP.plus(total, item.writeOffAmount)
          }
        })
      let portion = NP.divide(total,amountTotal)
      return (portion*100).toFixed(2)
    }
  },
  methods: {
我在何方's avatar
我在何方 committed
197 198 199 200
    getData(){
      getReceiptApprove(this.id).then(res => {
          if(res.data.receiptId){
            this.receiptId = res.data.receiptId
201
            this.reason = res.data.reason
我在何方's avatar
我在何方 committed
202 203 204 205 206
             this.getReceiptInfo()
          }
      })

    },
207
    getList() {
我在何方's avatar
我在何方 committed
208
      getReceivableItem({ id: this.receiptId }).then(res => {
209 210 211 212 213 214 215 216 217 218 219 220 221 222
        this.detailed = res.data.map(v => ({
          ...v,
          amountDate: this.parseTime(v.amountDate, '{y}-{m}-{d}'),
          accountNo: +v.accountNo,
          rate:parseFloat(v.rate).toFixed(6),
          attr: v.attr ? v.attr.split(',').map(t => ({ name: t.slice(t.lastIndexOf('/') + 1), url: t })) : []
        }))
      })
    },
    // 获取汇率
   getCurrencyData(){
     getCurrencyPage(this.params).then(res => {this.currencyList = res.data.list})
   },
   getReceiptInfo(){
我在何方's avatar
我在何方 committed
223
       getReceiptInfoByIds({ id: this.receiptId }).then(res => {
224 225 226 227 228 229 230
        this.form = res.data
        getCustomer(this.form.customerId).then(res => {
          this.form.customerName = res?.data?.name
        })
      })
    },
    getListData(){
我在何方's avatar
我在何方 committed
231
      getInvoicingItem({ id: this.receiptId }).then(res => {
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
        this.list = [...res.data]
        let fieldList = [];
          let groupList=[];
          this.list.map((element)=>{
            if(fieldList.indexOf(element['currencyId'])===-1){
              fieldList.push(element['currencyId'])
            }
          })
          for(let i=0;i<fieldList.length;i++){
            let arr = this.list.filter((element)=>{
              return element['currencyId']===fieldList[i];
            })
            groupList.push({
              currencyId:arr[0].currencyId,
              list:arr
            })
          }
          this.showCurrencyId = 1
          if (groupList.length === 1) this.showCurrencyId = groupList[0].currencyId
      })
    },
    getCollectionData(){
我在何方's avatar
我在何方 committed
254
      getReceiptAccountList({ id: this.receiptId }).then(res => {
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
        var n
        // 收款总计
        var amountList =[]
        this.currencyList.forEach((item,index)=>{
          var nairaListByList = this.list.filter(v => v.currencyId === item.id)
          if(nairaListByList.length>0){
            var discountNaira = nairaListByList.reduce((total, currentValue) => NP.plus(total, currentValue.discountTotal || 0), 0)
            n = res.data.find(v => v.currencyId == item.id)
            n && (n.discountTotal = discountNaira)
          }
          var dollarList = res.data.filter(v => v.collectionCurrencyId == item.id)

          if(dollarList.length>0){
            var dollar = dollarList.reduce((total, currentValue) => NP.plus(total, currentValue.collectionAmount), 0).toFixed(2)
             amountList.push({currencyId:item.id,currencyNameEn:item.titleEn,currencyNameZh:item.titleZh,amount:dollar})
          }

        })
        this.writeOffAmounts = res.data.reduce((total, currentValue) => NP.plus(total, currentValue.writeOffAmount || 0), 0),
        console.log(this.writeOffAmounts)
        this.$set(this,'collectionAmount',amountList)
      })
      },
      getCurrencyLabel(id){
        var label = this.currencyList.filter(item=>item.id == id)
        if(label.length>0) return this.$i18n.locale=='zh_CN'?label[0].titleZh:label[0].titleEn
        return ''
      },
    }
}
</script>

<style scoped lang="scss">
  .btn{
    margin-top: 20px;
  }
  .app-container {
    ::v-deep .el-descriptions-item__label {
我在何方's avatar
我在何方 committed
293 294
      font-size:14px;
      // font-weight:600;
295 296
    }
    ::v-deep .el-descriptions-item__content {
我在何方's avatar
我在何方 committed
297 298
      font-size:14px;
      // font-weight:600;
299 300
    }
  }
我在何方's avatar
我在何方 committed
301 302 303 304 305 306 307
  .card {
    margin-top: 20px;
  }
  .card-title {
    font-size: 18px;
    font-weight: bold;
  }
308
</style>