12345678910111213141516 |
- import { errorCatcher, errorHandle, filter } from 'base-core-lib'
- import { appRx } from '../defalutConfig/indexRx'
- import {
- API_GET_PURCHRECEIPT,
- API_GET_CONTRACTNO,
- API_POST_AMEND_PURCHRECEIPT,
- API_POST_REPLANISHENT
- } from '@/api/V2/statisticalReport'
- //采购入库报表
- export const getpurchreceipt = appRx.get(API_GET_PURCHRECEIPT, errorCatcher, errorHandle, filter)
- //采购合同
- export const getcontractno = appRx.get(API_GET_CONTRACTNO, errorCatcher, errorHandle, filter)
- //采购入库修改
- export const postamend = appRx.post(API_POST_AMEND_PURCHRECEIPT, errorCatcher, errorHandle, filter)
- //采购入库补货结转
- export const postreplanishent = appRx.post(API_POST_REPLANISHENT, errorCatcher, errorHandle, filter)
|