| | |
| | | params: data |
| | | }) |
| | | } |
| | | |
| | | // 班组工资报表记录查询 |
| | | export function GroupSalaryReportSearch(data) { |
| | | return request({ |
| | | url: 'ReportManager/GroupSalaryReportSearch', |
| | | method: 'get', |
| | | params: data |
| | | }) |
| | | } |
| | | |
| | | // 班组工资报表记录查询 |
| | | export function GroupSalaryReportExcelSearch(data) { |
| | | return request({ |
| | | url: 'ReportManager/GroupSalaryReportExcelSearch', |
| | | method: 'get', |
| | | params: data |
| | | }) |
| | | } |
| | | |
| | | // 班组工资报表记录查看报工人员 |
| | | export function GroupSalaryReportSearchUser(data) { |
| | | return request({ |
| | | url: 'ReportManager/GroupSalaryReportSearchUser', |
| | | method: 'get', |
| | | params: data |
| | | }) |
| | | } |
| | | |
| | | // 人员工资明细报表 |
| | | export function PeopleSalaryReportSearch(data) { |
| | | return request({ |
| | | url: 'ReportManager/PeopleSalaryReportSearch', |
| | | method: 'get', |
| | | params: data |
| | | }) |
| | | } |
| | | |
| | | // 人员工资明细报表导出 |
| | | export function PeopleSalaryReportExcelSearch(data) { |
| | | return request({ |
| | | url: 'ReportManager/PeopleSalaryReportExcelSearch', |
| | | method: 'get', |
| | | params: data |
| | | }) |
| | | } |
| | | |