拣选台修改

This commit is contained in:
2025-03-24 14:33:41 +08:00
parent 4ecf794234
commit 72d05df7e1
2 changed files with 50 additions and 41 deletions

View File

@@ -262,44 +262,49 @@ export const queryPickingPoint = () => {
}
export const pickingInfo = () => {
let res = [
{
"qty": 26,
"vehicle_code": "Z00017",
"create_time": null,
"update_time": null,
"stor_code": null,
"task_type": "PK20240909006",
"material_name": "测试物料33fdfdff测试物料33",
"material_code": null,
"material_spec": "test_zz",
"assign_qty": 7,
"single_weight": 15.70,
"theory_qty": 0,
"actual_weight": 0,
"remaining_qty": 26,
"form_data": "{\"stor_code\": \"FStockId\", \"point_code\": \"1311\", \"product_area\": \"A1\", \"vehicle_code\": \"Z00017\"}",
"product_area": "A1"
},
{
"qty": 200,
"vehicle_code": "X00021",
"create_time": null,
"update_time": null,
"stor_code": null,
"task_type": "PK20241017002",
"material_name": "测试物料",
"material_code": null,
"material_spec": "test_zz",
"assign_qty": 4,
"single_weight": 15.70,
"theory_qty": 0,
"actual_weight": 0,
"remaining_qty": 200,
"form_data": "{\"stor_code\": \"FStockId\", \"point_code\": \"1311\", \"product_area\": \"A1\", \"vehicle_code\": \"X00021\"}",
"product_area": "A1"
let res = {
taskList: [
{
"qty": 26,
"vehicle_code": "Z00017",
"create_time": null,
"update_time": null,
"stor_code": null,
"task_type": "PK20240909006",
"material_name": "测试物料33fdfdff测试物料33",
"material_code": null,
"material_spec": "test_zz",
"assign_qty": 7,
"single_weight": 15.70,
"theory_qty": 0,
"actual_weight": 0,
"remaining_qty": 26,
"form_data": "{\"stor_code\": \"FStockId\", \"point_code\": \"1311\", \"product_area\": \"A1\", \"vehicle_code\": \"Z00017\"}",
"product_area": "A1"
},
{
"qty": 200,
"vehicle_code": "X00021",
"create_time": null,
"update_time": null,
"stor_code": null,
"task_type": "PK20241017002",
"material_name": "测试物料",
"material_code": null,
"material_spec": "test_zz",
"assign_qty": 4,
"single_weight": 15.70,
"theory_qty": 0,
"actual_weight": 0,
"remaining_qty": 200,
"form_data": "{\"stor_code\": \"FStockId\", \"point_code\": \"1311\", \"product_area\": \"A1\", \"vehicle_code\": \"X00021\"}",
"product_area": "A1"
}
],
pointInfo: {
is_used: false
}
]
}
return res
}