API browser of labValidator100 COM module


/images/arrow_right.png IValidate::GetService method space
This method has a Restful Webservice representation only!
Method for collecting all data of the currently focused service in one call without the necessity to call the appropriate properties of this interface.
 
The counterpart method to add services is ILabValidator::AddService
space
/images/arrow_right.png Restful webservice calling syntax
[POST] /baseURL/IValidate/GetService
[JSON input data] pIValidate: longValue,    //interface address
[JSON result data] plID:
pbstrCode:
pbstrName:
pdQuantity:
pdTP:
pdTPValue:
pdDate:
peIgnoreValidate:
plHook:
pdExternalFactor:
peCantonType:
peLawType:
peSettlementType:
peRoleType:
pbstrAnonymousCode:
pdCharge:
pbStatus:
longValue,
"utf8StringValue",
"utf8StringValue",
doubleValue,
doubleValue,
doubleValue,
"stringISODateValue",
longValue,
longValue,
doubleValue,
longValue,
longValue,
longValue,
longValue,
"utf8StringValue",
doubleValue,
booleanValue
 
[HTTP result status] 200 Return status 200 signals a successful method call
204 Return status 204 (noContent) signals that the end of an iteration is reached
>= 400 Return status >= 400 signals an unsuccessful function call. The returned JSON{errorCode: code, errorText:"text"} supplies the error message the same as GetAbortInfo() would do.
space
/images/arrow_right.png Calling argument description
[out] long *plID The internal ID of the currently focused service
[out] BSTR *pbstrCode The code of the currently focused service
[out] BSTR *pbstrName The name of the currently focused service
[out] double *pdQuantity The quantity of the currently focused service
[out] double *pdTP The tax point (TP) of the currently focused service
[out] double *pdTPValue The tax point value (TPV) of the currently focused service
[out] DATE *pdDate The application date of the currently focused service
[out] YesNoType *peIgnoreValidate The flag indicating whether the currently focused service was ignored in validation (enNo) or not (enYes).
[out] long *plHook The hook of the currently focused service
[out] double *pdExternalFactor The external scaling factor applied to the currently focused service
[out] CantonType *peCantonType The canton type applied to the currently focused service

This canton setting is copied from the data supplied with the ILabValidator::SetTreatment method.

[out] LawType *peLawType The law type applied to the currently focused service

This law setting is copied from the data supplied with the ILabValidator::SetTreatment method.

[out] SettlementType *peSettlementType The settlement type applied to the currently focused service

This settlement setting is copied from the data supplied with the ILabValidator::SetTreatment method.

[out] RoleType *peRoleType The role type applied to the currently focused service

This role setting is copied from the data supplied with the ILabValidator::SetRoleType property or set via a pseudo service using the by the setParameter mechanism.

[out] BSTR *pbstrAnonymousCode Patched property! returns the currently applied providerType and the area codes (C, H, F, etc.) of the current service in the form
providerType = <applied_filter>       area = <area_code>

 
Note, that since there are no Anonymous Codes anymore for tariff 317, this property was patched to return these information not available otherwise.
[out] double *pdCharge The charge in CHF of the currently focused service calculated as ( Charge = Quantity * TP * TPValue * ExternalFactor )
[out,retval] VARIANT_BOOL *pbStatus Boolean return status
space