| | |
| | | url: '/sales/ledger/getAmountHalfYear', |
| | | method: 'get' |
| | | }) |
| | | } |
| | | |
| | | // 协同待审批和报修待办事项 |
| | | export const approveAndDeviceTodos = () => { |
| | | return request({ |
| | | url: '/home/approveAndDeviceTodos', |
| | | method: 'get' |
| | | }) |
| | | } |
| | | export const noticesCount = () => { |
| | | return request({ |
| | | url: '/home/noticesCount', |
| | | method: 'get' |
| | | }) |
| | | } |
| | | |
| | | // 各生产订单的完成进度统计 |
| | | // /home/progressStatistics |
| | | export const getProgressStatistics = ()=>{ |
| | | return request({ |
| | | url: '/home/progressStatistics', |
| | | method: 'get' |
| | | }) |
| | | } |
| | | |
| | | //在制品周转情况 |
| | | //home/workInProcessTurnover |
| | | export const getWorkInProcessTurnover= ()=>{ |
| | | return request({ |
| | | url: '/home/workInProcessTurnover', |
| | | method: 'get' |
| | | }) |
| | | } |