index.js 745 B

12345678910111213141516
  1. import { errorCatcher, errorHandle, filter } from 'base-core-lib'
  2. import { appRx } from '../defalutConfig/indexRx'
  3. import {
  4. API_GET_PURCHRECEIPT,
  5. API_GET_CONTRACTNO,
  6. API_POST_AMEND_PURCHRECEIPT,
  7. API_POST_REPLANISHENT
  8. } from '@/api/V2/statisticalReport'
  9. //采购入库报表
  10. export const getpurchreceipt = appRx.get(API_GET_PURCHRECEIPT, errorCatcher, errorHandle, filter)
  11. //采购合同
  12. export const getcontractno = appRx.get(API_GET_CONTRACTNO, errorCatcher, errorHandle, filter)
  13. //采购入库修改
  14. export const postamend = appRx.post(API_POST_AMEND_PURCHRECEIPT, errorCatcher, errorHandle, filter)
  15. //采购入库补货结转
  16. export const postreplanishent = appRx.post(API_POST_REPLANISHENT, errorCatcher, errorHandle, filter)