| | |
| | | }) |
| | | } |
| | | |
| | | // 入库记录删除 |
| | | export function DeleteStorageRecord(data) { |
| | | return request({ |
| | | url: 'ReportManager/DeleteStorageRecord', |
| | | method: 'post', |
| | | data |
| | | }) |
| | | } |
| | | |
| | | // 入库记录导出 |
| | | export function StorageRecordExcelSearch(data) { |
| | | return request({ |
| | |
| | | params: data |
| | | }) |
| | | } |
| | | |
| | | // 入库记录表头 |
| | | export function InStorageRecordMainSearch(data) { |
| | | return request({ |
| | | url: 'ReportManager/InStorageRecordMainSearch', |
| | | method: 'get', |
| | | params: data |
| | | }) |
| | | } |
| | | |
| | | // 入库记录表体 |
| | | export function InStorageRecordSubSearch(data) { |
| | | return request({ |
| | | url: 'ReportManager/InStorageRecordSubSearch', |
| | | method: 'get', |
| | | params: data |
| | | }) |
| | | } |
| | | |
| | | // 入库记录删除 |
| | | export function DeleteInStorageRecord(data) { |
| | | return request({ |
| | | url: 'ReportManager/DeleteInStorageRecord', |
| | | method: 'post', |
| | | data |
| | | }) |
| | | } |
| | | |