| | |
| | | }) |
| | | } |
| | | |
| | | // 物流检验记录查询 |
| | | export function LogisticsCheckSearch(data) { |
| | | return request({ |
| | | url: 'ReportManager/LogisticsCheckSearch', |
| | | method: 'get', |
| | | params: data |
| | | }) |
| | | } |
| | | |
| | | // 物流检验,查看检验明细 |
| | | export function LogisticsCheckSubSearch(data) { |
| | | return request({ |
| | | url: 'ReportManager/LogisticsCheckSubSearch', |
| | | method: 'get', |
| | | params: data |
| | | }) |
| | | } |
| | | |
| | | // 生产进度报表查询 |
| | | export function ProductionScheduleReportSearch(data) { |
| | | return request({ |
| | | url: 'ReportManager/ProductionScheduleReportSearch', |
| | | method: 'get', |
| | | params: data |
| | | }) |
| | | } |
| | | |
| | | // 生产进度报表导出 |
| | | export function ProductionScheduleReportExcelSearch(data) { |
| | | return request({ |
| | | url: 'ReportManager/ProductionScheduleReportExcelSearch', |
| | | method: 'get', |
| | | params: data |
| | | }) |
| | | } |
| | | |