Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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:

Code Block
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


Info

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 ReservationPriceCalculatorClass, and for StringValue 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:

Code Block
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.

Image RemovedImage Added

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.

Code Block
languagejava
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;
        }
    }
}

Test code for class above

Code Block
languagejava
@IsTest
private class Test_MyCalculation {
    @IsTest static void priceCalculation() {
        Account testAccount = new Account(
            Name = 'name',
            Type = 'Installation Partner'
        );
        Database.insert(testAccount);
        
        B25__Reservation__c testReservation1testReservation = new B25__Reservation__C(
            B25__Account__c = testAccount.Id,
            B25__StartLocal__c = DateTime.newInstance(2017, 1, 1, 4, 0, 0),
            B25__EndLocal__c = DateTime.newInstance(2017, 1, 2, 4, 0, 0),
            B25__Subtotal__c = 100
        );
        Database.insert(testReservation1testReservation);
        
        B25.Util_PluginManager.ReservationPriceData rpd = new B25.Util_PluginManager.ReservationPriceData();
        rpd.reservation = testReservation1testReservation;
        
        MyCalculation myCalculationClass = new MyCalculation();
        
        //Test the DependantFieldName class and checks that there are 6 fields returned
		        Set<String> fields = myCalculationClass.getDependantFieldNames(rpd);
        System.assertEquals(6, fields.size());
		
		
        //Do the calculation and test that the price is 0 for this Account
        myCalculationClass.calculate(rpd);
        System.assertEquals(0, testReservation1testReservation.B25__Subtotal__c);
    }
}

Related articles

Filter by label (Content by label)
showLabelsfalse
max5
spacescom.atlassian.confluence.content.render.xhtml.model.resource.identifiers.SpaceResourceIdentifier@101b6
sortmodified
showSpacefalse
reversetrue
typepage
cqllabel in ( "calculation" , "price" , "pricecalculation" , "pricing" ) and type = "page" and space = "BPD"
labelsprice pricing calculation pricecalculation
Page Properties
hiddentrue


Related issues



On this page

Table of Contents