|
@@ -40,13 +40,19 @@
|
|
<span style="margin-left: 14px"
|
|
<span style="margin-left: 14px"
|
|
>出货库:{{ shipment1.sendWarehouse }}</span
|
|
>出货库:{{ shipment1.sendWarehouse }}</span
|
|
>
|
|
>
|
|
- <span class="status" v-show="shipment1.taskStatus == '待审核'">{{ shipment1.taskStatus }}</span>
|
|
|
|
- <span class="status2" v-show="shipment1.taskStatus == '执行中'">{{ shipment1.taskStatus }}</span>
|
|
|
|
- <span class="status1" v-show="shipment1.taskStatus == '已完成'">{{ shipment1.taskStatus }}</span>
|
|
|
|
|
|
+ <span class="status" v-show="shipment1.taskStatus == '待审核'">{{
|
|
|
|
+ shipment1.taskStatus
|
|
|
|
+ }}</span>
|
|
|
|
+ <span class="status2" v-show="shipment1.taskStatus == '执行中'">{{
|
|
|
|
+ shipment1.taskStatus
|
|
|
|
+ }}</span>
|
|
|
|
+ <span class="status1" v-show="shipment1.taskStatus == '已完成'">{{
|
|
|
|
+ shipment1.taskStatus
|
|
|
|
+ }}</span>
|
|
</div>
|
|
</div>
|
|
<!--出库经办人-->
|
|
<!--出库经办人-->
|
|
<ws-form-item label="出库经办人:" span="1" prop="agent">
|
|
<ws-form-item label="出库经办人:" span="1" prop="agent">
|
|
- {{shipment1.agent}}
|
|
|
|
|
|
+ {{ shipment1.agent }}
|
|
</ws-form-item>
|
|
</ws-form-item>
|
|
<el-divider direction="vertical" class="line"></el-divider>
|
|
<el-divider direction="vertical" class="line"></el-divider>
|
|
<!--出库重量(吨)-->
|
|
<!--出库重量(吨)-->
|
|
@@ -71,9 +77,15 @@
|
|
<span style="margin-left: 14px">
|
|
<span style="margin-left: 14px">
|
|
入货库:{{ enter.warehouseName }}</span
|
|
入货库:{{ enter.warehouseName }}</span
|
|
>
|
|
>
|
|
- <span class="status" v-show="enter.taskStatus == '待审核'">{{ enter.taskStatus }}</span>
|
|
|
|
- <span class="status2" v-show="enter.taskStatus == '执行中'">{{ enter.taskStatus }}</span>
|
|
|
|
- <span class="status1" v-show="enter.taskStatus == '已完成'">{{ enter.taskStatus }}</span>
|
|
|
|
|
|
+ <span class="status" v-show="enter.taskStatus == '待审核'">{{
|
|
|
|
+ enter.taskStatus
|
|
|
|
+ }}</span>
|
|
|
|
+ <span class="status2" v-show="enter.taskStatus == '执行中'">{{
|
|
|
|
+ enter.taskStatus
|
|
|
|
+ }}</span>
|
|
|
|
+ <span class="status1" v-show="enter.taskStatus == '已完成'">{{
|
|
|
|
+ enter.taskStatus
|
|
|
|
+ }}</span>
|
|
</div>
|
|
</div>
|
|
<!--入库经办人-->
|
|
<!--入库经办人-->
|
|
<ws-form-item label="入库经办人:" span="1" prop="agent">
|
|
<ws-form-item label="入库经办人:" span="1" prop="agent">
|
|
@@ -156,28 +168,32 @@
|
|
/>
|
|
/>
|
|
<div class="small-title" style="font-size: 16px">实际流转数量</div>
|
|
<div class="small-title" style="font-size: 16px">实际流转数量</div>
|
|
<ws-info-table class="flow">
|
|
<ws-info-table class="flow">
|
|
- <el-table :data="weights" border style="width: 100%">
|
|
|
|
|
|
+ <el-table :data="weights" border style="width: 100%">
|
|
<el-table-column prop="weightOut" label="累计出库量(吨)">
|
|
<el-table-column prop="weightOut" label="累计出库量(吨)">
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column prop="weightIn" label="累计入库量(吨)">
|
|
<el-table-column prop="weightIn" label="累计入库量(吨)">
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column prop="transportLoss" label="累计运输损耗(吨)">
|
|
|
|
|
|
+ <el-table-column prop="transportLoss" label="累计运输损耗(吨)">
|
|
<template scope="scope">
|
|
<template scope="scope">
|
|
- {{scope.row.weightOut - scope.row.weightIn}}
|
|
|
|
|
|
+ {{ scope.row.weightOut - scope.row.weightIn }}
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
</ws-info-table>
|
|
</ws-info-table>
|
|
<ws-info-table class="flow1">
|
|
<ws-info-table class="flow1">
|
|
- <el-table :data="enter.inOutWarehouseTaskList" border style="width: 100%">
|
|
|
|
|
|
+ <el-table
|
|
|
|
+ :data="enter.inOutWarehouseTaskList"
|
|
|
|
+ border
|
|
|
|
+ style="width: 100%"
|
|
|
|
+ >
|
|
<el-table-column prop="weight" label="累计退库量(吨)">
|
|
<el-table-column prop="weight" label="累计退库量(吨)">
|
|
- <template >
|
|
|
|
- {{this.enter.stockReturnCount}}
|
|
|
|
- </template>
|
|
|
|
- <template scope="scope">
|
|
|
|
- {{scope.row.weight}}<span style="margin: 0 30px;color: #8890B1;">退至</span>{{scope.row.warehouseName}}
|
|
|
|
- <div></div>
|
|
|
|
- </template>
|
|
|
|
|
|
+ <el-table-column :label="count">
|
|
|
|
+ <template scope="scope">
|
|
|
|
+ {{ scope.row.weight
|
|
|
|
+ }}<span style="margin: 0 30px; color: #8890b1">退至</span
|
|
|
|
+ >{{ scope.row.warehouseName }}
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
</ws-info-table>
|
|
</ws-info-table>
|
|
@@ -241,20 +257,20 @@ export default {
|
|
name: '',
|
|
name: '',
|
|
moveLookData: [],
|
|
moveLookData: [],
|
|
shipment: {},
|
|
shipment: {},
|
|
- shipment1:{},
|
|
|
|
- enter: {},
|
|
|
|
|
|
+ shipment1: {},
|
|
|
|
+ enter: {
|
|
|
|
+ inOutWarehouseTaskList:[],
|
|
|
|
+ },
|
|
moveTaskNo: '',
|
|
moveTaskNo: '',
|
|
- weights:[
|
|
|
|
|
|
+ weights: [
|
|
{},
|
|
{},
|
|
- // {weightIn: 0},
|
|
|
|
- // { transportLoss: 0}
|
|
|
|
],
|
|
],
|
|
weightOut: 0,
|
|
weightOut: 0,
|
|
weightIn: 0,
|
|
weightIn: 0,
|
|
transportLoss: 0,
|
|
transportLoss: 0,
|
|
|
|
|
|
weightIn: 0,
|
|
weightIn: 0,
|
|
-
|
|
|
|
|
|
+
|
|
retreat: 0,
|
|
retreat: 0,
|
|
goodsName: '',
|
|
goodsName: '',
|
|
grade: '',
|
|
grade: '',
|
|
@@ -263,6 +279,7 @@ export default {
|
|
weight: 0,
|
|
weight: 0,
|
|
unitPrice: 0,
|
|
unitPrice: 0,
|
|
businessDescribe: '',
|
|
businessDescribe: '',
|
|
|
|
+ count: '0',
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
|
|
@@ -279,7 +296,6 @@ export default {
|
|
this.deptBudgetList.warehousePositioning =
|
|
this.deptBudgetList.warehousePositioning =
|
|
item.lnglat.lat + ',' + item.lnglat.lng
|
|
item.lnglat.lat + ',' + item.lnglat.lng
|
|
},
|
|
},
|
|
-
|
|
|
|
confirmPositioncity() {
|
|
confirmPositioncity() {
|
|
this.listDate.level = 'city'
|
|
this.listDate.level = 'city'
|
|
this.listDate.country = this.name
|
|
this.listDate.country = this.name
|
|
@@ -310,16 +326,24 @@ export default {
|
|
if (this.moveLookData[i].inOutType == '移库出库') {
|
|
if (this.moveLookData[i].inOutType == '移库出库') {
|
|
this.shipment = this.moveLookData[i]
|
|
this.shipment = this.moveLookData[i]
|
|
this.shipment1 = this.moveLookData[i]
|
|
this.shipment1 = this.moveLookData[i]
|
|
- this.weightOut = this.moveLookData[i].weight
|
|
|
|
- this.$set(this.weights[0],'weightOut',this.moveLookData[i].weight)
|
|
|
|
- } else {
|
|
|
|
|
|
+ this.weightOut = this.moveLookData[i].weight
|
|
|
|
+ this.$set(
|
|
|
|
+ this.weights[0],
|
|
|
|
+ 'weightOut',
|
|
|
|
+ this.moveLookData[i].weight
|
|
|
|
+ )
|
|
|
|
+ } else {
|
|
// if (this.moveLookData[i].inOutType == '移库入库')
|
|
// if (this.moveLookData[i].inOutType == '移库入库')
|
|
- this.enter = this.shipment = this.moveLookData[i]
|
|
|
|
- this.weightIn = this.moveLookData[i].weight
|
|
|
|
- this.$set(this.weights[0],'weightIn',this.moveLookData[i].weight)
|
|
|
|
|
|
+ this.enter = this.shipment = this.moveLookData[i]
|
|
|
|
+ this.weightIn = this.moveLookData[i].weight
|
|
|
|
+ this.$set(
|
|
|
|
+ this.weights[0],
|
|
|
|
+ 'weightIn',
|
|
|
|
+ this.moveLookData[i].weight
|
|
|
|
+ )
|
|
this.businessDescribe = this.moveLookData[i].businessDescribe
|
|
this.businessDescribe = this.moveLookData[i].businessDescribe
|
|
}
|
|
}
|
|
- this.transportLoss = this.weightOut - this.weightIn
|
|
|
|
|
|
+ this.transportLoss = this.weightOut - this.weightIn
|
|
this.goodsName = this.moveLookData[0].goodsName
|
|
this.goodsName = this.moveLookData[0].goodsName
|
|
this.grade = this.moveLookData[0].grade
|
|
this.grade = this.moveLookData[0].grade
|
|
this.bulkDensity = this.moveLookData[0].bulkDensity
|
|
this.bulkDensity = this.moveLookData[0].bulkDensity
|
|
@@ -327,7 +351,11 @@ export default {
|
|
this.weight = this.moveLookData[0].weight
|
|
this.weight = this.moveLookData[0].weight
|
|
this.unitPrice = this.moveLookData[0].unitPrice
|
|
this.unitPrice = this.moveLookData[0].unitPrice
|
|
}
|
|
}
|
|
- console.log(this.shipment1,"出库对象")
|
|
|
|
|
|
+ var num = 0
|
|
|
|
+ for (var i = 0; i < this.enter.inOutWarehouseTaskList.length; i++) {
|
|
|
|
+ num += this.enter.inOutWarehouseTaskList[i].weight
|
|
|
|
+ }
|
|
|
|
+ this.count = ""+num
|
|
})
|
|
})
|
|
},
|
|
},
|
|
selectChapterTwo(e) {
|
|
selectChapterTwo(e) {
|
|
@@ -654,7 +682,7 @@ export default {
|
|
// border-bottom: 0px;
|
|
// border-bottom: 0px;
|
|
border-top: 0px;
|
|
border-top: 0px;
|
|
}
|
|
}
|
|
-.flow{
|
|
|
|
|
|
+.flow {
|
|
height: 95px;
|
|
height: 95px;
|
|
}
|
|
}
|
|
/deep/.flow .el-form-item {
|
|
/deep/.flow .el-form-item {
|
|
@@ -689,28 +717,28 @@ export default {
|
|
color: #000 !important;
|
|
color: #000 !important;
|
|
font-weight: 400;
|
|
font-weight: 400;
|
|
}
|
|
}
|
|
-/deep/.el-table td{
|
|
|
|
|
|
+/deep/.el-table td {
|
|
text-align: center;
|
|
text-align: center;
|
|
}
|
|
}
|
|
-.status{
|
|
|
|
|
|
+.status {
|
|
margin-left: 10px;
|
|
margin-left: 10px;
|
|
- background: #E6EAF8;
|
|
|
|
|
|
+ background: #e6eaf8;
|
|
padding: 2px 5px;
|
|
padding: 2px 5px;
|
|
border-radius: 3px;
|
|
border-radius: 3px;
|
|
- color: #5473E8;
|
|
|
|
|
|
+ color: #5473e8;
|
|
}
|
|
}
|
|
-.status1{
|
|
|
|
- margin-left: 10px;
|
|
|
|
-background: #E5F1F7;
|
|
|
|
|
|
+.status1 {
|
|
|
|
+ margin-left: 10px;
|
|
|
|
+ background: #e5f1f7;
|
|
padding: 2px 5px;
|
|
padding: 2px 5px;
|
|
border-radius: 3px;
|
|
border-radius: 3px;
|
|
- color: #50CAD4;
|
|
|
|
|
|
+ color: #50cad4;
|
|
}
|
|
}
|
|
-.status2{
|
|
|
|
- margin-left: 10px;
|
|
|
|
-background: #E1E7FD;
|
|
|
|
|
|
+.status2 {
|
|
|
|
+ margin-left: 10px;
|
|
|
|
+ background: #e1e7fd;
|
|
padding: 2px 5px;
|
|
padding: 2px 5px;
|
|
border-radius: 3px;
|
|
border-radius: 3px;
|
|
- color: #5473E8;
|
|
|
|
|
|
+ color: #5473e8;
|
|
}
|
|
}
|
|
</style>
|
|
</style>
|