added new sector

This commit is contained in:
piratefinn 2017-12-18 16:20:31 +00:00
parent b8fcedaf09
commit 13d84905b8
4 changed files with 6 additions and 1 deletions

View file

@ -7,6 +7,7 @@
* Added local purchase pie chart for customer dashboard * Added local purchase pie chart for customer dashboard
* Added week by week purchase list for customer dashboard * Added week by week purchase list for customer dashboard
* Added sector purchase amount list for customer dashboard * Added sector purchase amount list for customer dashboard
* Added sector U to available ones
# v0.0.7 # v0.0.7

View file

@ -106,6 +106,7 @@
<option value='R'>Arts, Entertainment & Recreation</option> <option value='R'>Arts, Entertainment & Recreation</option>
<option value='S'>Other Service Activities</option> <option value='S'>Other Service Activities</option>
<option value='T'>Household Domestic Business</option> <option value='T'>Household Domestic Business</option>
<option value='U'>Extraterritorial Organisations and Bodies</option>
</select> </select>
</div> </div>

View file

@ -99,6 +99,7 @@
<option value='R'>Arts, Entertainment & Recreation</option> <option value='R'>Arts, Entertainment & Recreation</option>
<option value='S'>Other Service Activities</option> <option value='S'>Other Service Activities</option>
<option value='T'>Household Domestic Business</option> <option value='T'>Household Domestic Business</option>
<option value='U'>Extraterritorial Organisations and Bodies</option>
</select> </select>
<span class="help-block">Alter this if your business sector has changed.</span> <span class="help-block">Alter this if your business sector has changed.</span>
</div> </div>

View file

@ -51,6 +51,7 @@ export class DashboardCustomerComponent implements OnInit {
R: 'Arts, Entertainment & Recreation', R: 'Arts, Entertainment & Recreation',
S: 'Other Service Activities', S: 'Other Service Activities',
T: 'Household Domestic Business', T: 'Household Domestic Business',
U: 'Extraterritorial Organisations and Bodies'
} }
sectorIcons = { sectorIcons = {
@ -63,7 +64,7 @@ export class DashboardCustomerComponent implements OnInit {
G: 'icon-tag', G: 'icon-tag',
H: 'icon-speedometer', H: 'icon-speedometer',
I: 'icon-cup', I: 'icon-cup',
J: 'icon-globe', J: 'icon-feed',
K: 'icon-credit-card', K: 'icon-credit-card',
L: 'icon-graph', L: 'icon-graph',
M: 'icon-chemistry', M: 'icon-chemistry',
@ -74,6 +75,7 @@ export class DashboardCustomerComponent implements OnInit {
R: 'icon-film', R: 'icon-film',
S: 'icon-calendar', S: 'icon-calendar',
T: 'icon-home', T: 'icon-home',
U: 'cion-globe',
} }
sectorLetters: string[] = []; sectorLetters: string[] = [];