Name

global.CustomPriceGenerator

Description

If Script Includes CatalogPriceCalculator or CatalogRecurringPriceCalculator have been customized, then property glide.sc.use_custom_pricegenerator is set to true and price calculation is done via the two script includes. If glide.sc.use_custom_pricegenerator is set to false then price calculation is done outside of Rhino Context in pure java.

Script

var CustomPriceGenerator = Class.create();
CustomPriceGenerator.prototype = {
  initialize: function() {
  },
  
  fixProperty : function() {
  	var fileNames = [
  	    'sys_script_include_292768ba0a0a0b4400c27a5190b1c3be', // CatalogPriceCalculator
  	    'sys_script_include_756351003701300054b6a3549dbe5dda'  // CatalogRecurringPriceCalculator
  	];
  	var hasCustomPriceGenerator = 'glide.sc.use_custom_pricegenerator';
  	var updates = new GlideRecord('sys_update_xml');
  	updates.addQuery('name', fileNames);
  	updates.query();
  	if (updates.next()) {
  		var customisations = updates.name + "";
  		while (updates.next()) {
  			customisations += ", " + updates.name;
  		}
  		gs.setProperty(hasCustomPriceGenerator, 'true');
  		gs.log("Customization found: [" + customisations + "]. Property: [" + hasCustomPriceGenerator + "] set to true");
  	} else {
  		gs.setProperty(hasCustomPriceGenerator, 'false');
  		gs.log("No customization of price generation found. Property: [" + hasCustomPriceGenerator + "] has set to false");}
  	},
  	
  	type: 'CustomPriceGenerator'
  }

Sys ID

ae4fe402d7103100f2d224837e610375

Offical Documentation

Official Docs: