add:需求单增加批量操作,强制回传功能

This commit is contained in:
zhangzq
2026-07-31 22:08:15 +08:00
parent 1d87add97d
commit aa2933a6b7
32 changed files with 435 additions and 141 deletions

View File

@@ -202,7 +202,7 @@
<el-table-column show-overflow-tooltip prop="bill_type" :formatter="bill_typeFormat" label="业务类型" />
<el-table-column show-overflow-tooltip width="100" prop="biz_date" label="业务日期" />
<el-table-column show-overflow-tooltip label="明细数" align="center" prop="detail_count" width="60" />
<el-table-column show-overflow-tooltip label="计划量" align="center" prop="total_qty" width="100" :formatter="crud.formatNum3" />
<el-table-column show-overflow-tooltip label="计划量" align="center" prop="total_qty" width="100" :formatter="crud.formatNum3" />
<!-- <el-table-column show-overflow-tooltip label="实际重量" align="center" prop="plan_qty" width="100" :formatter="crud.formatNum3" />-->
<el-table-column show-overflow-tooltip label="是否回传" align="center" prop="is_upload" width="80" :formatter="formatIsUpload" />
<el-table-column show-overflow-tooltip :formatter="create_modeFormat" prop="create_mode" label="生成方式" width="100" />
@@ -250,8 +250,8 @@ import AddDialog from '@/views/wms/st/outbill/AddDialog'
import DivDialog from '@/views/wms/st/outbill/DivDialog'
import ViewDialog from '@/views/wms/st/outbill/ViewDialog'
import crudBsrealstorattr from '@/views/wms/basedata/bsrealstorattr/bsrealstorattr'
import crudPurchase from "@/views/wms/pm_manage/otherIn/purchase";
import QRCode from "qrcode";
import crudPurchase from '@/views/wms/pm_manage/otherIn/purchase'
import QRCode from 'qrcode'
const start = new Date()
@@ -454,8 +454,7 @@ export default {
html += '<tr><td class="lbl">行号</td><td class="val">' + itemNo + '</td></tr>'
html += '<tr><td class="lbl">物料编码</td><td class="val">' + skuCode + '</td></tr>'
html += '<tr><td class="lbl">物料名称</td><td class="val">' + skuName + '</td></tr>'
html += '<tr><td class="lbl">计划出库量</td><td class="val">' + qty + '</td></tr>'
html += '<tr><td class="lbl">实出库数量</td><td class="val">' + assQty + '</td></tr>'
html += '<tr><td class="lbl">出库量</td><td class="val">' + assQty + '</td></tr>'
html += '<tr><td class="lbl">用料位置</td><td class="val">' + house_code + '</td></tr>'
html += '</table></div>'
}