UNPKG

wistroni40-bnft

Version:

Benefit platform parameters publish job template

47 lines (43 loc) 1.44 kB
/** * 專案名稱: @wistroni40/bnft * 部門代號: ML8100 * 檔案說明: 效益DL及IDL人員工時服務 * @CREATE Mon Feb 08 2021 上午8:36:35 * @author Steve Y Lin * @contact Steve_Y_Lin@wistron.com #1342 * ----------------------------------------------------------------------------- * @NOTE */ import { Observable } from 'rxjs'; import { HttpAdapter, HttpResponse } from '../../../../http'; import { ApiConfig } from '../../api.config'; import { BenefitLatestLaborCostResponse } from '../../models'; import { BenefitLaborCost } from '../core'; /** * 效益DL及IDL人員工時服務 */ export class BenefitLaborCostService implements BenefitLaborCost { /** * @param http HTTP請求轉接器 */ constructor(protected http: HttpAdapter) {} /** * 取得最新的IDL或ID人員工時 * * @method public * @param site Site * @param plantCode 廠別代碼 * @param laborType 人員類別(IDL or DL) * @return 回傳最新的IDL或ID人員工時 */ public getLatestCost( site: string, plantCode: string, laborType: 'idl' | 'dl' ): Observable<HttpResponse<BenefitLatestLaborCostResponse>> { site = site.toUpperCase(); plantCode = plantCode.toUpperCase(); const url = `${ApiConfig.path}/api/BenefitLaborCosts/latestCost?site=${site}&plant=${plantCode}&type=${laborType}`; return this.http.get(url); } }