import { Injectable } from '@angular/core'; import { HttpClient, HttpParams } from '@angular/common/http'; import { HttpHeaders } from '@angular/common/http'; import { Observable } from 'rxjs'; import { catchError, tap } from 'rxjs/operators'; import { HttpErrorHandler, HandleError } from '../../../src/auth/http-error-handler.service'; import { AuthService } from '../../../src/auth/auth.service'; import { AppConfig } from '../../../src/AppConfig/AppConfig'; import { BaseService } from '../../../src/baseclass/BaseService'; import { SyncResponseErrorHandleService } from '../../../src/route/SyncResponseErrorHandle'; import { ACTIONCLASS, ALLOWDEDUCTTYPECLASS, APPRAISALSTATUSCLASS, AWARDCLASS, BANKMASTERCLASS, BUILDCATECLASS, CALCULATIONTYPECLASS, CCCHECKROLLTYPECLASS, CCCRSYMBOLCLASS, CCRATETYPECLASS, CCSYSTEMSETTINGSCLASS, CETYPECLASS, CHILDSTATUSCLASS, CITIZENSHIPCLASS, CITYCLASS, COLLECTIONSYSCLASS, COLLECTIONTYPECLASS, COMPANYCLASS, COMPANYGROUPCLASS, CORCODESCLASS, COUNTRYCLASS, CRACTIVITYCODECLASS, CRHARVESTERCODECLASS, CRITICALLEVELCLASS, CRJOBTYPECLASS, CRNMF5CLASS, CROPCLASS, CROPAGECLASS, CRSMASTERRATECLASS, CRSYMBOLCLASS, CRSYMBOLCATEGORYCLASS, CRSYMBOLTMPLCLASS, CRSYMBOLTYPECLASS, CURRENCYCLASS, CUSTPOSTINGGROUPCLASS, DAILYRATESETTINGCLASS, DDMCTRLCLASS, DESIGNATIONCLASS, DESIGNATIONCATEGORYCLASS, DIALECTLANGUAGECLASS, DIVISIONCLASS, EAFORMSETTINGCLASS, EDUCATIONLEVELCLASS, EISTABLECLASS, EISVERMASTERCLASS, EMPLOYEDCODECLASS, EMPLOYEETYPECLASS, EPFFORMULACONFIGCLASS, EPFSETTINGCLASS, EPFSTATUTORYCLASS, EPFVERMASTERCLASS, ETHRELCLASS, EXCEPTIONURLCLASS, EXPCLASSCLASS, EXPDESCCLASS, EXPGROUPCLASS, EXTENDEDOPCENTRECLASS, FACTDCLWTRECORDTYPECLASS, FIELDSTATUSCLASS, FIELDTYPECLASS, GANGNOMASTERCLASS, GENDERCLASS, GMCLASS, GRADECLASS, HANDHELDACTVCODECLASS, HARVESTSYSCLASS, HARVFREQCLASS, HHPARAMCLASS, HOLIDAYCLASS, HOLIDAYTYPECLASS, IDEASENTITYSTATUSCLASS, IDEASHANDHELDMENUCLASS, IDEASVIRTUALFIELDCLASS, INCENTIVEMASTERCLASS, INCENTIVERATECLASS, INDENTSUBTYPECLASS, INPDESCCLASS, INPICALLOCCLASS, INVALIDDESCCLASS, INVTPOSTINGGROUPCLASS, JOBCODETYPECLASS, JOBSTATUSCLASS, LABOURCATEGORYCLASS, LABOURCODECLASS, LANGUAGECLASS, LATEXPAYFORMULACLASS, LENTLABOUROCCLASS, LEVYTRANSACTIONTYPECLASS, LOCATIONCLASS, MARITALSTATUSCLASS, MASTERRATECLASS, MAXDAYSALLOWCLASS, MGMTDIVCLASS, NAMEMASTERTYPECLASS, NETITEMFORMULACLASS, NRICCOLORCLASS, OCCATEGORYCLASS, OCPCTRLCLASS, OCPLIFECYCLECLASS, OILPALMCLONETYPECLASS, OPCENTRECLASS, OPETYPECLASS, OPGRADTYPECLASS, OPPRICEZONECLASS, OPPRICEZONEVERMASTERCLASS, PANELTYPECLASS, PAYMENTMETHODCLASS, PAYMENTTERMCLASS, PAYSLIPSETTINGCLASS, PCBSETTINGSCLASS, PCBTABLECLASS, PCBVERMASTERCLASS, PCEBSHEETIDCLASS, PKIOCLASS, PPHCLASS, PPNCLASS, PROFICIENCYCLASS, PRVSTANDCLASS, QUARTERSSTATUSCLASS, RACECLASS, RAINSTATIONCLASS, RATETYPECLASS, RECEIVENOTECLASS, RECORDSTATUSCLASS, RECOVERYTASKSIZECLASS, REGIONCLASS, REGIONGROUPCLASS, RELATIONSHIPCLASS, RELIGIONCLASS, REPTMPLCLASS, RPBPERCCLASS, RPBTALLPALMCLASS, RPBYOUNGPALMCLASS, RUBBERTRANSACTIONTYPECLASS, RUBFIELDMASTERSETTINGCLASS, RUBPRICEZONECLASS, RUBPRICEZONEVERMASTERCLASS, SCANNERREGISTRATIONCLASS, SCRAPPAYFORMULACLASS, SOCSOTABLECLASS, SOCSOVERMASTERCLASS, SPIRALCUTCLASS, SPOUSESTATUSCLASS, STATECLASS, STDARACCCLASS, STDCLONECLASS, STDEXPCDCLASS, STDGLCDCLASS, STDINTFBCHNOCLASS, STDITEMCODECLASS, STDITEMCODECATEGORYCLASS, STDITEMCODEMASTERCLASS, STDVLOGCLASS, STDVMANUFCLASS, STDVMODELCLASS, STDVSTATUSCLASS, STDVSUBGROUPCLASS, STDVTYPECLASS, STORAGELOCCLASS, SUBCATEGORYCLASS, SUPPLIERADDCLASS, SUPPLIERSHIPTOCLASS, SUPPOSTINGGROUPCLASS, TADEVICECLASS, TALLPALMPERCENTAGECLASS, TASHIFTTABLECLASS, TAXRATECLASS, TAXRATEDETAILSCLASS, TITLECLASS, TRANSACTIONTYPECLASS, UOMCLASS, VACCGROUPCLASS, VLOGALLOWEXPDCLASS, VLPSCALECLASS, VLPSETTINGCLASS, WEIGTHINGMETHODCLASS, WORKERFIELDFORMULACLASS, WORKERFIELDFORMULAADDTOCLASS, WORKERNONELIGIBLEITEMCODECLASS, WORKSTATUSCLASS, YIELDBRACKETCLASS, YPHRANGECLASS } from '../../interface/DynamicObject'; @Injectable() export class DynamicObjectService extends BaseService { public handleError: HandleError; constructor( public syncResponseErrorHandleService: SyncResponseErrorHandleService, public authService: AuthService, public http: HttpClient, public httpErrorHandler: HttpErrorHandler) { super(authService, httpErrorHandler, http, AppConfig.settings.apiserviceurl, 'DynamicObject', '', syncResponseErrorHandleService); this.handleError = httpErrorHandler.createHandleError('DynamicObjectService'); } apiserviceurl = AppConfig.settings.apiserviceurl; apiUrl = 'api/Dynamic/'; GetACTION(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetACTIONlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetACTIONList', [])) ); } GetACTIONByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetACTIONByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetACTIONByMDCCID', [])) ); } GetALLOWDEDUCTTYPE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetALLOWDEDUCTTYPElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetALLOWDEDUCTTYPEList', [])) ); } GetALLOWDEDUCTTYPEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetALLOWDEDUCTTYPEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetALLOWDEDUCTTYPEByMDCCID', [])) ); } GetAPPRAISALSTATUS(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetAPPRAISALSTATUSlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetAPPRAISALSTATUSList', [])) ); } GetAPPRAISALSTATUSByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetAPPRAISALSTATUSByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetAPPRAISALSTATUSByMDCCID', [])) ); } GetAWARD(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetAWARDlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetAWARDList', [])) ); } GetAWARDByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetAWARDByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetAWARDByMDCCID', [])) ); } GetBANKMASTER(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetBANKMASTERlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetBANKMASTERList', [])) ); } GetBANKMASTERByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetBANKMASTERByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetBANKMASTERByMDCCID', [])) ); } GetBUILDCATE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetBUILDCATElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetBUILDCATEList', [])) ); } GetBUILDCATEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetBUILDCATEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetBUILDCATEByMDCCID', [])) ); } GetCALCULATIONTYPE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCALCULATIONTYPElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCALCULATIONTYPEList', [])) ); } GetCALCULATIONTYPEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCALCULATIONTYPEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCALCULATIONTYPEByMDCCID', [])) ); } GetCCCHECKROLLTYPE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCCCHECKROLLTYPElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCCCHECKROLLTYPEList', [])) ); } GetCCCHECKROLLTYPEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCCCHECKROLLTYPEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCCCHECKROLLTYPEByMDCCID', [])) ); } GetCCCRSYMBOL(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCCCRSYMBOLlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCCCRSYMBOLList', [])) ); } GetCCCRSYMBOLByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCCCRSYMBOLByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCCCRSYMBOLByMDCCID', [])) ); } GetCCRATETYPE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCCRATETYPElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCCRATETYPEList', [])) ); } GetCCRATETYPEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCCRATETYPEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCCRATETYPEByMDCCID', [])) ); } GetCCSYSTEMSETTINGS(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCCSYSTEMSETTINGSlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCCSYSTEMSETTINGSList', [])) ); } GetCCSYSTEMSETTINGSByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCCSYSTEMSETTINGSByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCCSYSTEMSETTINGSByMDCCID', [])) ); } GetCETYPE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCETYPElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCETYPEList', [])) ); } GetCETYPEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCETYPEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCETYPEByMDCCID', [])) ); } GetCHILDSTATUS(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCHILDSTATUSlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCHILDSTATUSList', [])) ); } GetCHILDSTATUSByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCHILDSTATUSByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCHILDSTATUSByMDCCID', [])) ); } GetCITIZENSHIP(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCITIZENSHIPlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCITIZENSHIPList', [])) ); } GetCITIZENSHIPByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCITIZENSHIPByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCITIZENSHIPByMDCCID', [])) ); } GetCITY(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCITYlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCITYList', [])) ); } GetCITYByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCITYByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCITYByMDCCID', [])) ); } GetCOLLECTIONSYS(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCOLLECTIONSYSlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCOLLECTIONSYSList', [])) ); } GetCOLLECTIONSYSByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCOLLECTIONSYSByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCOLLECTIONSYSByMDCCID', [])) ); } GetCOLLECTIONTYPE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCOLLECTIONTYPElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCOLLECTIONTYPEList', [])) ); } GetCOLLECTIONTYPEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCOLLECTIONTYPEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCOLLECTIONTYPEByMDCCID', [])) ); } GetCOMPANY(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCOMPANYlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCOMPANYList', [])) ); } GetCOMPANYByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCOMPANYByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCOMPANYByMDCCID', [])) ); } GetCOMPANYGROUP(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCOMPANYGROUPlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCOMPANYGROUPList', [])) ); } GetCOMPANYGROUPByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCOMPANYGROUPByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCOMPANYGROUPByMDCCID', [])) ); } GetCORCODES(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCORCODESlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCORCODESList', [])) ); } GetCORCODESByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCORCODESByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCORCODESByMDCCID', [])) ); } GetCOUNTRY(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCOUNTRYlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCOUNTRYList', [])) ); } GetCOUNTRYByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCOUNTRYByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCOUNTRYByMDCCID', [])) ); } GetCRACTIVITYCODE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCRACTIVITYCODElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCRACTIVITYCODEList', [])) ); } GetCRACTIVITYCODEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCRACTIVITYCODEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCRACTIVITYCODEByMDCCID', [])) ); } GetCRHARVESTERCODE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCRHARVESTERCODElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCRHARVESTERCODEList', [])) ); } GetCRHARVESTERCODEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCRHARVESTERCODEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCRHARVESTERCODEByMDCCID', [])) ); } GetCRITICALLEVEL(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCRITICALLEVELlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCRITICALLEVELList', [])) ); } GetCRITICALLEVELByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCRITICALLEVELByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCRITICALLEVELByMDCCID', [])) ); } GetCRJOBTYPE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCRJOBTYPElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCRJOBTYPEList', [])) ); } GetCRJOBTYPEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCRJOBTYPEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCRJOBTYPEByMDCCID', [])) ); } GetCRNMF5(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCRNMF5list', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCRNMF5List', [])) ); } GetCRNMF5ByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCRNMF5ByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCRNMF5ByMDCCID', [])) ); } GetCROP(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCROPlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCROPList', [])) ); } GetCROPByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCROPByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCROPByMDCCID', [])) ); } GetCROPAGE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCROPAGElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCROPAGEList', [])) ); } GetCROPAGEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCROPAGEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCROPAGEByMDCCID', [])) ); } GetCRSMASTERRATE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCRSMASTERRATElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCRSMASTERRATEList', [])) ); } GetCRSMASTERRATEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCRSMASTERRATEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCRSMASTERRATEByMDCCID', [])) ); } GetCRSYMBOL(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCRSYMBOLlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCRSYMBOLList', [])) ); } GetCRSYMBOLByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCRSYMBOLByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCRSYMBOLByMDCCID', [])) ); } GetCRSYMBOLCATEGORY(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCRSYMBOLCATEGORYlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCRSYMBOLCATEGORYList', [])) ); } GetCRSYMBOLCATEGORYByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCRSYMBOLCATEGORYByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCRSYMBOLCATEGORYByMDCCID', [])) ); } GetCRSYMBOLTMPL(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCRSYMBOLTMPLlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCRSYMBOLTMPLList', [])) ); } GetCRSYMBOLTMPLByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCRSYMBOLTMPLByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCRSYMBOLTMPLByMDCCID', [])) ); } GetCRSYMBOLTYPE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCRSYMBOLTYPElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCRSYMBOLTYPEList', [])) ); } GetCRSYMBOLTYPEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCRSYMBOLTYPEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCRSYMBOLTYPEByMDCCID', [])) ); } GetCURRENCY(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCURRENCYlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCURRENCYList', [])) ); } GetCURRENCYByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCURRENCYByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCURRENCYByMDCCID', [])) ); } GetCUSTPOSTINGGROUP(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCUSTPOSTINGGROUPlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCUSTPOSTINGGROUPList', [])) ); } GetCUSTPOSTINGGROUPByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetCUSTPOSTINGGROUPByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetCUSTPOSTINGGROUPByMDCCID', [])) ); } GetDAILYRATESETTING(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetDAILYRATESETTINGlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetDAILYRATESETTINGList', [])) ); } GetDAILYRATESETTINGByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetDAILYRATESETTINGByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetDAILYRATESETTINGByMDCCID', [])) ); } GetDDMCTRL(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetDDMCTRLlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetDDMCTRLList', [])) ); } GetDDMCTRLByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetDDMCTRLByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetDDMCTRLByMDCCID', [])) ); } GetDESIGNATION(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetDESIGNATIONlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetDESIGNATIONList', [])) ); } GetDESIGNATIONByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetDESIGNATIONByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetDESIGNATIONByMDCCID', [])) ); } GetDESIGNATIONCATEGORY(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetDESIGNATIONCATEGORYlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetDESIGNATIONCATEGORYList', [])) ); } GetDESIGNATIONCATEGORYByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetDESIGNATIONCATEGORYByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetDESIGNATIONCATEGORYByMDCCID', [])) ); } GetDIALECTLANGUAGE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetDIALECTLANGUAGElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetDIALECTLANGUAGEList', [])) ); } GetDIALECTLANGUAGEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetDIALECTLANGUAGEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetDIALECTLANGUAGEByMDCCID', [])) ); } GetDIVISION(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetDIVISIONlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetDIVISIONList', [])) ); } GetDIVISIONByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetDIVISIONByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetDIVISIONByMDCCID', [])) ); } GetEAFORMSETTING(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEAFORMSETTINGlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEAFORMSETTINGList', [])) ); } GetEAFORMSETTINGByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEAFORMSETTINGByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEAFORMSETTINGByMDCCID', [])) ); } GetEDUCATIONLEVEL(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEDUCATIONLEVELlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEDUCATIONLEVELList', [])) ); } GetEDUCATIONLEVELByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEDUCATIONLEVELByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEDUCATIONLEVELByMDCCID', [])) ); } GetEISTABLE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEISTABLElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEISTABLEList', [])) ); } GetEISTABLEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEISTABLEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEISTABLEByMDCCID', [])) ); } GetEISVERMASTER(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEISVERMASTERlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEISVERMASTERList', [])) ); } GetEISVERMASTERByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEISVERMASTERByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEISVERMASTERByMDCCID', [])) ); } GetEMPLOYEDCODE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEMPLOYEDCODElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEMPLOYEDCODEList', [])) ); } GetEMPLOYEDCODEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEMPLOYEDCODEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEMPLOYEDCODEByMDCCID', [])) ); } GetEMPLOYEETYPE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEMPLOYEETYPElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEMPLOYEETYPEList', [])) ); } GetEMPLOYEETYPEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEMPLOYEETYPEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEMPLOYEETYPEByMDCCID', [])) ); } GetEPFFORMULACONFIG(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEPFFORMULACONFIGlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEPFFORMULACONFIGList', [])) ); } GetEPFFORMULACONFIGByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEPFFORMULACONFIGByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEPFFORMULACONFIGByMDCCID', [])) ); } GetEPFSETTING(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEPFSETTINGlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEPFSETTINGList', [])) ); } GetEPFSETTINGByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEPFSETTINGByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEPFSETTINGByMDCCID', [])) ); } GetEPFSTATUTORY(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEPFSTATUTORYlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEPFSTATUTORYList', [])) ); } GetEPFSTATUTORYByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEPFSTATUTORYByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEPFSTATUTORYByMDCCID', [])) ); } GetEPFVERMASTER(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEPFVERMASTERlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEPFVERMASTERList', [])) ); } GetEPFVERMASTERByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEPFVERMASTERByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEPFVERMASTERByMDCCID', [])) ); } GetETHREL(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetETHRELlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetETHRELList', [])) ); } GetETHRELByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetETHRELByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetETHRELByMDCCID', [])) ); } GetEXCEPTIONURL(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEXCEPTIONURLlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEXCEPTIONURLList', [])) ); } GetEXCEPTIONURLByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEXCEPTIONURLByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEXCEPTIONURLByMDCCID', [])) ); } GetEXPCLASS(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEXPCLASSlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEXPCLASSList', [])) ); } GetEXPCLASSByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEXPCLASSByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEXPCLASSByMDCCID', [])) ); } GetEXPDESC(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEXPDESClist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEXPDESCList', [])) ); } GetEXPDESCByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEXPDESCByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEXPDESCByMDCCID', [])) ); } GetEXPGROUP(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEXPGROUPlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEXPGROUPList', [])) ); } GetEXPGROUPByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEXPGROUPByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEXPGROUPByMDCCID', [])) ); } GetEXTENDEDOPCENTRE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEXTENDEDOPCENTRElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEXTENDEDOPCENTREList', [])) ); } GetEXTENDEDOPCENTREByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetEXTENDEDOPCENTREByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetEXTENDEDOPCENTREByMDCCID', [])) ); } GetFACTDCLWTRECORDTYPE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetFACTDCLWTRECORDTYPElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetFACTDCLWTRECORDTYPEList', [])) ); } GetFACTDCLWTRECORDTYPEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetFACTDCLWTRECORDTYPEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetFACTDCLWTRECORDTYPEByMDCCID', [])) ); } GetFIELDSTATUS(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetFIELDSTATUSlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetFIELDSTATUSList', [])) ); } GetFIELDSTATUSByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetFIELDSTATUSByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetFIELDSTATUSByMDCCID', [])) ); } GetFIELDTYPE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetFIELDTYPElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetFIELDTYPEList', [])) ); } GetFIELDTYPEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetFIELDTYPEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetFIELDTYPEByMDCCID', [])) ); } GetGANGNOMASTER(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetGANGNOMASTERlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetGANGNOMASTERList', [])) ); } GetGANGNOMASTERByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetGANGNOMASTERByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetGANGNOMASTERByMDCCID', [])) ); } GetGENDER(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetGENDERlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetGENDERList', [])) ); } GetGENDERByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetGENDERByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetGENDERByMDCCID', [])) ); } GetGM(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetGMlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetGMList', [])) ); } GetGMByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetGMByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetGMByMDCCID', [])) ); } GetGRADE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetGRADElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetGRADEList', [])) ); } GetGRADEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetGRADEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetGRADEByMDCCID', [])) ); } GetHANDHELDACTVCODE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetHANDHELDACTVCODElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetHANDHELDACTVCODEList', [])) ); } GetHANDHELDACTVCODEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetHANDHELDACTVCODEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetHANDHELDACTVCODEByMDCCID', [])) ); } GetHARVESTSYS(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetHARVESTSYSlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetHARVESTSYSList', [])) ); } GetHARVESTSYSByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetHARVESTSYSByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetHARVESTSYSByMDCCID', [])) ); } GetHARVFREQ(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetHARVFREQlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetHARVFREQList', [])) ); } GetHARVFREQByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetHARVFREQByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetHARVFREQByMDCCID', [])) ); } GetHHPARAM(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetHHPARAMlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetHHPARAMList', [])) ); } GetHHPARAMByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetHHPARAMByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetHHPARAMByMDCCID', [])) ); } GetHOLIDAY(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetHOLIDAYlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetHOLIDAYList', [])) ); } GetHOLIDAYByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetHOLIDAYByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetHOLIDAYByMDCCID', [])) ); } GetHOLIDAYTYPE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetHOLIDAYTYPElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetHOLIDAYTYPEList', [])) ); } GetHOLIDAYTYPEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetHOLIDAYTYPEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetHOLIDAYTYPEByMDCCID', [])) ); } GetIDEASENTITYSTATUS(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetIDEASENTITYSTATUSlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetIDEASENTITYSTATUSList', [])) ); } GetIDEASENTITYSTATUSByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetIDEASENTITYSTATUSByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetIDEASENTITYSTATUSByMDCCID', [])) ); } GetIDEASHANDHELDMENU(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetIDEASHANDHELDMENUlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetIDEASHANDHELDMENUList', [])) ); } GetIDEASHANDHELDMENUByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetIDEASHANDHELDMENUByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetIDEASHANDHELDMENUByMDCCID', [])) ); } GetIDEASVIRTUALFIELD(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetIDEASVIRTUALFIELDlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetIDEASVIRTUALFIELDList', [])) ); } GetIDEASVIRTUALFIELDByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetIDEASVIRTUALFIELDByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetIDEASVIRTUALFIELDByMDCCID', [])) ); } GetINCENTIVEMASTER(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetINCENTIVEMASTERlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetINCENTIVEMASTERList', [])) ); } GetINCENTIVEMASTERByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetINCENTIVEMASTERByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetINCENTIVEMASTERByMDCCID', [])) ); } GetINCENTIVERATE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetINCENTIVERATElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetINCENTIVERATEList', [])) ); } GetINCENTIVERATEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetINCENTIVERATEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetINCENTIVERATEByMDCCID', [])) ); } GetINDENTSUBTYPE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetINDENTSUBTYPElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetINDENTSUBTYPEList', [])) ); } GetINDENTSUBTYPEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetINDENTSUBTYPEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetINDENTSUBTYPEByMDCCID', [])) ); } GetINPDESC(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetINPDESClist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetINPDESCList', [])) ); } GetINPDESCByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetINPDESCByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetINPDESCByMDCCID', [])) ); } GetINPICALLOC(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetINPICALLOClist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetINPICALLOCList', [])) ); } GetINPICALLOCByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetINPICALLOCByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetINPICALLOCByMDCCID', [])) ); } GetINVALIDDESC(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetINVALIDDESClist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetINVALIDDESCList', [])) ); } GetINVALIDDESCByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetINVALIDDESCByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetINVALIDDESCByMDCCID', [])) ); } GetINVTPOSTINGGROUP(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetINVTPOSTINGGROUPlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetINVTPOSTINGGROUPList', [])) ); } GetINVTPOSTINGGROUPByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetINVTPOSTINGGROUPByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetINVTPOSTINGGROUPByMDCCID', [])) ); } GetJOBCODETYPE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetJOBCODETYPElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetJOBCODETYPEList', [])) ); } GetJOBCODETYPEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetJOBCODETYPEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetJOBCODETYPEByMDCCID', [])) ); } GetJOBSTATUS(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetJOBSTATUSlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetJOBSTATUSList', [])) ); } GetJOBSTATUSByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetJOBSTATUSByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetJOBSTATUSByMDCCID', [])) ); } GetLABOURCATEGORY(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetLABOURCATEGORYlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetLABOURCATEGORYList', [])) ); } GetLABOURCATEGORYByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetLABOURCATEGORYByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetLABOURCATEGORYByMDCCID', [])) ); } GetLABOURCODE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetLABOURCODElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetLABOURCODEList', [])) ); } GetLABOURCODEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetLABOURCODEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetLABOURCODEByMDCCID', [])) ); } GetLANGUAGE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetLANGUAGElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetLANGUAGEList', [])) ); } GetLANGUAGEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetLANGUAGEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetLANGUAGEByMDCCID', [])) ); } GetLATEXPAYFORMULA(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetLATEXPAYFORMULAlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetLATEXPAYFORMULAList', [])) ); } GetLATEXPAYFORMULAByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetLATEXPAYFORMULAByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetLATEXPAYFORMULAByMDCCID', [])) ); } GetLENTLABOUROC(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetLENTLABOUROClist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetLENTLABOUROCList', [])) ); } GetLENTLABOUROCByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetLENTLABOUROCByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetLENTLABOUROCByMDCCID', [])) ); } GetLEVYTRANSACTIONTYPE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetLEVYTRANSACTIONTYPElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetLEVYTRANSACTIONTYPEList', [])) ); } GetLEVYTRANSACTIONTYPEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetLEVYTRANSACTIONTYPEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetLEVYTRANSACTIONTYPEByMDCCID', [])) ); } GetLOCATION(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetLOCATIONlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetLOCATIONList', [])) ); } GetLOCATIONByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetLOCATIONByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetLOCATIONByMDCCID', [])) ); } GetMARITALSTATUS(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetMARITALSTATUSlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetMARITALSTATUSList', [])) ); } GetMARITALSTATUSByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetMARITALSTATUSByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetMARITALSTATUSByMDCCID', [])) ); } GetMASTERRATE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetMASTERRATElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetMASTERRATEList', [])) ); } GetMASTERRATEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetMASTERRATEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetMASTERRATEByMDCCID', [])) ); } GetMAXDAYSALLOW(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetMAXDAYSALLOWlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetMAXDAYSALLOWList', [])) ); } GetMAXDAYSALLOWByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetMAXDAYSALLOWByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetMAXDAYSALLOWByMDCCID', [])) ); } GetMGMTDIV(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetMGMTDIVlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetMGMTDIVList', [])) ); } GetMGMTDIVByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetMGMTDIVByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetMGMTDIVByMDCCID', [])) ); } GetNAMEMASTERTYPE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetNAMEMASTERTYPElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetNAMEMASTERTYPEList', [])) ); } GetNAMEMASTERTYPEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetNAMEMASTERTYPEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetNAMEMASTERTYPEByMDCCID', [])) ); } GetNETITEMFORMULA(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetNETITEMFORMULAlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetNETITEMFORMULAList', [])) ); } GetNETITEMFORMULAByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetNETITEMFORMULAByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetNETITEMFORMULAByMDCCID', [])) ); } GetNRICCOLOR(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetNRICCOLORlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetNRICCOLORList', [])) ); } GetNRICCOLORByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetNRICCOLORByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetNRICCOLORByMDCCID', [])) ); } GetOCCATEGORY(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetOCCATEGORYlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetOCCATEGORYList', [])) ); } GetOCCATEGORYByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetOCCATEGORYByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetOCCATEGORYByMDCCID', [])) ); } GetOCPCTRL(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetOCPCTRLlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetOCPCTRLList', [])) ); } GetOCPCTRLByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetOCPCTRLByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetOCPCTRLByMDCCID', [])) ); } GetOCPLIFECYCLE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetOCPLIFECYCLElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetOCPLIFECYCLEList', [])) ); } GetOCPLIFECYCLEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetOCPLIFECYCLEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetOCPLIFECYCLEByMDCCID', [])) ); } GetOILPALMCLONETYPE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetOILPALMCLONETYPElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetOILPALMCLONETYPEList', [])) ); } GetOILPALMCLONETYPEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetOILPALMCLONETYPEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetOILPALMCLONETYPEByMDCCID', [])) ); } GetOPCENTRE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetOPCENTRElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetOPCENTREList', [])) ); } GetOPCENTREByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetOPCENTREByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetOPCENTREByMDCCID', [])) ); } GetOPETYPE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetOPETYPElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetOPETYPEList', [])) ); } GetOPETYPEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetOPETYPEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetOPETYPEByMDCCID', [])) ); } GetOPGRADTYPE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetOPGRADTYPElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetOPGRADTYPEList', [])) ); } GetOPGRADTYPEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetOPGRADTYPEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetOPGRADTYPEByMDCCID', [])) ); } GetOPPRICEZONE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetOPPRICEZONElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetOPPRICEZONEList', [])) ); } GetOPPRICEZONEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetOPPRICEZONEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetOPPRICEZONEByMDCCID', [])) ); } GetOPPRICEZONEVERMASTER(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetOPPRICEZONEVERMASTERlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetOPPRICEZONEVERMASTERList', [])) ); } GetOPPRICEZONEVERMASTERByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetOPPRICEZONEVERMASTERByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetOPPRICEZONEVERMASTERByMDCCID', [])) ); } GetPANELTYPE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetPANELTYPElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetPANELTYPEList', [])) ); } GetPANELTYPEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetPANELTYPEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetPANELTYPEByMDCCID', [])) ); } GetPAYMENTMETHOD(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetPAYMENTMETHODlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetPAYMENTMETHODList', [])) ); } GetPAYMENTMETHODByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetPAYMENTMETHODByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetPAYMENTMETHODByMDCCID', [])) ); } GetPAYMENTTERM(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetPAYMENTTERMlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetPAYMENTTERMList', [])) ); } GetPAYMENTTERMByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetPAYMENTTERMByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetPAYMENTTERMByMDCCID', [])) ); } GetPAYSLIPSETTING(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetPAYSLIPSETTINGlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetPAYSLIPSETTINGList', [])) ); } GetPAYSLIPSETTINGByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetPAYSLIPSETTINGByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetPAYSLIPSETTINGByMDCCID', [])) ); } GetPCBSETTINGS(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetPCBSETTINGSlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetPCBSETTINGSList', [])) ); } GetPCBSETTINGSByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetPCBSETTINGSByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetPCBSETTINGSByMDCCID', [])) ); } GetPCBTABLE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetPCBTABLElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetPCBTABLEList', [])) ); } GetPCBTABLEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetPCBTABLEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetPCBTABLEByMDCCID', [])) ); } GetPCBVERMASTER(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetPCBVERMASTERlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetPCBVERMASTERList', [])) ); } GetPCBVERMASTERByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetPCBVERMASTERByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetPCBVERMASTERByMDCCID', [])) ); } GetPCEBSHEETID(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetPCEBSHEETIDlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetPCEBSHEETIDList', [])) ); } GetPCEBSHEETIDByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetPCEBSHEETIDByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetPCEBSHEETIDByMDCCID', [])) ); } GetPKIO(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetPKIOlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetPKIOList', [])) ); } GetPKIOByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetPKIOByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetPKIOByMDCCID', [])) ); } GetPPH(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetPPHlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetPPHList', [])) ); } GetPPHByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetPPHByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetPPHByMDCCID', [])) ); } GetPPN(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetPPNlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetPPNList', [])) ); } GetPPNByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetPPNByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetPPNByMDCCID', [])) ); } GetPROFICIENCY(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetPROFICIENCYlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetPROFICIENCYList', [])) ); } GetPROFICIENCYByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetPROFICIENCYByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetPROFICIENCYByMDCCID', [])) ); } GetPRVSTAND(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetPRVSTANDlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetPRVSTANDList', [])) ); } GetPRVSTANDByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetPRVSTANDByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetPRVSTANDByMDCCID', [])) ); } GetQUARTERSSTATUS(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetQUARTERSSTATUSlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetQUARTERSSTATUSList', [])) ); } GetQUARTERSSTATUSByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetQUARTERSSTATUSByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetQUARTERSSTATUSByMDCCID', [])) ); } GetRACE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRACElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRACEList', [])) ); } GetRACEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRACEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRACEByMDCCID', [])) ); } GetRAINSTATION(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRAINSTATIONlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRAINSTATIONList', [])) ); } GetRAINSTATIONByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRAINSTATIONByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRAINSTATIONByMDCCID', [])) ); } GetRATETYPE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRATETYPElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRATETYPEList', [])) ); } GetRATETYPEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRATETYPEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRATETYPEByMDCCID', [])) ); } GetRECEIVENOTE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRECEIVENOTElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRECEIVENOTEList', [])) ); } GetRECEIVENOTEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRECEIVENOTEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRECEIVENOTEByMDCCID', [])) ); } GetRECORDSTATUS(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRECORDSTATUSlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRECORDSTATUSList', [])) ); } GetRECORDSTATUSByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRECORDSTATUSByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRECORDSTATUSByMDCCID', [])) ); } GetRECOVERYTASKSIZE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRECOVERYTASKSIZElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRECOVERYTASKSIZEList', [])) ); } GetRECOVERYTASKSIZEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRECOVERYTASKSIZEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRECOVERYTASKSIZEByMDCCID', [])) ); } GetREGION(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetREGIONlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetREGIONList', [])) ); } GetREGIONByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetREGIONByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetREGIONByMDCCID', [])) ); } GetREGIONGROUP(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetREGIONGROUPlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetREGIONGROUPList', [])) ); } GetREGIONGROUPByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetREGIONGROUPByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetREGIONGROUPByMDCCID', [])) ); } GetRELATIONSHIP(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRELATIONSHIPlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRELATIONSHIPList', [])) ); } GetRELATIONSHIPByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRELATIONSHIPByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRELATIONSHIPByMDCCID', [])) ); } GetRELIGION(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRELIGIONlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRELIGIONList', [])) ); } GetRELIGIONByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRELIGIONByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRELIGIONByMDCCID', [])) ); } GetREPTMPL(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetREPTMPLlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetREPTMPLList', [])) ); } GetREPTMPLByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetREPTMPLByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetREPTMPLByMDCCID', [])) ); } GetRPBPERC(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRPBPERClist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRPBPERCList', [])) ); } GetRPBPERCByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRPBPERCByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRPBPERCByMDCCID', [])) ); } GetRPBTALLPALM(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRPBTALLPALMlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRPBTALLPALMList', [])) ); } GetRPBTALLPALMByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRPBTALLPALMByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRPBTALLPALMByMDCCID', [])) ); } GetRPBYOUNGPALM(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRPBYOUNGPALMlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRPBYOUNGPALMList', [])) ); } GetRPBYOUNGPALMByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRPBYOUNGPALMByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRPBYOUNGPALMByMDCCID', [])) ); } GetRUBBERTRANSACTIONTYPE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRUBBERTRANSACTIONTYPElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRUBBERTRANSACTIONTYPEList', [])) ); } GetRUBBERTRANSACTIONTYPEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRUBBERTRANSACTIONTYPEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRUBBERTRANSACTIONTYPEByMDCCID', [])) ); } GetRUBFIELDMASTERSETTING(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRUBFIELDMASTERSETTINGlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRUBFIELDMASTERSETTINGList', [])) ); } GetRUBFIELDMASTERSETTINGByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRUBFIELDMASTERSETTINGByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRUBFIELDMASTERSETTINGByMDCCID', [])) ); } GetRUBPRICEZONE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRUBPRICEZONElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRUBPRICEZONEList', [])) ); } GetRUBPRICEZONEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRUBPRICEZONEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRUBPRICEZONEByMDCCID', [])) ); } GetRUBPRICEZONEVERMASTER(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRUBPRICEZONEVERMASTERlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRUBPRICEZONEVERMASTERList', [])) ); } GetRUBPRICEZONEVERMASTERByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetRUBPRICEZONEVERMASTERByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetRUBPRICEZONEVERMASTERByMDCCID', [])) ); } GetSCANNERREGISTRATION(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSCANNERREGISTRATIONlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSCANNERREGISTRATIONList', [])) ); } GetSCANNERREGISTRATIONByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSCANNERREGISTRATIONByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSCANNERREGISTRATIONByMDCCID', [])) ); } GetSCRAPPAYFORMULA(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSCRAPPAYFORMULAlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSCRAPPAYFORMULAList', [])) ); } GetSCRAPPAYFORMULAByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSCRAPPAYFORMULAByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSCRAPPAYFORMULAByMDCCID', [])) ); } GetSOCSOTABLE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSOCSOTABLElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSOCSOTABLEList', [])) ); } GetSOCSOTABLEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSOCSOTABLEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSOCSOTABLEByMDCCID', [])) ); } GetSOCSOVERMASTER(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSOCSOVERMASTERlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSOCSOVERMASTERList', [])) ); } GetSOCSOVERMASTERByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSOCSOVERMASTERByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSOCSOVERMASTERByMDCCID', [])) ); } GetSPIRALCUT(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSPIRALCUTlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSPIRALCUTList', [])) ); } GetSPIRALCUTByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSPIRALCUTByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSPIRALCUTByMDCCID', [])) ); } GetSPOUSESTATUS(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSPOUSESTATUSlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSPOUSESTATUSList', [])) ); } GetSPOUSESTATUSByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSPOUSESTATUSByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSPOUSESTATUSByMDCCID', [])) ); } GetSTATE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTATElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTATEList', [])) ); } GetSTATEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTATEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTATEByMDCCID', [])) ); } GetSTDARACC(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTDARACClist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTDARACCList', [])) ); } GetSTDARACCByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTDARACCByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTDARACCByMDCCID', [])) ); } GetSTDCLONE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTDCLONElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTDCLONEList', [])) ); } GetSTDCLONEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTDCLONEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTDCLONEByMDCCID', [])) ); } GetSTDEXPCD(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTDEXPCDlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTDEXPCDList', [])) ); } GetSTDEXPCDByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTDEXPCDByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTDEXPCDByMDCCID', [])) ); } GetSTDGLCD(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTDGLCDlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTDGLCDList', [])) ); } GetSTDGLCDByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTDGLCDByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTDGLCDByMDCCID', [])) ); } GetSTDINTFBCHNO(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTDINTFBCHNOlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTDINTFBCHNOList', [])) ); } GetSTDINTFBCHNOByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTDINTFBCHNOByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTDINTFBCHNOByMDCCID', [])) ); } GetSTDITEMCODE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTDITEMCODElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTDITEMCODEList', [])) ); } GetSTDITEMCODEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTDITEMCODEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTDITEMCODEByMDCCID', [])) ); } GetSTDITEMCODECATEGORY(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTDITEMCODECATEGORYlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTDITEMCODECATEGORYList', [])) ); } GetSTDITEMCODECATEGORYByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTDITEMCODECATEGORYByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTDITEMCODECATEGORYByMDCCID', [])) ); } GetSTDITEMCODEMASTER(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTDITEMCODEMASTERlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTDITEMCODEMASTERList', [])) ); } GetSTDITEMCODEMASTERByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTDITEMCODEMASTERByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTDITEMCODEMASTERByMDCCID', [])) ); } GetSTDVLOG(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTDVLOGlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTDVLOGList', [])) ); } GetSTDVLOGByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTDVLOGByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTDVLOGByMDCCID', [])) ); } GetSTDVMANUF(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTDVMANUFlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTDVMANUFList', [])) ); } GetSTDVMANUFByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTDVMANUFByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTDVMANUFByMDCCID', [])) ); } GetSTDVMODEL(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTDVMODELlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTDVMODELList', [])) ); } GetSTDVMODELByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTDVMODELByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTDVMODELByMDCCID', [])) ); } GetSTDVSTATUS(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTDVSTATUSlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTDVSTATUSList', [])) ); } GetSTDVSTATUSByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTDVSTATUSByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTDVSTATUSByMDCCID', [])) ); } GetSTDVSUBGROUP(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTDVSUBGROUPlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTDVSUBGROUPList', [])) ); } GetSTDVSUBGROUPByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTDVSUBGROUPByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTDVSUBGROUPByMDCCID', [])) ); } GetSTDVTYPE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTDVTYPElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTDVTYPEList', [])) ); } GetSTDVTYPEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTDVTYPEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTDVTYPEByMDCCID', [])) ); } GetSTORAGELOC(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTORAGELOClist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTORAGELOCList', [])) ); } GetSTORAGELOCByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSTORAGELOCByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSTORAGELOCByMDCCID', [])) ); } GetSUBCATEGORY(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSUBCATEGORYlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSUBCATEGORYList', [])) ); } GetSUBCATEGORYByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSUBCATEGORYByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSUBCATEGORYByMDCCID', [])) ); } GetSUPPLIERADD(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSUPPLIERADDlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSUPPLIERADDList', [])) ); } GetSUPPLIERADDByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSUPPLIERADDByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSUPPLIERADDByMDCCID', [])) ); } GetSUPPLIERSHIPTO(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSUPPLIERSHIPTOlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSUPPLIERSHIPTOList', [])) ); } GetSUPPLIERSHIPTOByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSUPPLIERSHIPTOByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSUPPLIERSHIPTOByMDCCID', [])) ); } GetSUPPOSTINGGROUP(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSUPPOSTINGGROUPlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSUPPOSTINGGROUPList', [])) ); } GetSUPPOSTINGGROUPByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetSUPPOSTINGGROUPByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetSUPPOSTINGGROUPByMDCCID', [])) ); } GetTADEVICE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetTADEVICElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetTADEVICEList', [])) ); } GetTADEVICEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetTADEVICEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetTADEVICEByMDCCID', [])) ); } GetTALLPALMPERCENTAGE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetTALLPALMPERCENTAGElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetTALLPALMPERCENTAGEList', [])) ); } GetTALLPALMPERCENTAGEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetTALLPALMPERCENTAGEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetTALLPALMPERCENTAGEByMDCCID', [])) ); } GetTASHIFTTABLE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetTASHIFTTABLElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetTASHIFTTABLEList', [])) ); } GetTASHIFTTABLEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetTASHIFTTABLEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetTASHIFTTABLEByMDCCID', [])) ); } GetTAXRATE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetTAXRATElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetTAXRATEList', [])) ); } GetTAXRATEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetTAXRATEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetTAXRATEByMDCCID', [])) ); } GetTAXRATEDETAILS(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetTAXRATEDETAILSlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetTAXRATEDETAILSList', [])) ); } GetTAXRATEDETAILSByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetTAXRATEDETAILSByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetTAXRATEDETAILSByMDCCID', [])) ); } GetTITLE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetTITLElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetTITLEList', [])) ); } GetTITLEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetTITLEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetTITLEByMDCCID', [])) ); } GetTRANSACTIONTYPE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetTRANSACTIONTYPElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetTRANSACTIONTYPEList', [])) ); } GetTRANSACTIONTYPEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetTRANSACTIONTYPEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetTRANSACTIONTYPEByMDCCID', [])) ); } GetUOM(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetUOMlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetUOMList', [])) ); } GetUOMByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetUOMByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetUOMByMDCCID', [])) ); } GetVACCGROUP(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetVACCGROUPlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetVACCGROUPList', [])) ); } GetVACCGROUPByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetVACCGROUPByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetVACCGROUPByMDCCID', [])) ); } GetVLOGALLOWEXPD(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetVLOGALLOWEXPDlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetVLOGALLOWEXPDList', [])) ); } GetVLOGALLOWEXPDByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetVLOGALLOWEXPDByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetVLOGALLOWEXPDByMDCCID', [])) ); } GetVLPSCALE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetVLPSCALElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetVLPSCALEList', [])) ); } GetVLPSCALEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetVLPSCALEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetVLPSCALEByMDCCID', [])) ); } GetVLPSETTING(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetVLPSETTINGlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetVLPSETTINGList', [])) ); } GetVLPSETTINGByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetVLPSETTINGByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetVLPSETTINGByMDCCID', [])) ); } GetWEIGTHINGMETHOD(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetWEIGTHINGMETHODlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetWEIGTHINGMETHODList', [])) ); } GetWEIGTHINGMETHODByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetWEIGTHINGMETHODByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetWEIGTHINGMETHODByMDCCID', [])) ); } GetWORKERFIELDFORMULA(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetWORKERFIELDFORMULAlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetWORKERFIELDFORMULAList', [])) ); } GetWORKERFIELDFORMULAByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetWORKERFIELDFORMULAByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetWORKERFIELDFORMULAByMDCCID', [])) ); } GetWORKERFIELDFORMULAADDTO(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetWORKERFIELDFORMULAADDTOlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetWORKERFIELDFORMULAADDTOList', [])) ); } GetWORKERFIELDFORMULAADDTOByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetWORKERFIELDFORMULAADDTOByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetWORKERFIELDFORMULAADDTOByMDCCID', [])) ); } GetWORKERNONELIGIBLEITEMCODE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetWORKERNONELIGIBLEITEMCODElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetWORKERNONELIGIBLEITEMCODEList', [])) ); } GetWORKERNONELIGIBLEITEMCODEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetWORKERNONELIGIBLEITEMCODEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetWORKERNONELIGIBLEITEMCODEByMDCCID', [])) ); } GetWORKSTATUS(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetWORKSTATUSlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetWORKSTATUSList', [])) ); } GetWORKSTATUSByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetWORKSTATUSByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetWORKSTATUSByMDCCID', [])) ); } GetYIELDBRACKET(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetYIELDBRACKETlist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetYIELDBRACKETList', [])) ); } GetYIELDBRACKETByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetYIELDBRACKETByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetYIELDBRACKETByMDCCID', [])) ); } GetYPHRANGE(): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetYPHRANGElist', { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetYPHRANGEList', [])) ); } GetYPHRANGEByMDCCID(id: string): Observable { return this.generalhttp.get(this.apiserviceurl + this.apiUrl + 'GetYPHRANGEByMDCCID/' + id, { headers: this.GetHeaders(), }) .pipe( catchError(this.handleError('GetYPHRANGEByMDCCID', [])) ); } }