Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 29 Next »

Use the following procedure to define custom price calculations on resources and services.

1. Create your custom price calculator class

Create a class that implements the interface B25.Util_PluginManager.ReservationPrice. Implementing that interface means the class must have a method with the following signature:

void calculate(B25.Util_PluginManager.ReservationPriceData)

This method will be called whenever a reservation is saved, or whenever the reservation form gets re-rendered. You can control when the reservation form gets re-rendered, more on that in a bit. The B25.Util_PluginManager.ReservationPriceData object that gets passed along to the calculate method has two properties that will help you to make your own price calculation.


Name

Type

Purpose

reservation

B25__Reservation__c

Contains the reservation as it is at the moment the calculate method is called. It will have all the fields populated that are visible on the reservation form.

serviceCosts

Decimal

Contains the service costs as shown on the reservation form when you have the setting 'Services have a price' enabled.

In the calculate method you will be able to set any fields on the reservation property record, such as the B25__Subtotal__c field, in order to control the final price of the reservation, or to start an approval process.


For the official documentation on how to write classes and how to implement interfaces go to: https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_classes.htm


Make sure your class is global, so that Booker25 can instantiate it. See the code sample below.


2. Activate the custom price calculator class

Now, let Booker25 know that it should use your custom class instead of the default price calculation

To do this:

  1. Go to Setup

  2. Search for Custom Settings

  3. Click Manage next to System Setting

  4. Click New

  5. Name the record Reservation Price Calculator Class, and for String Value enter the name of your custom price calculator class

As long as this setting exists, Booker25 will execute the calculate method every time the reservation form gets rerendered or when the reservation is saved.

3. (Optional) Control which fields trigger the calculation

By default, the following Reservation fields trigger the calculation whenever their value changes on the form: Start, End, Base Price, Calculation Method, and Quantity. If you want to change which fields trigger the calculation, create a class that implements the interface B25.Util_PluginManager.ReservationPriceFields. Implementing that interface means the class must have a method with the following signature:

Set<String> getDependantFieldNames(B25.Util_PluginManager.ReservationPriceData)

This method will be called when the calendar loads, to determine which fields trigger a calculation. To let Booker25 know about the existence of the class, Either place it in the same class as your custom price calculator class or create a new custom setting just as in step 2, except this time name the new record Reservation Price Fields Class. For String Value enter the name of the class you created.

Sample Code

The sample code below adds the account field as one of the fields triggering calculation, besides all the default fields.

Then, in the actual calculation method, it sets the price to zero if the linked account is an Installation Partner.

global class MyCalculation implements B25.Util_PluginManager.ReservationPrice, B25.Util_PluginManager.ReservationPriceFields {
    
    public Set<String> getDependantFieldNames(B25.Util_PluginManager.ReservationPriceData data) {
        return new Set<String>{
        	'B25__Account__c',
            'B25__StartLocal__c',
        	'B25__EndLocal__c',
            'B25__Base_Price__c',
        	'B25__Quantity__c',
            'B25__Calculation_Method__c'
        };
    }

    public void calculate(B25.Util_PluginManager.ReservationPriceData data) {
        if (data.reservation.B25__Account__c == null) {
            return;
        }
        Account linkedAccount = [
            SELECT Type
            FROM Account
            WHERE Id = :data.reservation.B25__Account__c
        ];
        if (linkedAccount.Type == 'Installation Partner') {
            data.reservation.B25__Subtotal__c = 0;
        }
    }
}

Related articles

On this page


  • No labels