You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
895 B
17 lines
895 B
import { createAPI } from "@/utils/httpRequest.js";
|
|
|
|
// ==================== RFID日常入库盘点主表 ==================== - rqrq
|
|
|
|
// 查询RFID盘点推送主表列表 - rqrq
|
|
export const searchRfidCountHeaderList = data => createAPI(`/check/rfidCount/searchRfidCountHeaderList`, 'post', data)
|
|
|
|
// 查询RFID盘点推送明细列表 - rqrq
|
|
export const searchRfidCountDetailList = data => createAPI(`/check/rfidCount/searchRfidCountDetailList`, 'post', data)
|
|
|
|
// ==================== RFID日常入库盘点快照 ==================== - rqrq
|
|
|
|
// 查询RFID日常入库盘点结果列表 - rqrq
|
|
export const searchRfidCountSnapshotList = data => createAPI(`/check/rfidCount/searchRfidCountSnapshotList`, 'post', data)
|
|
|
|
// 从RFID快照生成盘点结果 - rqrq
|
|
export const generateCountResultFromSnapshot = data => createAPI(`/check/rfidCount/generateCountResultFromSnapshot`, 'post', data)
|