|
@@ -111,6 +111,12 @@
|
|
|
<div v-if="item.printType==6" class="number">合同审核</div>
|
|
|
<div v-if="item.printType==7" class="number">运费结算</div>
|
|
|
<div v-if="item.printType==8" class="number">仓库设置</div>
|
|
|
+ <div v-if="item.printType==9" class="number">出入库任务-
|
|
|
+ <span v-if="item.inOutTypeKey==1">出库</span>
|
|
|
+ <span v-if="item.inOutTypeKey==2">入库</span>
|
|
|
+ <span v-if="item.inOutTypeKey==3">移库</span>
|
|
|
+ <span v-if="item.inOutTypeKey==4">退库并出库</span>
|
|
|
+ </div>
|
|
|
<img v-if="item.currectstatus=='已通过'" class="seal" width="144" height="144" src="../img/ytg.png" alt="">
|
|
|
<img v-if="item.currectstatus=='审核中'" class="seal" width="144" height="144" src="../img/shz.png" alt="">
|
|
|
<img v-if="item.currectstatus=='已驳回'" class="seal" width="144" height="144" src="../img/wtg.png" alt="">
|
|
@@ -347,7 +353,12 @@
|
|
|
</tr>
|
|
|
<tr class="row">
|
|
|
<td class="col col-bgc">附件</td>
|
|
|
- <td colspan="2" class="col">{{ item.addressUrlArray.length }}张图片,{{item.addressUrlArrayFilelen}}个文档</td>
|
|
|
+ <!-- <td colspan="2" class="col">{{ item.addressUrlArray.length }}张图片,{{item.addressUrlArrayFilelen}}个文档</td> -->
|
|
|
+ <td colspan="2" class="col">{{ item.addressUrlArrayImage.length }}张图片(
|
|
|
+ <template v-for="(item1,index) in item.aduitInfo">
|
|
|
+ {{index==0?item.addressUrlArray.length:item1.fileUrls&&index!=0?item1.fileUrls.length:0}} <span v-if="index!=item.aduitInfo.length-1">+</span>
|
|
|
+ </template>
|
|
|
+ ),{{item.addressUrlArrayFilelen}}个文档</td>
|
|
|
</tr>
|
|
|
</tbody>
|
|
|
<thead>
|
|
@@ -593,7 +604,11 @@
|
|
|
</tr>
|
|
|
<tr class="row">
|
|
|
<td class="col col-bgc">附件</td>
|
|
|
- <td colspan="2" class="col">{{ item.addressUrlArray.length }}张图片,{{item.addressUrlArrayFilelen}}个文档</td>
|
|
|
+ <td colspan="2" class="col">{{ item.addressUrlArrayImage.length }}张图片(
|
|
|
+ <template v-for="(item1,index) in item.aduitInfo">
|
|
|
+ {{index==0?item.addressUrlArray.length:item1.fileUrls&&index!=0?item1.fileUrls.length:0}} <span v-if="index!=item.aduitInfo.length-1">+</span>
|
|
|
+ </template>
|
|
|
+ ),{{item.addressUrlArrayFilelen}}个文档</td>
|
|
|
</tr>
|
|
|
</tbody>
|
|
|
<thead>
|
|
@@ -665,7 +680,131 @@
|
|
|
<td :colspan="item.bulkDensityStandard ==1?1:2" style="text-align:left;padding-left:10px;" v-if="item1.status=='error'" class="col">{{item1.auditMind?'驳回:'+item1.auditMind:'驳回'}}</td>
|
|
|
</tr>
|
|
|
</tbody>
|
|
|
- <div v-if="item.printType==1||item.printType==5||item.printType==6||item.printType==7" class="sfcard" >
|
|
|
+ </table>
|
|
|
+ <table v-if="item.printType==9" class="table">
|
|
|
+ <thead>
|
|
|
+ <tr class="row">
|
|
|
+ <th colspan="3" class="col">基本信息</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody>
|
|
|
+ <tr v-if="item.inOutTypeKey==2||item.inOutTypeKey==3||item.inOutTypeKey==4" class="row">
|
|
|
+ <td class="col col-bgc">编号</td>
|
|
|
+ <td colspan="2" class="col">入库({{item.EnterList.inOutTaskNo}})</td>
|
|
|
+ </tr>
|
|
|
+ <tr v-if="item.inOutTypeKey==2||item.inOutTypeKey==3||item.inOutTypeKey==4" class="row">
|
|
|
+ <td class="col col-bgc">仓库</td>
|
|
|
+ <td colspan="2" class="col">{{ item.EnterList.warehouseName }}</td>
|
|
|
+ </tr>
|
|
|
+ <tr v-if="item.inOutTypeKey==2||item.inOutTypeKey==3||item.inOutTypeKey==4" class="row">
|
|
|
+ <td class="col col-bgc">入库类型</td>
|
|
|
+ <td colspan="2" class="col">{{ item.EnterList.inOutType }}</td>
|
|
|
+ </tr>
|
|
|
+ <tr v-if="item.inOutTypeKey==2||item.inOutTypeKey==3||item.inOutTypeKey==4" class="row">
|
|
|
+ <td class="col col-bgc">预计入库日期</td>
|
|
|
+ <td colspan="2" class="col">{{ item.EnterList.predictDate }}</td>
|
|
|
+ </tr>
|
|
|
+ <tr v-if="item.inOutTypeKey==2||item.inOutTypeKey==3||item.inOutTypeKey==4" class="row">
|
|
|
+ <td class="col col-bgc">收货人</td>
|
|
|
+ <td colspan="2" class="col">{{ item.EnterList.agent }}</td>
|
|
|
+ </tr>
|
|
|
+ <tr v-if="item.inOutTypeKey==1||item.inOutTypeKey==3||item.inOutTypeKey==4" class="row">
|
|
|
+ <td class="col col-bgc">编号</td>
|
|
|
+ <td colspan="2" class="col">出库({{item.OutList.inOutTaskNo}})</td>
|
|
|
+ </tr>
|
|
|
+ <tr v-if="item.inOutTypeKey==1||item.inOutTypeKey==3||item.inOutTypeKey==4" class="row">
|
|
|
+ <td class="col col-bgc">仓库</td>
|
|
|
+ <td colspan="2" class="col">{{ item.OutList.warehouseName }}</td>
|
|
|
+ </tr>
|
|
|
+ <tr v-if="item.inOutTypeKey==2||item.inOutTypeKey==3||item.inOutTypeKey==4" class="row">
|
|
|
+ <td class="col col-bgc">出库类型</td>
|
|
|
+ <td colspan="2" class="col">{{ item.OutList.inOutType }}</td>
|
|
|
+ </tr>
|
|
|
+ <tr v-if="item.inOutTypeKey==2||item.inOutTypeKey==3||item.inOutTypeKey==4" class="row">
|
|
|
+ <td class="col col-bgc">预计出库日期</td>
|
|
|
+ <td colspan="2" class="col">{{ item.OutList.predictDate }}</td>
|
|
|
+ </tr>
|
|
|
+ <tr v-if="item.inOutTypeKey==2||item.inOutTypeKey==3||item.inOutTypeKey==4" class="row">
|
|
|
+ <td class="col col-bgc">发货人</td>
|
|
|
+ <td colspan="2" class="col">{{ item.OutList.agent }}</td>
|
|
|
+ </tr>
|
|
|
+ <tr class='row' v-if="item.EnterList.inOutType == '移库入库'">
|
|
|
+ <td class="col col-bgc">移库任务编号</td>
|
|
|
+ <td colspan="2" class="col">{{item.EnterList.moveTaskNo}}</td>
|
|
|
+ </tr>
|
|
|
+ <tr class='row' v-if="item.EnterList.inOutType != '移库入库'">
|
|
|
+ <td class="col col-bgc">合同编号</td>
|
|
|
+ <td colspan="2" class="col">{{item.EnterList.contractNo}}</td>
|
|
|
+ </tr>
|
|
|
+ <tr v-if="item.inOutTypeKey==2||item.inOutTypeKey==3||item.inOutTypeKey==4" class="row">
|
|
|
+ <td class="col col-bgc">货名</td>
|
|
|
+ <td colspan="2" class="col">{{ item.EnterList.goodsName }}</td>
|
|
|
+ </tr>
|
|
|
+ <tr v-if="item.inOutTypeKey==1" class="row">
|
|
|
+ <td class="col col-bgc">货名</td>
|
|
|
+ <td colspan="2" class="col">{{ item.OutList.goodsName }}</td>
|
|
|
+ </tr>
|
|
|
+ <tr v-if="item.inOutTypeKey==2||item.inOutTypeKey==3||item.inOutTypeKey==4" class="row">
|
|
|
+ <td class="col col-bgc">重量(吨)</td>
|
|
|
+ <td colspan="2" class="col">{{ item.EnterList.weight }}</td>
|
|
|
+ </tr>
|
|
|
+ <tr v-if="item.inOutTypeKey==1" class="row">
|
|
|
+ <td class="col col-bgc">重量(吨)</td>
|
|
|
+ <td colspan="2" class="col">{{ item.OutList.weight }}</td>
|
|
|
+ </tr>
|
|
|
+ <tr v-if="item.inOutTypeKey==2||item.inOutTypeKey==3||item.inOutTypeKey==4" class="row">
|
|
|
+ <td class="col col-bgc">品级</td>
|
|
|
+ <td colspan="2" class="col">{{ item.EnterList.grade }}</td>
|
|
|
+ </tr>
|
|
|
+ <tr v-if="item.inOutTypeKey==1" class="row">
|
|
|
+ <td class="col col-bgc">品级</td>
|
|
|
+ <td colspan="2" class="col">{{ item.OutList.grade }}</td>
|
|
|
+ </tr>
|
|
|
+ <tr v-if="item.inOutTypeKey==1||item.inOutTypeKey==3||item.inOutTypeKey==4" class="row">
|
|
|
+ <td class="col col-bgc">容重(克/升)>=</td>
|
|
|
+ <td colspan="2" class="col">{{ item.OutList.bulkDensity }}</td>
|
|
|
+ </tr>
|
|
|
+ <tr v-if="item.inOutTypeKey==1||item.inOutTypeKey==3||item.inOutTypeKey==4" class="row">
|
|
|
+ <td class="col col-bgc">水分(%)<=</td>
|
|
|
+ <td colspan="2" class="col">{{ item.OutList.waterContent }}</td>
|
|
|
+ </tr>
|
|
|
+ <tr v-if="item.inOutTypeKey==1||item.inOutTypeKey==3||item.inOutTypeKey==4" class="row">
|
|
|
+ <td class="col col-bgc">单价(元/吨)</td>
|
|
|
+ <td colspan="2" class="col">{{ item.OutList.unitPrice }}</td>
|
|
|
+ </tr>
|
|
|
+ <tr v-if="item.inOutTypeKey==1||item.inOutTypeKey==3||item.inOutTypeKey==4" class="row">
|
|
|
+ <td class="col col-bgc">业务描述</td>
|
|
|
+ <td colspan="2" class="col">{{ item.OutList.businessDescribe }}</td>
|
|
|
+ </tr>
|
|
|
+ <tr v-if="item.inOutTypeKey==1||item.inOutTypeKey==3||item.inOutTypeKey==4" class="row">
|
|
|
+ <td class="col col-bgc">仓位号</td>
|
|
|
+ <td colspan="2" class="col">{{ item.OutList.binNumber }}</td>
|
|
|
+ </tr>
|
|
|
+ <tr class="row">
|
|
|
+ <td class="col col-bgc">附件</td>
|
|
|
+ <td colspan="2" class="col">{{ item.addressUrlArrayImage.length }}张图片(
|
|
|
+ <template v-for="(item1,index) in item.aduitInfo">
|
|
|
+ {{item1.fileUrls?item1.fileUrls.length:0}} <span v-if="index!=item.aduitInfo.length-1">+</span>
|
|
|
+ </template>
|
|
|
+ ),{{item.addressUrlArrayFilelen}}个文档</td>
|
|
|
+ </tr>
|
|
|
+ </tbody>
|
|
|
+ <thead>
|
|
|
+ <tr class="row">
|
|
|
+ <th colspan="3" class="col">审核流</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody>
|
|
|
+ <tr v-for="(item1,index) in item.aduitInfo" class="row">
|
|
|
+ <td class="col col-bgc">{{item1.operatorName}}</td>
|
|
|
+ <td style="width:30%;" class="col">{{ item1.updateDate }}</td>
|
|
|
+ <td style="text-align:left;padding-left:10px;" v-if="item1.status=='question'" class="col">待审核</td>
|
|
|
+ <td style="text-align:left;padding-left:10px;" v-if="item1.status=='success'" class="col">{{index!=0?item1.auditMind?'通过:'+item1.auditMind:'通过':item1.desc}}</td>
|
|
|
+ <td style="text-align:left;padding-left:10px;" v-if="item1.status=='error'" class="col">{{item1.auditMind?'驳回:'+item1.auditMind:'驳回'}}</td>
|
|
|
+ </tr>
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ <div v-if="item.printType==1||item.printType==5||item.printType==6||item.printType==7||item.printType==9" class="sfcard" >
|
|
|
<div v-for="item1 in item.addressUrlArrayImage" class="sfcard-content">
|
|
|
<div class="sfcard-title">
|
|
|
<!-- {{ printData.customerName}}{{ printData.identityAuthenticationInfo.customerNumberCard}} -->
|