|
@@ -143,7 +143,6 @@
|
|
|
<el-table-column label="品号" prop="code" width="160" />
|
|
|
<el-table-column label="品名" prop="name" min-width="220" />
|
|
|
<el-table-column label="销售单价" prop="internalSellingPrice" width="100" />
|
|
|
- <el-table-column label="成本单价" prop="costPrice" width="100" />
|
|
|
<el-table-column label="数量" width="120">
|
|
|
<template #default="{ row, $index }">
|
|
|
<div class="shippingPackage">
|
|
@@ -169,11 +168,6 @@
|
|
|
{{ moneyFormat(computeMoney(row, "internalSellingPrice"), 2) }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="成本小计" width="120">
|
|
|
- <template #default="{ row }">
|
|
|
- {{ moneyFormat(computeMoney(row, "costPrice"), 2) }}
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
<el-table-column label="操作" align="center" fixed="right" width="80">
|
|
|
<template #default="{ $index }">
|
|
|
<el-button type="danger" @click="clickDelete($index)" text>删除</el-button>
|
|
@@ -190,7 +184,7 @@
|
|
|
v-if="formShippingPackage.data.outerBoxSelfAdhesiveStickerFile && formShippingPackage.data.outerBoxSelfAdhesiveStickerFile.fileUrl"
|
|
|
:src="formShippingPackage.data.outerBoxSelfAdhesiveStickerFile.fileUrl"
|
|
|
@click="openFile(formShippingPackage.data.outerBoxSelfAdhesiveStickerFile.fileUrl)" />
|
|
|
- <div style="display: flex">
|
|
|
+ <div style="display: flex" v-if="route.query.processType != 10">
|
|
|
<el-upload
|
|
|
:show-file-list="false"
|
|
|
action="https://winfaster.obs.cn-south-1.myhuaweicloud.com"
|
|
@@ -249,18 +243,12 @@
|
|
|
<el-table-column label="品号" prop="code" width="160" />
|
|
|
<el-table-column label="品名" prop="name" min-width="220" />
|
|
|
<el-table-column label="销售单价" prop="internalSellingPrice" width="100" />
|
|
|
- <el-table-column label="成本单价" prop="costPrice" width="100" />
|
|
|
<el-table-column label="数量" prop="quantity" width="120" />
|
|
|
<el-table-column label="销售小计" width="120">
|
|
|
<template #default="{ row }">
|
|
|
{{ moneyFormat(computeMoney(row, "internalSellingPrice"), 2) }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="成本小计" width="120">
|
|
|
- <template #default="{ row }">
|
|
|
- {{ moneyFormat(computeMoney(row, "costPrice"), 2) }}
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
</el-table>
|
|
|
<div style="font-weight: 700; margin: 20px 0 10px 0">外箱不干胶图稿</div>
|
|
|
<div style="display: flex; width: 100%">
|
|
@@ -573,7 +561,6 @@ const selectExpressPacking = (data) => {
|
|
|
bomSpecId: data.id,
|
|
|
code: data.code,
|
|
|
name: data.name,
|
|
|
- costPrice: data.costPrice,
|
|
|
internalSellingPrice: data.internalSellingPrice,
|
|
|
quantity: undefined,
|
|
|
});
|
|
@@ -583,7 +570,6 @@ const selectExpressPacking = (data) => {
|
|
|
bomSpecId: data.id,
|
|
|
code: data.code,
|
|
|
name: data.name,
|
|
|
- costPrice: data.costPrice,
|
|
|
internalSellingPrice: data.internalSellingPrice,
|
|
|
quantity: undefined,
|
|
|
},
|
|
@@ -657,7 +643,6 @@ const selectAssembly = (item) => {
|
|
|
bomSpecId: resItem.id,
|
|
|
code: resItem.code,
|
|
|
name: resItem.name,
|
|
|
- costPrice: resItem.costPrice,
|
|
|
internalSellingPrice: resItem.internalSellingPrice,
|
|
|
quantity: undefined,
|
|
|
};
|