The configuration for the Request a Bin form is fairly significant owing to the high level of configuration in the form.
But can be broken down into the following areas:
Yotta Specific Sections
Back Office Mapping
This section tells us which attribute to check for the property type with. I.e. in the Area section you can indicate which type of properties can have which bins. This setting says what the parameter is in Yotta Alloy that holds the collection of different areas. This exists because these can be different from one Yotta Alloy customer to another.
You only need the above if you support different bins for different property categories.
Address Search Filter
This section tells the Missed Bin form's address look up which addresses to look for and has the primary purpose of excluding commercial addresses. The only parameter that really matters if the 'Value', which says only show addresses where the class of them starts with an R. You could change this to RD (residential) but generally R is suffice:
The Mandatory Container Conditions enables a council to stipulate conditions that must be met for certain container types to be request. There are three of these built in:
Large family where you can control:
What constitutes a large family by changing the value 'NumberConstraint'. The default is 5 constitutes a larger family but could be changed to 10 etc.
Children in nappies where you can control:
The number of children that need to be in nappies for the condition to be met by changing the value 'NumberConstraint'. The default is 2.
Medical Condition
Which uniquely has the ability to set whether proof is mandatory via an evidence upload i.e. UploadRequired="True" means they must upload evidence
All of the above scenarios have the ability to mandate (or not) that the customer:
Some councils will log that the developer has already pre-paid for containers with an indicator in their system. This config enables you to set which attribute will result in a different price being set for bins being requested:
This is used in conjunction with a bin being requested. E.g. The below is an additional recycling bin where the normal cost would be 37.70 but is 0 where this marker is present.
This allows to set which rounds (or put another way - waste streams) the council want to allow people to request a new/replacement bin for. The configuration simply needs the back office value for the round as well as the color. The description is what the customer will see when indicating the stream where they need a new/replacement bin.
The following is a sample section for Rounds:
<Rounds>
<RoundType
Value="REF"
Colour="Black">Black rubbish bin (max 1 bin per household)
</RoundType>
<RoundType
Value="REC"
Colour="Brown">Brown recycling bin (max 1 bin per household)
</RoundType>
<RoundType
Value="ORG"
Colour="Green">Green lidded food and garden bin (1 small or standard bin per household plus up to 3 additional)
</RoundType>
</Rounds>
Bin Types
It goes without saying that the configuration needs to hold the bin types that a person can order to ensure that payment references, where there's a cost, can be linked to them and so the waste operations team know which bin to deliver/replace etc.
For each bin type you can set the following attributes:
Value (the code for the container) as held in the back office waste system
The waste stream colour
The round type
The Payment system's Fund Code to link it to
The Payment system's Reference code to link it to
The Payment system's VAT Code to link it to
<Bin
Value="6523"
Colour="Black"
RoundType="REF"
FundCode="F0000007"
Reference="14204354"
VatCode="N"
>
Small black bin
</Bin>
The above will show as a single line in the file we've added a line break before each editable parameter to make them easier to visualise.
There is one additional bin type parameter, which is specifically there for 'New Bin Sets' for people that have moved into a property and there are no bins - typically new builds:
ExcludeFromCount="true"
Area
In some councils different types of property can request different types of bins. I.e. Flats can order / replace some types of bins and those properties with gardens can order others. Area is designed for that purpose.
The ability to have different Areas is currently only supported for Yotta Alloy. The element DOES still exist for all sites but the ability to distinguish between them is linked to a specific Yotta Alloy attribute.
For example, the following shows a Street Level property section commented because the codes in Yotta Alloy are long/unclear as to their purpose.
When a citizen is requesting a new bin set the council needs to be able to indicate what falls into this. I.e. which bins does a bin set comprise. There is a dedicated element NewBinSet, which enables you to set:
The Price - £93.00 in the example below
The list of bins and their count included in a new bin set
<NewBinSet Price="93.00">
<!-- new bin set-->
<Option Value="NBSET"/>
<Bins>
<Bin Value="6507" Quantity="1"/>
<Bin Value="6527" Quantity="1"/>
<Bin Value="6512" Quantity="1"/>
</Bins>
</NewBinSet>
The Option Value="NBSET" is built into our application to make it obvious when going through the file. I.e. you don't change this.
Replace a Bin
There is built in configuration for three different scenarios where a person wants a replacement bin within the form:
Damaged
Lost
A different bin is wanted - Exchange
Because a council might want to change the bins provided in each scenario there are dedicated sections in the file for each.
Damaged
Within the section every bin that they could report damage should be listed and within that you need indicate which bins they could get as a replacement, its price and whether there are any mandatory conditions for getting that bin type.
First bin type they could currently have is 6523 (which is the back office code for the bin)
The options they can replace the damaged bin with i.e. if 6523 was a small black bin, the options might be:
6507 = standard black bin
6537 = large black bin for non-medical reasons
6744 = large black bin for medical reasons
With a price and mandatory conditions for the larger bin for the non-medical reasons
No price and a different (medical) mandatory condition for the larger bin for medical reasons
Lost
Each type of replacement follows a common pattern so the above for damaged is also true below. I.e. what bin should they have and what are the options and price for the replacement.
The only difference is you're more likely to add the Developer Pre Paid 'Discount' to these as there is not a damaged bin but rather there are no bins.
Because a person might want a new or additional bin there is a separate section for this.
Within this section you can set beyond the standard content of the replace a bin above:
Round type (waste stream)
The Maximum Number of bins in a given permitted waste stream for a property - where this is used the form will check the number of bins for this round already at the property and only allow up to the maximum number to be ordered.
I.e. how many black bins - NOT how many bins of a certain type of bin
Single Item - where this is added to the config (instead of MaximumBinsAtProperty) a tick box is used to order the bin rather than a drop down list of numbers.
Where neither Maximum Number of bins or Single Item is used a drop down list is displayed allowing up to 4 bins to be ordered.
CurrentBin value supports a value of null i.e. I want a new bin where there is no bin held against the property in the waste management system
<!--Deliver a new or additional bin -->
<AddBin RoundType="ORG" MaximumBinsAtProperty="4">
<CurrentBin Value="null">
<Option Value="6515" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6512" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6743" Price="55.50"/>
</CurrentBin>
</AddBin>
<!--Deliver a new or additional bin -->
<AddBin RoundType="ORG" SingleItem= "true">
<CurrentBin Value="null">
<Option Value="6515" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6512" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6743" Price="55.50"/>
</CurrentBin>
</AddBin>
Container Event Actions
Container events are events that exist against the property that you want to prevent a person requesting a new bin for. I.e. the person is ordering a new bin but the council already knows the reason they have no bin is not because it is lost, it is because they damaged it or it fell into the wagon. So they've already instigated a process to deliver a replacement.
The configuration holds the event code to look for (Bartec's event-sub event is shown below e.g. 284-574)
This configuration links to the above Container Event Actions. But this is to set out the message to present to customers for each message.
<ContainerEvents>
<Message EventCode="284-574" Shortdesc="Bin Damaged By Crew">
<![CDATA[<p>
Unfortunately, our crew reported that they damaged your bin.
A replacement has been ordered for you, this will be delivered within the next
10 working days.
Items for recycling can be put out in untied carrier bags or a cardboard box
so we can see the contents and easily tip them out on your next brown bin day.
</p>]]>
</Message>
<Message EventCode="268-387" Shortdesc="Bin in Wagon"><![CDATA[<p>Unfortunately, our crew reported that your bin fell into the back of the wagon during collection. <br> A replacement has been ordered for you, this will be delivered in the next 10 working days. <br>You can leave up to 3 sacks of rubbish out for collection on your next black bin day. </p>]]></Message>
</ContainerEvents>
Full Example File (Bartec - Civica Pay Example)
<Mappings>
<Settings>
<Setting Key="EventMessageMappingKind">EventCode</Setting>
</Settings>
<MandatoryContainerConditions>
<MandatoryContainerCondition Value="1"
Name="x_occupants"
ConfirmationRequired="True"
ExplanationTextRequired="True"
NumberConstraint="5"
/>
<MandatoryContainerCondition Value="2"
Name="x_in_nappies"
ConfirmationRequired="True"
ExplanationTextRequired="True"
NumberConstraint="2"
/>
<MandatoryContainerCondition Value="3"
Name="medical_condition"
ConfirmationRequired="True"
ExplanationTextRequired="True"
UploadRequired="True"
/>
</MandatoryContainerConditions>
<InBuiltDiscounts>
<InBuiltDiscount Value="DeveloperPrePaid" Name="DeveloperPrePaid"/>
</InBuiltDiscounts>
<Rounds>
<RoundType Value="REF" Colour="Black">Black rubbish bin (max 1 bin per household)</RoundType>
<RoundType Value="REC" Colour="Brown">Brown recycling bin (max 1 bin per household)</RoundType>
<RoundType Value="ORG" Colour="Green">Green lidded food and garden bin (1 small or standard bin per household plus up to 3 additional)</RoundType>
</Rounds>
<BinTypes>
<Bin Value="6523" Colour="Black" RoundType="REF" FundCode="F0000007" Reference="14204354" VatCode="N">Small black bin </Bin>
<Bin Value="6524" Colour="Brown" RoundType="REC" FundCode="F0000007" Reference="14204354" VatCode="N">Small brown bin </Bin>
<Bin Value="6515" Colour="Green" RoundType="ORG" FundCode="F0000007" Reference="14204354" VatCode="N">Small green lid bin</Bin>
<Bin Value="6507" Colour="Black" RoundType="REF" FundCode="F0000007" Reference="14204354" VatCode="N">Standard black bin</Bin>
<Bin Value="6527" Colour="Brown" RoundType="REC" FundCode="F0000007" Reference="14204354" VatCode="N">Standard brown bin </Bin>
<Bin Value="6512" Colour="Green" RoundType="ORG" FundCode="F0000007" Reference="14204354" VatCode="N">Standard green lid bin</Bin>
<Bin Value="6537" Colour="Black" RoundType="REF" FundCode="F0000007" Reference="14204354" VatCode="N">Large black bin (larger family)</Bin>
<Bin Value="6519" Colour="Brown" RoundType="REC" FundCode="F0000007" Reference="14204354" VatCode="N">Large brown bin </Bin>
<Bin Value="6743" Colour="Green" RoundType="ORG" FundCode="F0000007" Reference="14244114" VatCode="N">Additional green lid bin </Bin>
<Bin Value="6744" Colour="Black" RoundType="REF">Large black bin (other)</Bin>
<Bin Value="6513" Colour="Black" RoundType="REF">Black Sacks</Bin>
<Bin Value="6514" Colour="Green" RoundType="ORG">Compostable Sacks</Bin>
<Bin Value="6529" Colour="Brown" RoundType="REC">White recycling bag</Bin>
<!--NBSET-->
<Bin Value="NBSET" Colour="Black"
FundCode="F0000007"
Reference="14204354"
VatCode="N"
ExcludeFromCount="true">New bin set</Bin>
</BinTypes>
<!--NBSET-->
<Area Code="ALL">
<NewBinSet Price="93.00">
<!-- new bin set-->
<Option Value="NBSET"/>
<Bins>
<Bin Value="6507" Quantity="1"/>
<Bin Value="6527" Quantity="1"/>
<Bin Value="6512" Quantity="1"/>
</Bins>
</NewBinSet>
<!--Replace a bin because its damaged-->
<ReplaceBin Value="Damaged">
<CurrentBin Value="null">
<Option Value="6507" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6527" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6512" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
</CurrentBin>
<CurrentBin Value="6523">
<Option Value="6523" Price="31.00"/>
<Option Value="6507" Price="31.00"/>
<Option Value="6537" Price="37.00" MandatoryContainerConditions="1|2"/>
<Option Value="6744" Price="0.00" MandatoryContainerConditions="3"/>
</CurrentBin>
<CurrentBin Value="6524">
<Option Value="6524" Price="31.00"/>
<Option Value="6527" Price="31.00"/>
<Option Value="6519" Price="31.00"/>
</CurrentBin>
<CurrentBin Value="6507">
<Option Value="6523" Price="31.00"/>
<Option Value="6507" Price="31.00"/>
<Option Value="6537" Price="37.00" MandatoryContainerConditions="1|2"/>
<Option Value="6744" Price="0.00" MandatoryContainerConditions="3"/>
</CurrentBin>
<CurrentBin Value="6527">
<Option Value="6524" Price="31.00"/>
<Option Value="6527" Price="31.00"/>
<Option Value="6519" Price="31.00"/>
</CurrentBin>
<CurrentBin Value="6512">
<Option Value="6515" Price="31.00"/>
<Option Value="6512" Price="31.00"/>
</CurrentBin>
<CurrentBin Value="6537">
<Option Value="6523" Price="31.00"/>
<Option Value="6507" Price="31.00"/>
<Option Value="6537" Price="37.00" MandatoryContainerConditions="1|2"/>
<Option Value="6744" Price="0.00" MandatoryContainerConditions="3"/>
</CurrentBin>
<CurrentBin Value="6744">
<Option Value="6523" Price="31.00"/>
<Option Value="6507" Price="31.00"/>
<Option Value="6537" Price="37.00" MandatoryContainerConditions="1|2"/>
<Option Value="6744" Price="0.00" MandatoryContainerConditions="3"/>
</CurrentBin>
<CurrentBin Value="6519">
<Option Value="6524" Price="31.00"/>
<Option Value="6527" Price="31.00"/>
<Option Value="6519" Price="31.00"/>
</CurrentBin>
<CurrentBin Value="6515">
<Option Value="6515" Price="31.00"/>
<Option Value="6512" Price="31.00"/>
</CurrentBin>
<CurrentBin Value="6743">
<Option Value="6743" Price="31.00"/>
</CurrentBin>
<CurrentBin Value="6513">
<Option Value="6513" Price="0.00"/>
</CurrentBin>
<CurrentBin Value="6514">
<Option Value="6514" Price="0.00"/>
</CurrentBin>
<CurrentBin Value="6529">
<Option Value="6529" Price="0.00"/>
</CurrentBin>
</ReplaceBin>
<!--Replace a bin because its lost-->
<ReplaceBin Value="Lost">
<CurrentBin Value="6513">
<Option Value="6513" Price="0.00"/>
</CurrentBin>
<CurrentBin Value="6514">
<Option Value="6514" Price="0.00"/>
</CurrentBin>
<CurrentBin Value="6529">
<Option Value="6529" Price="0.00"/>
</CurrentBin>
<CurrentBin Value="6523">
<Option Value="6523" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6507" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6537" Price="37.00" MandatoryContainerConditions="1|2">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6744" Price="0.00" MandatoryContainerConditions="3">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
</CurrentBin>
<CurrentBin Value="6515">
<Option Value="6515" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6512" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
</CurrentBin>
<CurrentBin Value="6743">
<Option Value="6743" Price="31.00"/>
</CurrentBin>
<CurrentBin Value="6524">
<Option Value="6524" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6527" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6519" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
</CurrentBin>
<CurrentBin Value="6507">
<Option Value="6523" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6507" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6537" Price="37.00" MandatoryContainerConditions="1|2">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6744" Price="0.00" MandatoryContainerConditions="3">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
</CurrentBin>
<CurrentBin Value="6527">
<Option Value="6524" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6527" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6519" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
</CurrentBin>
<CurrentBin Value="6512">
<Option Value="6515" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6512" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
</CurrentBin>
<CurrentBin Value="6537">
<Option Value="6523" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6507" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6537" Price="37.00" MandatoryContainerConditions="1|2">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6744" Price="0.00" MandatoryContainerConditions="3">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
</CurrentBin>
<CurrentBin Value="6744">
<Option Value="6523" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6507" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6537" Price="37.00" MandatoryContainerConditions="1|2">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6744" Price="0.00" MandatoryContainerConditions="3">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
</CurrentBin>
<CurrentBin Value="6519">
<Option Value="6524" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6527" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6519" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
</CurrentBin>
</ReplaceBin>
<!--Replace a bin because they want a different one-->
<ReplaceBin Value="Exchange">
<CurrentBin Value="6513">
<Option Value="6513" Price="0.00"/>
</CurrentBin>
<CurrentBin Value="6514">
<Option Value="6514" Price="0.00"/>
</CurrentBin>
<CurrentBin Value="6529">
<Option Value="6529" Price="0.00"/>
</CurrentBin>
<CurrentBin Value="6507">
<Option Value="6523" Price="31.00"/>
<Option Value="6537" Price="37.00" MandatoryContainerConditions="1|2"/>
<Option Value="6744" Price="0.00" MandatoryContainerConditions="3"/>
</CurrentBin>
<CurrentBin Value="6523">
<Option Value="6507" Price="31.00"/>
<Option Value="6537" Price="37.00" MandatoryContainerConditions="1|2"/>
<Option Value="6744" Price="0.00" MandatoryContainerConditions="3"/>
</CurrentBin>
<CurrentBin Value="6537">
<Option Value="6523" Price="31.00"/>
<Option Value="6507" Price="31.00"/>
</CurrentBin>
<CurrentBin Value="6744">
<Option Value="6523" Price="31.00"/>
<Option Value="6507" Price="31.00"/>
</CurrentBin>
<CurrentBin Value="6527">
<Option Value="6524" Price="31.00"/>
<Option Value="6519" Price="31.00"/>
</CurrentBin>
<CurrentBin Value="6524">
<Option Value="6527" Price="31.00"/>
<Option Value="6519" Price="31.00"/>
</CurrentBin>
<CurrentBin Value="6519">
<Option Value="6524" Price="31.00"/>
<Option Value="6527" Price="31.00"/>
</CurrentBin>
<CurrentBin Value="6515">
<Option Value="6512" Price="31.00"/>
</CurrentBin>
<CurrentBin Value="6512">
<Option Value="6515" Price="31.00"/>
</CurrentBin>
</ReplaceBin>
<!--Deliver a new or additional bin -->
<AddBin RoundType="ORG" MaximumBinsAtProperty="4">
<CurrentBin Value="null">
<Option Value="6515" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6512" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6743" Price="55.50"/>
</CurrentBin>
</AddBin>
<AddBin RoundType="ORG" MaximumBinsAtProperty="4">
<CurrentBin Value="6512">
<Option Value="6515" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6512" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6743" Price="55.50"/>
</CurrentBin>
</AddBin>
<AddBin RoundType="ORG" MaximumBinsAtProperty="4">
<CurrentBin Value="6515">
<Option Value="6515" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6512" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6743" Price="55.50"/>
</CurrentBin>
</AddBin>
<AddBin RoundType="REF" MaximumBinsAtProperty="1">
<CurrentBin Value="null">
<Option Value="6523" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6507" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6537" Price="37.00" MandatoryContainerConditions="1|2">
</Option>
<Option Value="6744" Price="0.00" MandatoryContainerConditions="3">
</Option>
</CurrentBin>
</AddBin>
<AddBin RoundType="REF" MaximumBinsAtProperty="1">
<CurrentBin Value="6523">
<Option Value="6523" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6507" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6537" Price="37.00" MandatoryContainerConditions="1|2">
</Option>
<Option Value="6744" Price="0.00" MandatoryContainerConditions="3">
</Option>
</CurrentBin>
</AddBin>
<AddBin RoundType="REF" MaximumBinsAtProperty="1">
<CurrentBin Value="6507">
<Option Value="6523" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6507" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6537" Price="37.00" MandatoryContainerConditions="1|2">
</Option>
<Option Value="6744" Price="0.00" MandatoryContainerConditions="3">
</Option>
</CurrentBin>
</AddBin>
<AddBin RoundType="REF" MaximumBinsAtProperty="1">
<CurrentBin Value="6744">
<Option Value="6523" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6507" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6537" Price="37.00" MandatoryContainerConditions="1|2">
</Option>
<Option Value="6744" Price="0.00" MandatoryContainerConditions="3">
</Option>
</CurrentBin>
</AddBin>
<AddBin RoundType="REF" MaximumBinsAtProperty="1">
<CurrentBin Value="6537">
<Option Value="6523" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6507" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6537" Price="37.00" MandatoryContainerConditions="1|2">
</Option>
<Option Value="6744" Price="0.00" MandatoryContainerConditions="3">
</Option>
</CurrentBin>
</AddBin>
<AddBin RoundType="REC" MaximumBinsAtProperty="1">
<CurrentBin Value="null">
<Option Value="6524" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6527" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6519" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
</CurrentBin>
</AddBin>
<AddBin RoundType="REC" MaximumBinsAtProperty="1">
<CurrentBin Value="6524">
<Option Value="6524" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6527" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6519" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
</CurrentBin>
</AddBin>
<AddBin RoundType="REC" MaximumBinsAtProperty="1">
<CurrentBin Value="6527">
<Option Value="6524" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6527" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6519" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
</CurrentBin>
</AddBin>
<AddBin RoundType="REC" MaximumBinsAtProperty="1">
<CurrentBin Value="6519">
<Option Value="6524" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6527" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
<Option Value="6519" Price="31.00">
<Discount Value="DeveloperPrePaid" Price="0"/>
</Option>
</CurrentBin>
</AddBin>
</Area>
<ContainerEventActions>
<ContainerEventAction Scenario="ReplacementBin" EventCodes="284-574|284-577|284-578|284-579|284-580|284-581|284-587|284-687|284-575|284-582|284-588|284-586|284-688|284-585|284-584|284-583|284-590|284-589|284-592|284-591|284-571|284-570|284-573|284-572|268-387|268-388|268-389|268-390|268-391|268-394|268-400|268-401|268-398|268-391|268-395|268-390|268-389|268-543|268-397|268-396|268-544|268-403|268-402|268-406|268-405|268-380|268-379|268-384|268-383|268-685|268-686" Action="invalid"/>
</ContainerEventActions>
<ContainerEvents>
<Message EventCode="284-574" Shortdesc="Bin Damaged By Crew"><![CDATA[<p>Unfortunately, our crew reported that they damaged your bin. <br>A replacement has been ordered for you, this will be delivered within the next 10 working days. <br>You can leave up to 3 sacks of rubbish out for collection on your next black bin day. </p>]]></Message>
<Message EventCode="284-581" Shortdesc="Bin Damaged By Crew"><![CDATA[<p>Unfortunately, our crew reported that they damaged your bin. <br>A replacement has been ordered for you, this will be delivered within the next 10 working days. <br>You can leave up to 3 sacks of rubbish out for collection on your next black bin day. </p>]]></Message>
<Message EventCode="284-587" Shortdesc="Bin Damaged By Crew"><![CDATA[<p>Unfortunately, our crew reported that they damaged your bin. <br>A replacement has been ordered for you, this will be delivered within the next 10 working days. <br>You can leave up to 5 sacks of rubbish out for collection on your next black bin day. </p>]]></Message>
<Message EventCode="284-687" Shortdesc="Bin Damaged By Crew"><![CDATA[<p>Unfortunately, our crew reported that they damaged your bin. <br>A replacement has been ordered for you, this will be delivered within the next 10 working days. <br>You can leave up to 5 sacks of rubbish out for collection on your next black bin day. </p>]]></Message>
<Message EventCode="284-575" Shortdesc="Bin Damaged By Crew"><![CDATA[<p>Unfortunately, our crew reported that they damaged your bin. <br>A replacement has been ordered for you, this will be delivered within the next 10 working days. <br>Items for recycling can be put out in untied carrier bags or a cardboard box so we can see the contents and easily tip them out on your next brown bin day. </p>]]></Message>
<Message EventCode="284-582" Shortdesc="Bin Damaged By Crew"><![CDATA[<p>Unfortunately, our crew reported that they damaged your bin. <br>A replacement has been ordered for you, this will be delivered within the next 10 working days. <br>Items for recycling can be put out in untied carrier bags or a cardboard box so we can see the contents and easily tip them out on your next brown bin day. </p>]]></Message>
<Message EventCode="284-588" Shortdesc="Bin Damaged By Crew"><![CDATA[<p>Unfortunately, our crew reported that they damaged your bin. <br>A replacement has been ordered for you, this will be delivered within the next 10 working days. <br>Items for recycling can be put out in untied carrier bags or a cardboard box so we can see the contents and easily tip them out on your next brown bin day. </p>]]></Message>
<Message EventCode="284-586" Shortdesc="Bin Damaged By Crew"><![CDATA[<p>Unfortunately, our crew reported that they damaged your bin. <br>A replacement has been ordered for you, this will be delivered within the next 10 working days. <br> Food and garden waste should be stored in a suitable container and emptied in to the green lidded bin when your new one is delivered. Or if you prefer, you can take excess to your local household waste and recycling centre. <br><a href=https://www.highpeak.gov.uk/HWRC target="_blank">Click here to find your local centre </a></p>]]></Message>
<Message EventCode="284-688" Shortdesc="Bin Damaged By Crew"><![CDATA[<p>Unfortunately, our crew reported that they damaged your bin. <br>A replacement has been ordered for you, this will be delivered within the next 10 working days. <br> Food and garden waste should be stored in a suitable container and emptied in to the green lidded bin when your new one is delivered. Or if you prefer, you can take excess to your local household waste and recycling centre. <br><a href=https://www.highpeak.gov.uk/HWRC target="_blank">Click here to find your local centre </a></p>]]></Message>
<Message EventCode="284-580" Shortdesc="Bin Damaged By Crew"><![CDATA[<p>Unfortunately, our crew reported that they damaged your bin. <br>A replacement has been ordered for you, this will be delivered within the next 10 working days. <br> Food and garden waste should be stored in a suitable container and emptied in to the green lidded bin when your new one is delivered. Or if you prefer, you can take excess to your local household waste and recycling centre. <br><a href=https://www.highpeak.gov.uk/HWRC target="_blank">Click here to find your local centre </a></p>]]></Message>
<Message EventCode="284-579" Shortdesc="Bin Damaged By Crew"><![CDATA[<p>Unfortunately, our crew reported that they damaged your bin. A replacement has been ordered for you, this will be delivered within the next 10 working days. </p>]]></Message>
<Message EventCode="284-577" Shortdesc="Bin Damaged By Crew"><![CDATA[<p>Unfortunately, our crew reported that they damaged your bin. A replacement has been ordered for you, this will be delivered within the next 10 working days. </p>]]></Message>
<Message EventCode="284-578" Shortdesc="Bin Damaged By Crew"><![CDATA[<p>Unfortunately, our crew reported that they damaged your bin. A replacement has been ordered for you, this will be delivered within the next 10 working days. </p>]]></Message>
<Message EventCode="284-585" Shortdesc="Bin Damaged By Crew"><![CDATA[<p>Unfortunately, our crew reported that they damaged your bin. A replacement has been ordered for you, this will be delivered within the next 10 working days. </p>]]></Message>
<Message EventCode="284-584" Shortdesc="Bin Damaged By Crew"><![CDATA[<p>Unfortunately, our crew reported that they damaged your bin. A replacement has been ordered for you, this will be delivered within the next 10 working days. </p>]]></Message>
<Message EventCode="284-583" Shortdesc="Bin Damaged By Crew"><![CDATA[<p>Unfortunately, our crew reported that they damaged your bin. A replacement has been ordered for you, this will be delivered within the next 10 working days. </p>]]></Message>
<Message EventCode="284-590" Shortdesc="Bin Damaged By Crew"><![CDATA[<p>Unfortunately, our crew reported that they damaged your bin. A replacement has been ordered for you, this will be delivered within the next 10 working days. </p>]]></Message>
<Message EventCode="284-589" Shortdesc="Bin Damaged By Crew"><![CDATA[<p>Unfortunately, our crew reported that they damaged your bin. A replacement has been ordered for you, this will be delivered within the next 10 working days. </p>]]></Message>
<Message EventCode="284-592" Shortdesc="Bin Damaged By Crew"><![CDATA[<p>Unfortunately, our crew reported that they damaged your bin. A replacement has been ordered for you, this will be delivered within the next 10 working days. </p>]]></Message>
<Message EventCode="284-591" Shortdesc="Bin Damaged By Crew"><![CDATA[<p>Unfortunately, our crew reported that they damaged your bin. A replacement has been ordered for you, this will be delivered within the next 10 working days. </p>]]></Message>
<Message EventCode="284-571" Shortdesc="Bin Damaged By Crew"><![CDATA[<p>Unfortunately, our crew reported that they damaged your bin. A replacement has been ordered for you, this will be delivered within the next 10 working days. </p>]]></Message>
<Message EventCode="284-570" Shortdesc="Bin Damaged By Crew"><![CDATA[<p>Unfortunately, our crew reported that they damaged your bin. A replacement has been ordered for you, this will be delivered within the next 10 working days. </p>]]></Message>
<Message EventCode="284-573" Shortdesc="Bin Damaged By Crew"><![CDATA[<p>Unfortunately, our crew reported that they damaged your bin. A replacement has been ordered for you, this will be delivered within the next 10 working days. </p>]]></Message>
<Message EventCode="284-572" Shortdesc="Bin Damaged By Crew"><![CDATA[<p>Unfortunately, our crew reported that they damaged your bin. A replacement has been ordered for you, this will be delivered within the next 10 working days. </p>]]></Message>
<Message EventCode="268-387" Shortdesc="Bin in Wagon"><![CDATA[<p>Unfortunately, our crew reported that your bin fell into the back of the wagon during collection. <br> A replacement has been ordered for you, this will be delivered in the next 10 working days. <br>You can leave up to 3 sacks of rubbish out for collection on your next black bin day. </p>]]></Message>
<Message EventCode="268-394" Shortdesc="Bin in Wagon"><![CDATA[<p>Unfortunately, our crew reported that your bin fell into the back of the wagon during collection. <br>A replacement has been ordered for you, this will be delivered in the next 10 working days. <br>You can leave up to 3 sacks of rubbish out for collection on your next black bin day. </p>]]></Message>
<Message EventCode="268-400" Shortdesc="Bin in Wagon"><![CDATA[<p>Unfortunately, our crew reported that your bin fell into the back of the wagon during collection. <br>A replacement has been ordered for you, this will be delivered in the next 10 working days. <br>You can leave up to 5 sacks of rubbish out for collection on your next black bin day. </p>]]></Message>
<Message EventCode="268-685" Shortdesc="Bin in Wagon"><![CDATA[<p>Unfortunately, our crew reported that your bin fell into the back of the wagon during collection. <br>A replacement has been ordered for you, this will be delivered in the next 10 working days. <br>You can leave up to 5 sacks of rubbish out for collection on your next black bin day. </p>]]></Message>
<Message EventCode="268-388" Shortdesc="Bin in Wagon"><![CDATA[<p>Unfortunately, our crew reported that your bin fell into the back of the wagon during collection. <br>A replacement has been ordered for you, this will be delivered in the next 10 working days. <br>Items for recycling can be put out in untied carrier bags or a cardboard box so we can see the contents and easily tip them out on your next brown bin day. </p>]]></Message>
<Message EventCode="268-395" Shortdesc="Bin in Wagon"><![CDATA[<p>Unfortunately, our crew reported that your bin fell into the back of the wagon during collection. <br>A replacement has been ordered for you, this will be delivered in the next 10 working days. <br>Items for recycling can be put out in untied carrier bags or a cardboard box so we can see the contents and easily tip them out on your next brown bin day. </p>]]></Message>
<Message EventCode="268-401" Shortdesc="Bin in Wagon"><![CDATA[<p>Unfortunately, our crew reported that your bin fell into the back of the wagon during collection. <br>A replacement has been ordered for you, this will be delivered in the next 10 working days. <br>Items for recycling can be put out in untied carrier bags or a cardboard box so we can see the contents and easily tip them out on your next brown bin day. </p>]]></Message>
<Message EventCode="268-398" Shortdesc="Bin in Wagon"><![CDATA[<p>Unfortunately, our crew reported that your bin fell into the back of the wagon during collection. <br>A replacement has been ordered for you, this will be delivered in the next 10 working days. <br> Food and garden waste should be stored in a suitable container and emptied in to the green lidded bin when your new one is delivered. Or if you prefer, you can take excess to your local household waste and recycling centre. <br><a href=https://www.highpeak.gov.uk/HWRC target="_blank">Click here to find your local centre </a></p>]]></Message>
<Message EventCode="268-686" Shortdesc="Bin in Wagon"><![CDATA[<p>Unfortunately, our crew reported that your bin fell into the back of the wagon during collection. <br>A replacement has been ordered for you, this will be delivered in the next 10 working days. <br> Food and garden waste should be stored in a suitable container and emptied in to the green lidded bin when your new one is delivered. Or if you prefer, you can take excess to your local household waste and recycling centre. <br><a href=https://www.highpeak.gov.uk/HWRC target="_blank">Click here to find your local centre </a></p>]]></Message>
<Message EventCode="268-391" Shortdesc="Bin in Wagon"><![CDATA[<p>Unfortunately, our crew reported that your bin fell into the back of the wagon during collection. <br>A replacement has been ordered for you, this will be delivered in the next 10 working days. <br> Food and garden waste should be stored in a suitable container and emptied in to the green lidded bin when your new one is delivered. Or if you prefer, you can take excess to your local household waste and recycling centre. <br><a href=https://www.highpeak.gov.uk/HWRC target="_blank">Click here to find your local centre </a></p>]]></Message>
<Message EventCode="268-390" Shortdesc="Bin in Wagon"><![CDATA[<p>Unfortunately, our crew reported that your bin fell into the back of the wagon during collection. <br>A replacement has been ordered for you, this will be delivered in the next 10 working days. </p>]]></Message>
<Message EventCode="268-389" Shortdesc="Bin in Wagon"><![CDATA[<p>Unfortunately, our crew reported that your bin fell into the back of the wagon during collection. A replacement has been ordered for you, this will be delivered in the next 10 working days. </p>]]></Message>
<Message EventCode="268-543" Shortdesc="Bin in Wagon"><![CDATA[<p>Unfortunately, our crew reported that your bin fell into the back of the wagon during collection. A replacement has been ordered for you, this will be delivered in the next 10 working days. </p>]]></Message>
<Message EventCode="268-397" Shortdesc="Bin in Wagon"><![CDATA[<p>Unfortunately, our crew reported that your bin fell into the back of the wagon during collection. A replacement has been ordered for you, this will be delivered in the next 10 working days. </p>]]></Message>
<Message EventCode="268-396" Shortdesc="Bin in Wagon"><![CDATA[<p>Unfortunately, our crew reported that your bin fell into the back of the wagon during collection. A replacement has been ordered for you, this will be delivered in the next 10 working days. </p>]]></Message>
<Message EventCode="268-544" Shortdesc="Bin in Wagon"><![CDATA[<p>Unfortunately, our crew reported that your bin fell into the back of the wagon during collection. A replacement has been ordered for you, this will be delivered in the next 10 working days. </p>]]></Message>
<Message EventCode="268-403" Shortdesc="Bin in Wagon"><![CDATA[<p>Unfortunately, our crew reported that your bin fell into the back of the wagon during collection. A replacement has been ordered for you, this will be delivered in the next 10 working days. </p>]]></Message>
<Message EventCode="268-402" Shortdesc="Bin in Wagon"><![CDATA[<p>Unfortunately, our crew reported that your bin fell into the back of the wagon during collection. A replacement has been ordered for you, this will be delivered in the next 10 working days. </p>]]></Message>
<Message EventCode="268-406" Shortdesc="Bin in Wagon"><![CDATA[<p>Unfortunately, our crew reported that your bin fell into the back of the wagon during collection. A replacement has been ordered for you, this will be delivered in the next 10 working days. </p>]]></Message>
<Message EventCode="268-405" Shortdesc="Bin in Wagon"><![CDATA[<p>Unfortunately, our crew reported that your bin fell into the back of the wagon during collection. A replacement has been ordered for you, this will be delivered in the next 10 working days. </p>]]></Message>
<Message EventCode="268-380" Shortdesc="Bin in Wagon"><![CDATA[<p>Unfortunately, our crew reported that your bin fell into the back of the wagon during collection. A replacement has been ordered for you, this will be delivered in the next 10 working days. </p>]]></Message>
<Message EventCode="268-379" Shortdesc="Bin in Wagon"><![CDATA[<p>Unfortunately, our crew reported that your bin fell into the back of the wagon during collection. A replacement has been ordered for you, this will be delivered in the next 10 working days. </p>]]></Message>
<Message EventCode="268-384" Shortdesc="Bin in Wagon"><![CDATA[<p>Unfortunately, our crew reported that your bin fell into the back of the wagon during collection. A replacement has been ordered for you, this will be delivered in the next 10 working days. </p>]]></Message>
<Message EventCode="268-383" Shortdesc="Bin in Wagon"><![CDATA[<p>Unfortunately, our crew reported that your bin fell into the back of the wagon during collection. A replacement has been ordered for you, this will be delivered in the next 10 working days. </p>]]></Message>
</ContainerEvents>
</Mappings>