feat: export services
This commit is contained in:
@@ -138,6 +138,17 @@ export class ServiceService {
|
||||
},
|
||||
});
|
||||
}
|
||||
/**
|
||||
* Get Price List
|
||||
* @returns any Successful Response
|
||||
* @throws ApiError
|
||||
*/
|
||||
public static getPriceList(): CancelablePromise<any> {
|
||||
return __request(OpenAPI, {
|
||||
method: 'GET',
|
||||
url: '/service/price-list',
|
||||
});
|
||||
}
|
||||
/**
|
||||
* Get All Categories
|
||||
* @returns ServiceGetAllCategoriesResponse Successful Response
|
||||
@@ -362,4 +373,26 @@ export class ServiceService {
|
||||
},
|
||||
});
|
||||
}
|
||||
/**
|
||||
* Export List Pdf
|
||||
* @returns any Successful Response
|
||||
* @throws ApiError
|
||||
*/
|
||||
public static exportListPdf(): CancelablePromise<any> {
|
||||
return __request(OpenAPI, {
|
||||
method: 'GET',
|
||||
url: '/service/export-list/pdf',
|
||||
});
|
||||
}
|
||||
/**
|
||||
* Export List Excel
|
||||
* @returns any Successful Response
|
||||
* @throws ApiError
|
||||
*/
|
||||
public static exportListExcel(): CancelablePromise<any> {
|
||||
return __request(OpenAPI, {
|
||||
method: 'GET',
|
||||
url: '/service/export-list/excel',
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user