|
@@ -2889,6 +2889,14 @@
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
+ <td colspan="5"
|
|
|
+ style="font-size: 20px; font-weight: bold; border: none"
|
|
|
+ ></td>
|
|
|
+ <td
|
|
|
+ style="font-size: 20px; font-weight: bold; border: none"
|
|
|
+ >流水号:{{fSerialNumber}}</td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
<td
|
|
|
width="500"
|
|
|
colspan="3"
|
|
@@ -2922,7 +2930,7 @@
|
|
|
<td width="200" style="font-size: 14px">提单号</td>
|
|
|
<td width="200" style="font-size: 14px">品牌/规格/产地</td>
|
|
|
<td width="200" style="font-size: 14px">净重(kg)</td>
|
|
|
- <td width="200" style="font-size: 14px">件数(50KG)</td>
|
|
|
+ <td width="200" style="font-size: 14px">件数(50KG)/规格</td>
|
|
|
</tr>
|
|
|
<tr v-for="(item, index) in Printinglist" :key="index">
|
|
|
<td width="200" style="font-size: 14px">{{ item.fTruckno }}</td>
|
|
@@ -2930,7 +2938,7 @@
|
|
|
<td width="200" style="font-size: 14px">{{ item.fMblno }}</td>
|
|
|
<td width="200" style="font-size: 14px">{{item.fBusinessTypes}}/{{item.fMarks}}</td>
|
|
|
<td width="200" style="font-size: 14px">{{item.fNetweight}}</td>
|
|
|
- <td width="200" style="font-size: 14px">{{ item.fQty }}</td>
|
|
|
+ <td width="200" style="font-size: 14px">{{ item.fQty }}/{{item.fPackagespecs}}</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td width="1400" colspan="6"> </td>
|
|
@@ -3048,6 +3056,7 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ fSerialNumber:'',
|
|
|
fDNameOptions:[],
|
|
|
fCNameOptions:[],
|
|
|
businessType:'',
|
|
@@ -3934,6 +3943,8 @@ export default {
|
|
|
this.fPackagespecs = this.dataListSelection[0].fPackagespecs
|
|
|
this.fMblno = this.dataListSelection[0].fMblno
|
|
|
this.fQty = this.dataListSelection[0].fQty
|
|
|
+ this.fSerialNumber = this.dataListSelection[0].fSerialNumber
|
|
|
+ console.log(this.dataListSelection[0])
|
|
|
// this.fAddr = this.dataListSelection[0].fQty
|
|
|
var date = new Date(this.dataListSelection[0].fBsdate)
|
|
|
var Y = date.getFullYear() + '-'
|
|
@@ -3943,6 +3954,7 @@ export default {
|
|
|
}
|
|
|
this.editDialogVisible_sss = true
|
|
|
this.fBstime = this.form.fBstime
|
|
|
+ this.fSerialNumber = this.dataList[0].fSerialNumber.slice(7,11)
|
|
|
for(let item in this.businessTypeOption){
|
|
|
if(this.form.fBusinessType == this.businessTypeOption[item].dictValue){
|
|
|
this.businessType = this.businessTypeOption[item].dictLabel
|