diff --git a/klp-ui/src/api/wms/coil.js b/klp-ui/src/api/wms/coil.js index cb472417..ea433277 100644 --- a/klp-ui/src/api/wms/coil.js +++ b/klp-ui/src/api/wms/coil.js @@ -183,4 +183,12 @@ export function listCoilWithIds(data) { method: 'post', data }) +} + +// 撤回钢卷发货 +export function cancelExportCoil(coilId) { + return request({ + url: '/wms/materialCoil/withdrawExportCoil/' + coilId, + method: 'get' + }) } \ No newline at end of file diff --git a/klp-ui/src/views/wms/coil/panels/LabelRender/OuterTagPreview.vue b/klp-ui/src/views/wms/coil/panels/LabelRender/OuterTagPreview.vue index 111aced8..63cf2745 100644 --- a/klp-ui/src/views/wms/coil/panels/LabelRender/OuterTagPreview.vue +++ b/klp-ui/src/views/wms/coil/panels/LabelRender/OuterTagPreview.vue @@ -49,7 +49,7 @@
材质
- +
质量要求
@@ -158,6 +158,12 @@ export default { default: 100 } }, + computed: { + // 材质展示信息,额外带上厂家的首字母 + materialWithManufacturer() { + return this.content.material + ' - ' + this.content.manufacturer + } + }, data() { return { logo, diff --git a/klp-ui/src/views/wms/coil/panels/base.vue b/klp-ui/src/views/wms/coil/panels/base.vue index b44a647e..0c89a006 100644 --- a/klp-ui/src/views/wms/coil/panels/base.vue +++ b/klp-ui/src/views/wms/coil/panels/base.vue @@ -135,6 +135,10 @@ @click="handleExportCoil(scope.row)"> 发货 + + 撤回发货 + 查看异常