This is a plugin for adding Delivery price bands to EvCheckout Orders. 

It latches onto the Cakephp event system to calculate whether there is a delivery charge to be added to the order.
This allows you to specify rules like: 
	For orders less than X delivery costs Y 
	For orders more than X delivery costs Y 
	For orders between X and Y delivery costs Z


=== Installation ===

	Requires the EvCheckout and Migrations plugin to work (installed by composer)

	1. Copy the plugin into your App or run 
		composer require evoluted/delivery-bands --prefer-source
	2. Run the migrations 
		Console/cake Migrations.migration run all --plugin EvDeliveryPriceBand
	3. Hook up the event by adding this to the bottom of Config/bootstrap.php
		//Attach EVENTS 
		App::uses('ClassRegistry', 'Utility');
		App::uses('DeliveryPriceBandListener', 'EvDeliveryPriceBand.Event');
		$order = ClassRegistry::init('EvCheckout.Order');
		$order->getEventManager()->attach(new DeliveryPriceBandListener());
	4. Add the applicable price bands