1、调整凭证
2、调整运单
This commit is contained in:
@@ -16,6 +16,10 @@ export const getFormalOptions = (current, size, params) =>
|
||||
export const save = data => request({ url: `${baseUrl}/save`, method: 'post', data });
|
||||
export const remove = id => request({ url: `${baseUrl}/remove`, method: 'post', params: { id } });
|
||||
export const match = id => request({ url: `${baseUrl}/match`, method: 'post', params: { id } });
|
||||
export const matchPreview = data =>
|
||||
request({ url: `${baseUrl}/match-preview`, method: 'post', data });
|
||||
export const manualMatch = data =>
|
||||
request({ url: `${baseUrl}/manual-match`, method: 'post', data });
|
||||
export const unmatch = internalId =>
|
||||
request({ url: `${baseUrl}/unmatch`, method: 'post', params: { internalId } });
|
||||
export const adjust = data => request({ url: `${baseUrl}/adjust`, method: 'post', data });
|
||||
@@ -23,6 +27,8 @@ export const updateByMatch = id =>
|
||||
request({ url: `${baseUrl}/update-by-match`, method: 'post', params: { id } });
|
||||
export const complete = id =>
|
||||
request({ url: `${baseUrl}/complete`, method: 'post', params: { id } });
|
||||
export const completeWithData = data =>
|
||||
request({ url: `${baseUrl}/complete-with-data`, method: 'post', data });
|
||||
export const template = mode =>
|
||||
request({ url: `${baseUrl}/template`, method: 'get', params: { mode }, responseType: 'blob' });
|
||||
|
||||
|
||||
Reference in New Issue
Block a user