添加更新体检导检单打印状态接口
This commit is contained in:
@@ -22,6 +22,8 @@ import type {
|
||||
DaojiandanGetResponse,
|
||||
InputDaojiandanSignSubmit,
|
||||
DaojiandanSignSubmitResponse,
|
||||
InputDaojiandanPrintStatus,
|
||||
DaojiandanPrintStatusResponse,
|
||||
InputCustomerDetailEdit,
|
||||
CustomerDetailEditResponse,
|
||||
InputPhysicalExamAddItem,
|
||||
@@ -274,6 +276,18 @@ export const submitDaojiandanSign = (
|
||||
).then(res => res.data);
|
||||
};
|
||||
|
||||
/**
|
||||
* 体检导检单打印状态修改
|
||||
*/
|
||||
export const editDaojiandanPrintStatus = (
|
||||
data: InputDaojiandanPrintStatus
|
||||
): Promise<DaojiandanPrintStatusResponse> => {
|
||||
return request.post<DaojiandanPrintStatusResponse>(
|
||||
`${MEDICAL_EXAM_BASE_PATH}/print-status-edit`,
|
||||
data
|
||||
).then(res => res.data);
|
||||
};
|
||||
|
||||
/**
|
||||
* 体检用餐登记列表
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user