|
@@ -108,7 +108,7 @@
|
|
|
btnName="明细导出"
|
|
btnName="明细导出"
|
|
|
fileName="明细导出"
|
|
fileName="明细导出"
|
|
|
apiUrl="/eom/saleordersendrecord/exportDetail"
|
|
apiUrl="/eom/saleordersendrecord/exportDetail"
|
|
|
- :params="params"
|
|
|
|
|
|
|
+ :params="exportParams"
|
|
|
></exportButton>
|
|
></exportButton>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
@@ -194,7 +194,7 @@
|
|
|
:underline="false"
|
|
:underline="false"
|
|
|
icon="el-icon-edit"
|
|
icon="el-icon-edit"
|
|
|
@click="creatInvoiceConfirm(row)"
|
|
@click="creatInvoiceConfirm(row)"
|
|
|
- v-if="isSplitFlag == 0 && ([2].includes(row.reviewStatus) && row.isSuspend != 1)"
|
|
|
|
|
|
|
+ v-if="row.isSplitFlag == 0 && ([2].includes(row.reviewStatus) && row.isSuspend != 1)"
|
|
|
>
|
|
>
|
|
|
创建发货确认单
|
|
创建发货确认单
|
|
|
</el-link>
|
|
</el-link>
|
|
@@ -203,7 +203,7 @@
|
|
|
:underline="false"
|
|
:underline="false"
|
|
|
icon="el-icon-edit"
|
|
icon="el-icon-edit"
|
|
|
@click="creatReturnGoods('add', row)"
|
|
@click="creatReturnGoods('add', row)"
|
|
|
- v-if="isSplitFlag == 0 && ([2].includes(row.reviewStatus) && row.isSuspend != 1)"
|
|
|
|
|
|
|
+ v-if="row.isSplitFlag == 0 && ([2].includes(row.reviewStatus) && row.isSuspend != 1)"
|
|
|
>
|
|
>
|
|
|
创建退货单
|
|
创建退货单
|
|
|
</el-link>
|
|
</el-link>
|
|
@@ -547,7 +547,14 @@
|
|
|
isReview: false
|
|
isReview: false
|
|
|
};
|
|
};
|
|
|
},
|
|
},
|
|
|
- computed: {},
|
|
|
|
|
|
|
+ computed: {
|
|
|
|
|
+ exportParams() {
|
|
|
|
|
+ return {
|
|
|
|
|
+ ...this.params,
|
|
|
|
|
+ sendRecordIds: this.selection.map(item => item.id)
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
created() {
|
|
created() {
|
|
|
//打印是否需要审核//0否 1是
|
|
//打印是否需要审核//0否 1是
|
|
|
parameterGetByCode({
|
|
parameterGetByCode({
|