API browser of generalInvoiceRequest430 COM module


/images/arrow_right.png IGeneralInvoiceRequest::AddTarmedServiceEx method
Adds a Tarmed service supplying all data - there is no auto-expansion of any data.

Auto-expansion: under the condition that the tarmedValidator is installed and eIgnoreValidate=enNo then bstrText, dUnit, and dAmount are auto-expanded to the correct values by the validator if and only if these values are set empty or 0, respectively.

If the return status is VARIANT_FALSE then the service record is not added!

space
 
/images/arrow_right.png C/C++ calling syntax
HRESULT AddTarmedServiceEx( ITarmedInput
BSTR
BSTR
BSTR
double
long
DATE
SideType
BSTR
double
double
double
double
double
double
double
double
double
double
ObligationType
BSTR
BSTR
YesNoType
long
long
VARIANT_BOOL
*pITarmedInput,
bstrTariffType,
bstrCode,
bstrReferenceCode,
dQuantity,
lSessionNumber,
dDate,
eSide,
bstrText,
dUnitMT,
dUnitFactorMT,
dUnitInternalScalingFactorMT,
dAmountMT,
dUnitTT,
dUnitFactorTT,
dUnitInternalScalingFactorTT,
dAmountTT,
dAmount,
dVatRate,
eIsObligatory,
bstrRemark,
bstrSectionCode,
eIgnoreValidate,
lServiceAttributes,
*plID,
*pbStatus);
 
/images/arrow_right.png Calling argument description
[in] ITarmedInput *pITarmedInput ITarmedInput interface instance.
[in] BSTR bstrTariffType The official Tarmed tariff type.

The tariff type is currently ignored and fixed to "001"

[in] BSTR bstrCode The Tarmed service code.
[in] BSTR bstrReferenceCode The Tarmed reference code if one must be supplied (otherwise bstrReferenceCode is ignored)
[in] double dQuantity The floating point quantity.

Note that quantity changes the sign if a credit advice or a storno request is produced.

[in] long lSessionNumber The Tarmed session number
[in] DATE dDate The date of the service's application
[in] SideType eSide The Tarmed side type
[in] BSTR bstrText The service name as defined by the Tarmed tariff
[in] double dUnitMT Tax points for the medical Tarmed part of the service.
[in] double dUnitFactorMT Tax point value for the medical Tarmed part of the service.
[in] double dUnitInternalScalingFactorMT Internal scaling factor for medical part of the Tarmed service.
[in] double dAmountMT The amount in CHF for the medical part of the Tarmed service.

Note that medical amount changes the sign if a credit advice or a storno request is produced.

[in] double dUnitTT Tax points for the technical Tarmed part of the service.
[in] double dUnitFactorTT Tax point value for the technical Tarmed part of the service.
[in] double dUnitInternalScalingFactorTT Internal scaling factor for technical part of the Tarmed service.
[in] double dAmountTT The amount in CHF for the technical part of the Tarmed service.

Note that technical amount changes the sign if a credit advice or a storno request is produced.

[in] double dAmount The amount in CHF for the Tarmed service.

Note that amount changes the sign if a credit advice or a storno request is produced.

[in] double dVatRate The VAT rate that should be applied to this service.
[in] ObligationType eIsObligatory Enumerator indicating whether the given service record is obligatory regarding the given law (UVG,KVG,...). If the enumerator is set to enObligationAutomatic then the status is set internally using some ad hoc rules.
[in] BSTR bstrRemark An optional remark for the given service
[in] BSTR bstrSectionCode An optional BfS section code where the service was applied as defined by Swiss Federal Statistical Office - this code is only given for eRoleType=enRoleHospital!
[in] YesNoType eIgnoreValidate Flag indicating whether the validation was ignored.

This flag might be useful in the following situation: the user wants to add the service even if the validation failed, perhaps he has a special agreement with the insurance or patient.

[in] long lServiceAttributes lServiceAttributes is a 32-bit integer where each bit position defines a special information.

Currently only Bit 1 (0x000001) is defined. It applies to drug services only and means "Code 207" aka "Drug must not be substituted due to medical reasons".

[out] long *plID This is the internal ID of the service record.

Currently unused for Tarmed records.

[out, retval] VARIANT_BOOL *pbStatus Return status of the method. If pbStatus is VARIANT_FALSE then an error occurred and GetAbortInfo should be called to retrieve the error string.
 
/images/arrow_right.png C/C++ return value
S_OK This value is returned if the function call was successful or if the return value of a boolean method signalling a true value. In this case the VARIANT_BOOL is set to VARIANT_TRUE.
S_FALSE This is the return value of a boolean method signalling a false return value. In this case the VARIANT_BOOL is set to VARIANT_FALSE.
E_name This value is returned if the function call was unsuccessful and an error exception was generated. Note that if you are using SmartPointers an exception is thrown under these conditions.