You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
787 B

  1. import { createAPI } from '@/utils/httpRequest.js'
  2. export const searchInspectionRequestHeaderList = (data) => createAPI(`/inspection/searchInspectionRequestHeaderList`, 'post', data)
  3. export const getInspectionRequestDetailList = (data) => createAPI(`/inspection/getInspectionRequestDetailList`, 'post', data)
  4. export const getInspectionRequestDetailSubList = (data) => createAPI(`/inspection/getInspectionRequestDetailSubList`, 'post', data)
  5. export const getInspectionResultList = (data) => createAPI(`/inspection/getInspectionResultList`, 'post', data)
  6. // 查询可申请验货PO
  7. export const queryPoPage = (data) => createAPI(`/inspection/queryPoPage`, 'post', data)
  8. // 保存验货申请
  9. export const saveInspectionRequest = (data) => createAPI(`/inspection/save`, 'post', data)