1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- import http from '@/utils/request'
- // 业绩分配 列表查询
- export function getAllocationPage (data) {
- return http.post('/employee/performance/page', data)
- }
- // 业绩分配 绩效分配
- export function saveAllocationGrant (data) {
- return http.post('/employee/performance/grant', data)
- }
- // 业绩分配 员工类型字典
- export function getAllocationEmployeeCategory (data) {
- return http.post('/employee/performance/category/dict', data)
- }
- // 业绩分配 检查审核状态
- // export function checkAllocationSubmitStatus (data) {
- // return http.post('/employee/performance/confirmation/check/submit', data)
- // }
- // 业绩分配 绩效分配统计
- export function getAllocationStatistics (data) {
- return http.post('/employee/performance/grant/statistics', data)
- }
- // 业绩分配 绩效分配统计
- export function saveAllocation (data) {
- return http.post('/employee/performance/submit/grant', data)
- }
- // 业绩分配 获取可分配机构类型
- export function getAllocationOrganizationCategory () {
- return http.post('/performance/salary/manage/current/employee/organization/category')
- }
- // 奖金审核 列表
- export function getBonusApprovePage (data) {
- return http.post('/employee/performance/confirmation/page', data)
- }
- // 奖金审核 审核
- export function saveBonusApproveConfirmation (data) {
- return http.post('/employee/performance/confirmation/approve', data)
- }
- // 奖金设置 列表
- export function getBonusSettingPage (data) {
- return http.post('/performance/configuration/page', data)
- }
- // 奖金设置 保存
- export function saveBonusSetting (data) {
- return http.post('/performance/configuration/save', data)
- }
- // 绩效分配管理配置列表
- export function getAllocationConfigList (data) {
- return http.post('/performance/salary/manage/employee/page', data)
- }
- // 绩效分配管理配置 保存
- export function saveAllocationConfig (data) {
- return http.post('/performance/salary/manage/employee/save', data)
- }
- // 绩效分配管理配置 删除
- export function deleteAllocationConfig (data) {
- return http.post('performance/salary/manage/employee/delete', data)
- }
|