feat(scrap): 报废作业页重构为「按单扫码执行」,对齐出库版式

create.vue 由「直接报废」页(492 行)重写为按单执行页:
  · 顶部选择已批准申请单(scope=executable, status=1);
  · 载入 items_json 为待执行清单,逐项显示批准数量与已扫数量;
  · 扫码头按 (source_table, stock_id) 匹配批准明细,
    不在单内或超批准量时红色 toast + 震动阻断,禁止入车;
  · 支持 ?requestId= 深链直达;提交实扫 payload 到 execute 接口。

审批页的「执行报废」由弹窗盲执行改为跳转本页(router.push + query.requestId),
移除 executeVisible/confirmExecute 等已失效代码;路由标题改为「按单报废执行」。
executeScrapByRequest 增加 items 参数。
This commit is contained in:
yueli
2026-09-10 10:14:43 +08:00
parent 7719943779
commit af2d1c10c6
4 changed files with 529 additions and 336 deletions

View File

@ -261,7 +261,7 @@ const routes: Array<RouteRecordRaw> = [
path: 'create',
name: 'ScrapCreate',
component: () => import('@/views/operation/scrap/create.vue'),
meta: { title: '新建报废' }
meta: { title: '按单报废执行' }
},
{
path: 'apply',