feat(wms): 新增发货计划、发货单及相关功能

- 添加发货计划管理页面及API接口
- 添加发货单管理页面及API接口
- 添加发货单明细管理API接口
- 在钢卷操作流程中新增通过库区编辑钢卷操作类型
- 修改发货操作使用updateMaterialCoilSimple接口
This commit is contained in:
砂糖
2025-11-25 17:29:14 +08:00
parent 63813ba130
commit 8367eeeabb
7 changed files with 431 additions and 2 deletions

View File

@@ -82,6 +82,7 @@
<span v-else-if="scope.row.actionType===401">入库操作</span>
<span v-else-if="scope.row.actionType===402">发货操作</span>
<span v-else-if="scope.row.actionType===403">移库操作</span>
<span v-else-if="scope.row.actionType===404">通过库区编辑钢卷</span>
<dict-tag v-else :options='dict.type.action_type' :value="scope.row.actionType "></dict-tag>
</template>
</el-table-column>

View File

@@ -193,7 +193,7 @@
</template>
<script>
import { updateMaterialCoil, getMaterialCoil } from '@/api/wms/coil'
import { updateMaterialCoilSimple, getMaterialCoil } from '@/api/wms/coil'
import { listPendingAction, addPendingAction } from '@/api/wms/pendingAction'
import MaterialSelect from "@/components/KLPService/MaterialSelect";
import ActualWarehouseSelect from "@/components/KLPService/ActualWarehouseSelect";
@@ -313,7 +313,7 @@ export default {
this.$refs["form"].validate(valid => {
if (valid) {
this.buttonLoading = true;
updateMaterialCoil({
updateMaterialCoilSimple({
...this.form,
coilId: this.form.coilId,
status: 1