@worksafevictoria/wcl7.5 1.8.0-beta.1 → 1.8.0-beta.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/utility.js +2 -0
- package/package.json +1 -1
- package/src/components/Common/CardGrid/index.vue +2 -0
- package/src/components/Common/CardGridItem/index.vue +4 -3
- package/src/components/Global/AppHeader/index.vue +194 -284
- package/src/components/Paragraphs/Directory/Asbestos/Records/SingleRecord/index.stories.js +30 -0
- package/src/components/Paragraphs/Directory/Asbestos/Records/SingleRecord/index.vue +182 -0
- package/src/components/Paragraphs/Directory/Asbestos/Records/index.stories.js +19 -0
- package/src/components/Paragraphs/Directory/Asbestos/Records/index.vue +254 -0
- package/src/components/Paragraphs/Directory/HSCP/Records/SingleRecord/index.vue +38 -152
- package/src/components/Paragraphs/Directory/HSCP/Records/SingleRecord/styles.scss +127 -0
- package/src/components/Paragraphs/Directory/HSCP/Records/index.vue +41 -87
- package/src/components/Paragraphs/Directory/HSCP/styles.scss +68 -0
- package/src/components/Paragraphs/Directory/Records/PRS/index.stories.js +2 -2
- package/src/components/Paragraphs/Directory/styles.scss +2 -0
- package/src/components/SubComponents/FormInstance/models/overrides/file.js +2 -1
- package/src/components/SubComponents/Search/SearchListing/index.vue +23 -19
- package/src/components/SubComponents/Search/index.stories.js +2 -1
- package/src/components/SubComponents/Search/index.vue +5 -10
- package/src/index.js +2 -0
- package/src/mock/asbestos-removalists.js +226 -0
- package/src/mock/course-provider.js +33 -19
|
@@ -6,6 +6,7 @@ export class FileFormElement extends BaseFormElement {
|
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
async transformSubmissionValue(value, axios) {
|
|
9
|
+
const apiUrl = this.getFormSettingsMeta().contentApiUrl
|
|
9
10
|
const promises = await Promise.all(
|
|
10
11
|
value.map((file) => {
|
|
11
12
|
const base64Data = file.url.split(',')[1]
|
|
@@ -18,7 +19,7 @@ export class FileFormElement extends BaseFormElement {
|
|
|
18
19
|
const blob = new Blob([byteArray], { type: 'text/plain' })
|
|
19
20
|
|
|
20
21
|
return axios.post(
|
|
21
|
-
|
|
22
|
+
`${apiUrl}/webform_rest/${this.webformElement['#webform']}/upload/${this.webformElement['#webform_key']}`,
|
|
22
23
|
blob,
|
|
23
24
|
{
|
|
24
25
|
headers: {
|
|
@@ -22,8 +22,9 @@
|
|
|
22
22
|
:size="'full'"
|
|
23
23
|
:row-spacing="'none'"
|
|
24
24
|
:no-padding-top="true"
|
|
25
|
-
|
|
26
|
-
@selected
|
|
25
|
+
:google-search-flag="googleSearchFlag"
|
|
26
|
+
@selected="handleSelect"
|
|
27
|
+
@selected-title="handleSelect"
|
|
27
28
|
>
|
|
28
29
|
<template v-slot:cardItem="{ card }">
|
|
29
30
|
<card-grid-item
|
|
@@ -38,6 +39,7 @@
|
|
|
38
39
|
? truncate(card.description, 144)
|
|
39
40
|
: card.htmlSnippet || ''
|
|
40
41
|
"
|
|
42
|
+
:link="card.link ? card.link : false"
|
|
41
43
|
:strip-description-html="true"
|
|
42
44
|
:taxonomies="{
|
|
43
45
|
industry: card.industry,
|
|
@@ -133,6 +135,10 @@ export default {
|
|
|
133
135
|
type: Boolean,
|
|
134
136
|
default: true,
|
|
135
137
|
},
|
|
138
|
+
googleSearchFlag: {
|
|
139
|
+
type: String,
|
|
140
|
+
default: "solar",
|
|
141
|
+
},
|
|
136
142
|
},
|
|
137
143
|
methods: {
|
|
138
144
|
onClickItem(event, item, index) {
|
|
@@ -144,31 +150,29 @@ export default {
|
|
|
144
150
|
}
|
|
145
151
|
return value;
|
|
146
152
|
},
|
|
147
|
-
|
|
153
|
+
handleSelect(card) {
|
|
148
154
|
debugger;
|
|
149
|
-
navigateToPath.call(
|
|
150
|
-
this,
|
|
151
|
-
card?.selectedCard?.link.match(/https?:\/\/[^\/]+(\/[^?#]*)/)[1], // open link in current environment
|
|
152
|
-
card?.ev?.ctrlKey === true || card?.ev?.metaKey === true
|
|
153
|
-
);
|
|
154
|
-
this.$nextTick(() => this.$emit("selected-title"));
|
|
155
155
|
|
|
156
|
-
|
|
157
|
-
|
|
156
|
+
const isSolar = this.googleSearchFlag === "solar";
|
|
157
|
+
const link = card?.selectedCard?.link;
|
|
158
|
+
const openInNewTab = card?.ev?.ctrlKey || card?.ev?.metaKey;
|
|
159
|
+
|
|
160
|
+
// Extract pathname only for solar
|
|
161
|
+
const finalLink = isSolar ? link : link?.match(/https?:\/\/[^\/]+(\/[^?#]*)/)?.[1];
|
|
162
|
+
|
|
163
|
+
if (finalLink) {
|
|
164
|
+
navigateToPath.call(this, finalLink, openInNewTab);
|
|
158
165
|
}
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
card?.selectedCard?.link.match(/https?:\/\/[^\/]+(\/[^?#]*)/)[1], // title click is used for search result, but change also included here
|
|
164
|
-
card?.ev?.ctrlKey === true || card?.ev?.metaKey === true
|
|
165
|
-
);
|
|
166
|
-
this.$nextTick(() => this.$emit("selected"));
|
|
166
|
+
|
|
167
|
+
this.$nextTick(() => {
|
|
168
|
+
this.$emit(isSolar ? "selected" : "selected-title");
|
|
169
|
+
});
|
|
167
170
|
|
|
168
171
|
if (this.$gtm) {
|
|
169
172
|
this.fireGTM(card);
|
|
170
173
|
}
|
|
171
174
|
},
|
|
175
|
+
|
|
172
176
|
fireGTM(card) {
|
|
173
177
|
let attrs = {
|
|
174
178
|
location:
|
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
</div>
|
|
7
7
|
</template>
|
|
8
8
|
<template v-else>
|
|
9
|
-
ELSE :- searchType :- {{ searchType }}
|
|
10
9
|
<b-input-group>
|
|
11
10
|
<label class="visually-hidden" for="site-search"
|
|
12
11
|
>Search by keyword (Typed keyword automatically filters below results)</label
|
|
@@ -18,8 +17,8 @@
|
|
|
18
17
|
aria-label="searchbar"
|
|
19
18
|
autocomplete="off"
|
|
20
19
|
trim
|
|
21
|
-
@update="
|
|
22
|
-
@keyup.enter="
|
|
20
|
+
@update="onChange"
|
|
21
|
+
@keyup.enter="onChange"
|
|
23
22
|
></b-form-input>
|
|
24
23
|
<template #append>
|
|
25
24
|
<b-button size="sm" class="search-button" @click="onSearch"
|
|
@@ -28,7 +27,6 @@
|
|
|
28
27
|
/></b-button>
|
|
29
28
|
</template>
|
|
30
29
|
</b-input-group>
|
|
31
|
-
searchType:- {{ searchType }} <br />
|
|
32
30
|
<search-listing
|
|
33
31
|
v-if="loadSearchList && (searchResults || isLoading)"
|
|
34
32
|
:class="{
|
|
@@ -44,15 +42,15 @@
|
|
|
44
42
|
:offset="searchResults && searchResults.offset"
|
|
45
43
|
:page-limit="pageLimit"
|
|
46
44
|
:content-parser="contentParser"
|
|
47
|
-
:
|
|
48
|
-
:is-
|
|
45
|
+
:google-search-flag="searchType"
|
|
46
|
+
:is-selectable="searchType === 'solar'"
|
|
47
|
+
:is-card-title-selectable="searchType !== 'solar'"
|
|
49
48
|
@selected="$emit('selected')"
|
|
50
49
|
@pageChanged="pageChanged"
|
|
51
50
|
/>
|
|
52
51
|
</template>
|
|
53
52
|
</div>
|
|
54
53
|
</template>
|
|
55
|
-
|
|
56
54
|
<script>
|
|
57
55
|
import axios from "axios";
|
|
58
56
|
import searchIcon from "../../../assets/icons/search.svg?url";
|
|
@@ -236,9 +234,6 @@ export default {
|
|
|
236
234
|
}
|
|
237
235
|
},
|
|
238
236
|
onSearch(e) {
|
|
239
|
-
debugger;
|
|
240
|
-
console.log("this.searchType:- ", this.searchType);
|
|
241
|
-
|
|
242
237
|
const { path } = this.$route || {};
|
|
243
238
|
|
|
244
239
|
// Home page
|
package/src/index.js
CHANGED
|
@@ -31,6 +31,7 @@ import ListGroup from './components/Paragraphs/ListGroup/index.vue'
|
|
|
31
31
|
import ScrollSpy from './components/Paragraphs/ScrollSpy/index.vue'
|
|
32
32
|
import Directory from './components/Paragraphs/Directory/index.vue'
|
|
33
33
|
import HscpDirectory from './components/Paragraphs/Directory/HSCP/Records/index.vue'
|
|
34
|
+
import ArDirectory from './components/Paragraphs/Directory/Asbestos/Records/index.vue'
|
|
34
35
|
import SelectableCards from './components/Paragraphs/SelectableCards/index.vue'
|
|
35
36
|
import VideoMedia from './components/Paragraphs/VideoPlayer/index.vue'
|
|
36
37
|
import VideoGrid from './components/Paragraphs/VideoGrid/index.vue'
|
|
@@ -99,6 +100,7 @@ export {
|
|
|
99
100
|
ScrollSpy,
|
|
100
101
|
Directory,
|
|
101
102
|
HscpDirectory,
|
|
103
|
+
ArDirectory,
|
|
102
104
|
SelectableCards,
|
|
103
105
|
Statistics,
|
|
104
106
|
ProofPoints,
|
|
@@ -0,0 +1,226 @@
|
|
|
1
|
+
export const arData = [
|
|
2
|
+
{
|
|
3
|
+
ResourceName: 'A.D.S. Asbestos Removal Pty Ltd',
|
|
4
|
+
CompanyAddress: '62 Webber Parade',
|
|
5
|
+
AddressLine2: 'KEILOR EAST VIC 3033',
|
|
6
|
+
Phone: '0404073745',
|
|
7
|
+
CompanyMobile: '0404 073 745',
|
|
8
|
+
CompanyEmailDisp: 'ads.asbestos@gmail.com',
|
|
9
|
+
CompanyWebURLDisp: 'www.adsasbestosremoval.com.au',
|
|
10
|
+
ContactFirstName: 'Ivan',
|
|
11
|
+
ContactLastName: 'Silva',
|
|
12
|
+
ContactPhoneDisp: '0404073745',
|
|
13
|
+
ContactEmail: 'ads.asbestos@gmail.com',
|
|
14
|
+
ContactMobileDisp: '1300 064 277',
|
|
15
|
+
ServiceAll: 'Class A - Restricted - Asbestos Removalists',
|
|
16
|
+
ServicesAll: 'removal of any asbestos containing material that was previously non-friable but has become friable as a result of a fire and does not require an enclosure with a negative air unit(s) to perform the work.',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
ResourceName: 'AAA ASBESTOS SOLUTIONS PTY LTD',
|
|
20
|
+
CompanyAddress: '9 Ewens Court',
|
|
21
|
+
AddressLine2: 'MOUNT GAMBIER VIC 5290',
|
|
22
|
+
Phone: '0418 854 443',
|
|
23
|
+
CompanyMobile: '0418 854 443',
|
|
24
|
+
CompanyEmailDisp: 'nieto4@bigpond.net.au',
|
|
25
|
+
CompanyWebURLDisp: '',
|
|
26
|
+
ContactFirstName: 'ERIC',
|
|
27
|
+
ContactLastName: 'NIETO',
|
|
28
|
+
ContactPhoneDisp: '0418 854 443',
|
|
29
|
+
ContactEmail: 'nieto4@bigpond.net.au',
|
|
30
|
+
ContactMobileDisp: '0418 854 443',
|
|
31
|
+
ServiceAll: 'Class B Asbestos Removalists',
|
|
32
|
+
ServicesAll: 'All types of non-friable asbestos containing material (eg. cement sheeting or vinyl tiles)',
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
ResourceName: 'Aaron John Field',
|
|
36
|
+
CompanyAddress: '44 Townsent Street',
|
|
37
|
+
AddressLine2: 'Howlong NSW 2643',
|
|
38
|
+
Phone: '',
|
|
39
|
+
CompanyMobile: '0408474707',
|
|
40
|
+
CompanyEmailDisp: 'azz_317@homail.com',
|
|
41
|
+
CompanyWebURLDisp: '',
|
|
42
|
+
ContactFirstName: 'Aaron',
|
|
43
|
+
ContactLastName: 'Field',
|
|
44
|
+
ContactPhoneDisp: '',
|
|
45
|
+
ContactEmail: 'azz_317@homail.com',
|
|
46
|
+
ContactMobileDisp: '0408474707',
|
|
47
|
+
ServiceAll: 'Class B Asbestos Removalists',
|
|
48
|
+
ServicesAll: 'All types of non-friable asbestos containing material (eg. cement sheeting or vinyl tiles),Telecommunication Asbestos cement pits and pipes',
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
ResourceName: 'Al Baarini Ahmad',
|
|
52
|
+
CompanyAddress: '13 Rudkin Court',
|
|
53
|
+
AddressLine2: 'Hoppers Crossing VIC 3029',
|
|
54
|
+
Phone: '0421 280 732',
|
|
55
|
+
CompanyMobile: '0401 016 565',
|
|
56
|
+
CompanyEmailDisp: 'CITYWIDEDEMOLITION@HOTMAIL.COM',
|
|
57
|
+
CompanyWebURLDisp: 'www.citywidedemolition.com.au',
|
|
58
|
+
ContactFirstName: 'Eman',
|
|
59
|
+
ContactLastName: 'Al Baarini',
|
|
60
|
+
ContactPhoneDisp: '0421 280 732',
|
|
61
|
+
ContactEmail: 'CITYWIDEDEMOLITION@HOTMAIL.COM',
|
|
62
|
+
ContactMobileDisp: '0421 280 732',
|
|
63
|
+
ServiceAll: 'Class B Asbestos Removalists',
|
|
64
|
+
ServicesAll: 'All types of non-friable asbestos containing material (eg. cement sheeting or vinyl tiles)',
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
ResourceName: 'Ashcorp Holdings Pty Ltd',
|
|
68
|
+
CompanyAddress: '17 Rohs Road',
|
|
69
|
+
AddressLine2: 'EAST BENDIGO VIC 3550',
|
|
70
|
+
Phone: '(03) 5444 3261',
|
|
71
|
+
CompanyMobile: '0409 012 780',
|
|
72
|
+
CompanyEmailDisp: 'admin@ashworthdemolition.com.au',
|
|
73
|
+
CompanyWebURLDisp: '',
|
|
74
|
+
ContactFirstName: 'Dean',
|
|
75
|
+
ContactLastName: 'Ashworth',
|
|
76
|
+
ContactPhoneDisp: '(03) 5444 3261',
|
|
77
|
+
ContactEmail: 'info@ashworthdemolition.com.au',
|
|
78
|
+
ContactMobileDisp: '0409012780',
|
|
79
|
+
ServiceAll: 'Class A - Restricted - Asbestos Removalists',
|
|
80
|
+
ServicesAll: 'removal of all types of non-friable asbestos containing material,removal of asbestos containing gaskets and ropes,removal of friable asbestos containing material from soil that does not require an enclosure with negative air unit(s),removal of any asbestos containing material that was previously non-friable but has become friable as a result of a fire,The Licence is restricted to removal of asbestos containing material that does not require an enclosure with a negative air unit(s).'
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
ResourceName: 'Ventia Utility Services Pty Limited',
|
|
84
|
+
CompanyAddress: 'Ventia - Cardinia Building, 25 Lucknow Street',
|
|
85
|
+
AddressLine2: 'MITCHAM VIC 3132',
|
|
86
|
+
Phone: '0438531164',
|
|
87
|
+
CompanyMobile: '',
|
|
88
|
+
CompanyEmailDisp: 'daniel.dehaan@ventia.com',
|
|
89
|
+
CompanyWebURLDisp: 'www.ventia.com.au',
|
|
90
|
+
ContactFirstName: 'Daniel',
|
|
91
|
+
ContactLastName: 'DeHaan',
|
|
92
|
+
ContactPhoneDisp: '0438531164',
|
|
93
|
+
ContactEmail: 'daniel.dehaan@ventia.com',
|
|
94
|
+
ContactMobileDisp: '0438531164',
|
|
95
|
+
ServiceAll: 'Class B - Restricted - Asbestos Removalists',
|
|
96
|
+
ServicesAll: 'Bituminous coal tar coatings,Non-friable Asbestos Cement Water Pipes and Associated Fittings ONLY,Non-friable Asbetos Containing Bituminous Coating on Mild Steel Pipes',
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
ResourceName: 'ONE A.D.S Asbestos Removal Pty Ltd',
|
|
100
|
+
CompanyAddress: '62 Webber Parade',
|
|
101
|
+
AddressLine2: 'KEILOR EAST VIC 3033',
|
|
102
|
+
Phone: '0404073745',
|
|
103
|
+
CompanyMobile: '0404 073 745',
|
|
104
|
+
CompanyEmailDisp: 'ads.asbestos@gmail.com',
|
|
105
|
+
CompanyWebURLDisp: 'http://www.adsasbestosremoval.com.au',
|
|
106
|
+
ContactFirstName: 'Ivan',
|
|
107
|
+
ContactLastName: 'Silva',
|
|
108
|
+
ContactPhoneDisp: '0404073745',
|
|
109
|
+
ContactEmail: 'ads.asbestos@gmail.com',
|
|
110
|
+
ContactMobileDisp: '1300 064 277',
|
|
111
|
+
ServiceAll: 'Class A - Restricted - Asbestos Removalists',
|
|
112
|
+
ServicesAll: 'removal of any asbestos containing material that was previously non-friable but has become friable as a result of a fire and does not require an enclosure with a negative air unit(s) to perform the work.',
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
ResourceName: 'TWO A.D.S Asbestos Removal Pty Ltd',
|
|
116
|
+
CompanyAddress: '62 Webber Parade',
|
|
117
|
+
AddressLine2: 'KEILOR EAST VIC 3033',
|
|
118
|
+
Phone: '0404073745',
|
|
119
|
+
CompanyMobile: '0404 073 745',
|
|
120
|
+
CompanyEmailDisp: 'ads.asbestos@gmail.com',
|
|
121
|
+
CompanyWebURLDisp: 'http://www.adsasbestosremoval.com.au',
|
|
122
|
+
ContactFirstName: 'Ivan',
|
|
123
|
+
ContactLastName: 'Silva',
|
|
124
|
+
ContactPhoneDisp: '0404073745',
|
|
125
|
+
ContactEmail: 'ads.asbestos@gmail.com',
|
|
126
|
+
ContactMobileDisp: '1300 064 277',
|
|
127
|
+
ServiceAll: 'Class A - Restricted - Asbestos Removalists',
|
|
128
|
+
ServicesAll: 'removal of any asbestos containing material that was previously non-friable but has become friable as a result of a fire and does not require an enclosure with a negative air unit(s) to perform the work.',
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
ResourceName: 'Three A.D.S Asbestos Removal Pty Ltd',
|
|
132
|
+
CompanyAddress: '62 Webber Parade',
|
|
133
|
+
AddressLine2: 'KEILOR EAST VIC 3033',
|
|
134
|
+
Phone: '0404073745',
|
|
135
|
+
CompanyMobile: '0404 073 745',
|
|
136
|
+
CompanyEmailDisp: 'ads.asbestos@gmail.com',
|
|
137
|
+
CompanyWebURLDisp: 'http://www.adsasbestosremoval.com.au',
|
|
138
|
+
ContactFirstName: 'Ivan',
|
|
139
|
+
ContactLastName: 'Silva',
|
|
140
|
+
ContactPhoneDisp: '0404073745',
|
|
141
|
+
ContactEmail: 'ads.asbestos@gmail.com',
|
|
142
|
+
ContactMobileDisp: '1300 064 277',
|
|
143
|
+
ServiceAll: 'Class A - Restricted - Asbestos Removalists',
|
|
144
|
+
ServicesAll: 'removal of any asbestos containing material that was previously non-friable but has become friable as a result of a fire and does not require an enclosure with a negative air unit(s) to perform the work.',
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
ResourceName: 'FOUR A.D.S Asbestos Removal Pty Ltd',
|
|
148
|
+
CompanyAddress: '62 Webber Parade',
|
|
149
|
+
AddressLine2: 'KEILOR EAST VIC 3033',
|
|
150
|
+
Phone: '0404073745',
|
|
151
|
+
CompanyMobile: '0404 073 745',
|
|
152
|
+
CompanyEmailDisp: 'ads.asbestos@gmail.com',
|
|
153
|
+
CompanyWebURLDisp: 'http://www.adsasbestosremoval.com.au',
|
|
154
|
+
ContactFirstName: 'Ivan',
|
|
155
|
+
ContactLastName: 'Silva',
|
|
156
|
+
ContactPhoneDisp: '0404073745',
|
|
157
|
+
ContactEmail: 'ads.asbestos@gmail.com',
|
|
158
|
+
ContactMobileDisp: '1300 064 277',
|
|
159
|
+
ServiceAll: 'Class A - Restricted - Asbestos Removalists',
|
|
160
|
+
ServicesAll: 'removal of any asbestos containing material that was previously non-friable but has become friable as a result of a fire and does not require an enclosure with a negative air unit(s) to perform the work.',
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
ResourceName: 'Five A.D.S Asbestos Removal Pty Ltd',
|
|
164
|
+
CompanyAddress: '62 Webber Parade',
|
|
165
|
+
AddressLine2: 'KEILOR EAST VIC 3033',
|
|
166
|
+
Phone: '0404073745',
|
|
167
|
+
CompanyMobile: '0404 073 745',
|
|
168
|
+
CompanyEmailDisp: 'ads.asbestos@gmail.com',
|
|
169
|
+
CompanyWebURLDisp: 'http://www.adsasbestosremoval.com.au',
|
|
170
|
+
ContactFirstName: 'Ivan',
|
|
171
|
+
ContactLastName: 'Silva',
|
|
172
|
+
ContactPhoneDisp: '0404073745',
|
|
173
|
+
ContactEmail: 'ads.asbestos@gmail.com',
|
|
174
|
+
ContactMobileDisp: '1300 064 277',
|
|
175
|
+
ServiceAll: 'Class A - Restricted - Asbestos Removalists',
|
|
176
|
+
ServicesAll: 'removal of any asbestos containing material that was previously non-friable but has become friable as a result of a fire and does not require an enclosure with a negative air unit(s) to perform the work.',
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
ResourceName: 'SIX A.D.S Asbestos Removal Pty Ltd',
|
|
180
|
+
CompanyAddress: '62 Webber Parade',
|
|
181
|
+
AddressLine2: 'KEILOR EAST VIC 3033',
|
|
182
|
+
Phone: '0404073745',
|
|
183
|
+
CompanyMobile: '0404 073 745',
|
|
184
|
+
CompanyEmailDisp: 'ads.asbestos@gmail.com',
|
|
185
|
+
CompanyWebURLDisp: 'http://www.adsasbestosremoval.com.au',
|
|
186
|
+
ContactFirstName: 'Ivan',
|
|
187
|
+
ContactLastName: 'Silva',
|
|
188
|
+
ContactPhoneDisp: '0404073745',
|
|
189
|
+
ContactEmail: 'ads.asbestos@gmail.com',
|
|
190
|
+
ContactMobileDisp: '1300 064 277',
|
|
191
|
+
ServiceAll: 'Class A - Restricted - Asbestos Removalists',
|
|
192
|
+
ServicesAll: 'removal of any asbestos containing material that was previously non-friable but has become friable as a result of a fire and does not require an enclosure with a negative air unit(s) to perform the work.',
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
ResourceName: 'SSM Asbestos Removal Pty Ltd',
|
|
196
|
+
CompanyAddress: '90 Marriage Lane',
|
|
197
|
+
AddressLine2: 'HILLSIDE VIC 3875',
|
|
198
|
+
Phone: '0405 083 197',
|
|
199
|
+
CompanyMobile: '0405 083 197',
|
|
200
|
+
CompanyEmailDisp: 'steve@ssmasbestos.com.au',
|
|
201
|
+
CompanyWebURLDisp: 'www.ssm-asbestosremoval.com',
|
|
202
|
+
ContactFirstName: 'Steven',
|
|
203
|
+
ContactLastName: 'McCarthy',
|
|
204
|
+
ContactPhoneDisp: '0405 083 197',
|
|
205
|
+
ContactEmail: 'steve@ssmasbestos.com.au',
|
|
206
|
+
ContactMobileDisp: '0405 083 197',
|
|
207
|
+
ServiceAll: 'Class A Asbestos Removalists',
|
|
208
|
+
ServicesAll: 'All types of Asbestos containing material (friable & non-friable)',
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
ResourceName: 'Golden Plains Asbestos PTY LTD',
|
|
212
|
+
CompanyAddress: '165 Grevillea Drive',
|
|
213
|
+
AddressLine2: 'ENFIELD VIC 3352',
|
|
214
|
+
Phone: '0450582103',
|
|
215
|
+
CompanyMobile: '0450582103',
|
|
216
|
+
CompanyEmailDisp: 'gpasbestos@outlook.com',
|
|
217
|
+
CompanyWebURLDisp: '',
|
|
218
|
+
ContactFirstName: 'Carlos',
|
|
219
|
+
ContactLastName: 'Rios',
|
|
220
|
+
ContactPhoneDisp: '0450582103',
|
|
221
|
+
ContactEmail: 'gpasbestos@outlook.com',
|
|
222
|
+
ContactMobileDisp: '0450582103',
|
|
223
|
+
ServiceAll: 'Class A Asbestos Removalists',
|
|
224
|
+
ServicesAll: 'All types of Asbestos containing material (friable & non-friable)',
|
|
225
|
+
}
|
|
226
|
+
]
|
|
@@ -14,9 +14,9 @@ export const hscpData = [
|
|
|
14
14
|
Contact_2_Name: 'Joey Bradford',
|
|
15
15
|
Contact_2_Phone: '03 9555 0666',
|
|
16
16
|
Contact_2_Email: 'jbradford@test.com.au',
|
|
17
|
-
Training_courses: 'HSR initial, HSR refresher',
|
|
17
|
+
Training_courses: 'HSR initial, HSR refresher - Hazardous Manual Handling Occupational Violence and Aggression Consultation',
|
|
18
18
|
Training_venues: 'Melbourne CBD, All Regional Victoria - HQ in Melbourne',
|
|
19
|
-
|
|
19
|
+
Themes: 'General, Hazardous Manual Handling Occupational Violence and Aggression Consultation',
|
|
20
20
|
},
|
|
21
21
|
{
|
|
22
22
|
type: 'hscp',
|
|
@@ -33,8 +33,9 @@ export const hscpData = [
|
|
|
33
33
|
Contact_2_Name: '',
|
|
34
34
|
Contact_2_Email: '',
|
|
35
35
|
Contact_2_Phone: '',
|
|
36
|
-
Training_courses: 'HSR initial, HSR refresher - Plant, HSR refresher - Work-related stress',
|
|
37
|
-
Training_venues: 'Cranbourne, Berwick, Mornington Peninsula'
|
|
36
|
+
Training_courses: 'HSR initial, HSR refresher - Plant, HSR refresher - Work-related stress, HSR Refresher - Work related violence health sector, HSR refresher - Work-related violence',
|
|
37
|
+
Training_venues: 'Cranbourne, Berwick, Mornington Peninsula',
|
|
38
|
+
Themes: 'General, Work related violence health sector, Plant, Work-related stress, Work-related violence',
|
|
38
39
|
},
|
|
39
40
|
{
|
|
40
41
|
type: 'hscp',
|
|
@@ -51,8 +52,9 @@ export const hscpData = [
|
|
|
51
52
|
Contact_2_Name: '',
|
|
52
53
|
Contact_2_Email: '',
|
|
53
54
|
Contact_2_Phone: '',
|
|
54
|
-
Training_courses: 'HSR initial, HSR refresher - Plant, HSR refresher - Work-related
|
|
55
|
-
Training_venues: 'Melbourne CBD'
|
|
55
|
+
Training_courses: 'HSR initial, HSR refresher - Plant, HSR refresher - Work-related violence',
|
|
56
|
+
Training_venues: 'Melbourne CBD',
|
|
57
|
+
Themes: 'General, Plant, Work-related violence',
|
|
56
58
|
},
|
|
57
59
|
{
|
|
58
60
|
type: 'hscp',
|
|
@@ -69,8 +71,9 @@ export const hscpData = [
|
|
|
69
71
|
Contact_2_Name: 'Leeanne Lyme',
|
|
70
72
|
Contact_2_Email: 'leeanne.lyme@aigroup.com.au',
|
|
71
73
|
Contact_2_Phone: '02 4925 8310',
|
|
72
|
-
Training_courses: 'HSR
|
|
73
|
-
Training_venues: 'Melbourne'
|
|
74
|
+
Training_courses: 'HSR initial, HSR refresher - Work-related violence, HSR refresher - Plant, HSR refresher - Work-related stress',
|
|
75
|
+
Training_venues: 'Melbourne',
|
|
76
|
+
Themes: 'General, Work-related violence, Plant, Work-related stress',
|
|
74
77
|
},
|
|
75
78
|
{
|
|
76
79
|
type: 'hscp',
|
|
@@ -87,8 +90,9 @@ export const hscpData = [
|
|
|
87
90
|
Contact_2_Name: '',
|
|
88
91
|
Contact_2_Email: '',
|
|
89
92
|
Contact_2_Phone: '',
|
|
90
|
-
Training_courses: 'HSR initial, HSR refresher',
|
|
93
|
+
Training_courses: 'HSR initial, HSR refresher - Work-related violence, HSR Refresh - Plant, HSR Refresher - Work-related stress',
|
|
91
94
|
Training_venues: '',
|
|
95
|
+
Themes: 'General, Work-related violence, Plant, Work-related stress',
|
|
92
96
|
},
|
|
93
97
|
{
|
|
94
98
|
type: 'hscp',
|
|
@@ -105,8 +109,9 @@ export const hscpData = [
|
|
|
105
109
|
Contact_2_Name: '',
|
|
106
110
|
Contact_2_Email: '',
|
|
107
111
|
Contact_2_Phone: '',
|
|
108
|
-
Training_courses: 'HSR initial, HSR refresher',
|
|
112
|
+
Training_courses: 'HSR initial, HSR refresher - Work-related violence, HSR Refresh - Plant, HSR Refresher - Work-related stress',
|
|
109
113
|
Training_venues: '',
|
|
114
|
+
Themes: 'General, Work-related violence, Plant, Work-related stress',
|
|
110
115
|
},
|
|
111
116
|
{
|
|
112
117
|
type: 'hscp',
|
|
@@ -123,8 +128,9 @@ export const hscpData = [
|
|
|
123
128
|
Contact_2_Name: '',
|
|
124
129
|
Contact_2_Email: '',
|
|
125
130
|
Contact_2_Phone: '',
|
|
126
|
-
Training_courses: 'HSR initial, HSR refresher',
|
|
131
|
+
Training_courses: 'HSR initial, HSR refresher - Work-related violence, HSR Refresh - Plant, HSR Refresher - Work-related stress',
|
|
127
132
|
Training_venues: '',
|
|
133
|
+
Themes: 'General, Work-related violence, Plant, Work-related stress',
|
|
128
134
|
},
|
|
129
135
|
{
|
|
130
136
|
type: 'hscp',
|
|
@@ -141,8 +147,9 @@ export const hscpData = [
|
|
|
141
147
|
Contact_2_Name: '',
|
|
142
148
|
Contact_2_Email: '',
|
|
143
149
|
Contact_2_Phone: '',
|
|
144
|
-
Training_courses: 'HSR initial, HSR refresher',
|
|
150
|
+
Training_courses: 'HSR initial, HSR refresher - Work-related violence, HSR Refresh - Plant, HSR Refresher - Work-related stress',
|
|
145
151
|
Training_venues: '',
|
|
152
|
+
Themes: 'General, Work-related violence, Plant, Work-related stress',
|
|
146
153
|
},
|
|
147
154
|
{
|
|
148
155
|
type: 'hscp',
|
|
@@ -159,8 +166,9 @@ export const hscpData = [
|
|
|
159
166
|
Contact_2_Name: '',
|
|
160
167
|
Contact_2_Email: '',
|
|
161
168
|
Contact_2_Phone: '',
|
|
162
|
-
Training_courses: 'HSR initial, HSR refresher',
|
|
169
|
+
Training_courses: 'HSR initial, HSR refresher - Work-related violence, HSR Refresh - Plant, HSR Refresher - Work-related stress',
|
|
163
170
|
Training_venues: '',
|
|
171
|
+
Themes: 'General, Work-related violence, Plant, Work-related stress',
|
|
164
172
|
},
|
|
165
173
|
{
|
|
166
174
|
type: 'hscp',
|
|
@@ -177,8 +185,9 @@ export const hscpData = [
|
|
|
177
185
|
Contact_2_Name: '',
|
|
178
186
|
Contact_2_Email: '',
|
|
179
187
|
Contact_2_Phone: '',
|
|
180
|
-
Training_courses: 'HSR initial, HSR refresher',
|
|
188
|
+
Training_courses: 'HSR initial, HSR refresher - Work-related violence, HSR Refresh - Plant, HSR Refresher - Work-related stress',
|
|
181
189
|
Training_venues: '',
|
|
190
|
+
Themes: 'General, Work-related violence, Plant, Work-related stress',
|
|
182
191
|
},
|
|
183
192
|
{
|
|
184
193
|
type: 'hscp',
|
|
@@ -195,8 +204,9 @@ export const hscpData = [
|
|
|
195
204
|
Contact_2_Name: '',
|
|
196
205
|
Contact_2_Email: '',
|
|
197
206
|
Contact_2_Phone: '',
|
|
198
|
-
Training_courses: 'HSR initial, HSR refresher',
|
|
207
|
+
Training_courses: 'HSR initial, HSR refresher - Work-related violence, HSR Refresh - Plant, HSR Refresher - Work-related stress',
|
|
199
208
|
Training_venues: '',
|
|
209
|
+
Themes: 'General, Work-related violence, Plant, Work-related stress',
|
|
200
210
|
},
|
|
201
211
|
{
|
|
202
212
|
type: 'hscp',
|
|
@@ -213,8 +223,9 @@ export const hscpData = [
|
|
|
213
223
|
Contact_2_Name: '',
|
|
214
224
|
Contact_2_Email: '',
|
|
215
225
|
Contact_2_Phone: '',
|
|
216
|
-
Training_courses: 'HSR initial, HSR refresher',
|
|
226
|
+
Training_courses: 'HSR initial, HSR refresher - Work-related violence, HSR Refresh - Plant, HSR Refresher - Work-related stress',
|
|
217
227
|
Training_venues: '',
|
|
228
|
+
Themes: 'General, Work-related violence, Plant, Work-related stress',
|
|
218
229
|
},
|
|
219
230
|
{
|
|
220
231
|
type: 'hscp',
|
|
@@ -231,8 +242,9 @@ export const hscpData = [
|
|
|
231
242
|
Contact_2_Name: '',
|
|
232
243
|
Contact_2_Email: '',
|
|
233
244
|
Contact_2_Phone: '',
|
|
234
|
-
Training_courses: 'HSR initial, HSR refresher',
|
|
245
|
+
Training_courses: 'HSR initial, HSR refresher - Work-related violence, HSR Refresh - Plant, HSR Refresher - Work-related stress',
|
|
235
246
|
Training_venues: '',
|
|
247
|
+
Themes: 'General, Work-related violence, Plant, Work-related stress',
|
|
236
248
|
},
|
|
237
249
|
{
|
|
238
250
|
type: 'hscp',
|
|
@@ -249,8 +261,9 @@ export const hscpData = [
|
|
|
249
261
|
Contact_2_Name: '',
|
|
250
262
|
Contact_2_Email: '',
|
|
251
263
|
Contact_2_Phone: '',
|
|
252
|
-
Training_courses: 'HSR initial, HSR refresher',
|
|
264
|
+
Training_courses: 'HSR initial, HSR refresher - Work-related violence, HSR Refresh - Plant, HSR Refresher - Work-related stress',
|
|
253
265
|
Training_venues: '',
|
|
266
|
+
Themes: 'General, Work-related violence, Plant, Work-related stress',
|
|
254
267
|
},
|
|
255
268
|
{
|
|
256
269
|
type: 'hscp',
|
|
@@ -267,7 +280,8 @@ export const hscpData = [
|
|
|
267
280
|
Contact_2_Name: '',
|
|
268
281
|
Contact_2_Email: '',
|
|
269
282
|
Contact_2_Phone: '',
|
|
270
|
-
Training_courses: 'HSR initial, HSR refresher',
|
|
283
|
+
Training_courses: 'HSR initial, HSR refresher - Work-related violence, HSR Refresh - Plant, HSR Refresher - Work-related stress',
|
|
271
284
|
Training_venues: '',
|
|
285
|
+
Themes: 'General, Work-related violence, Plant, Work-related stress',
|
|
272
286
|
}
|
|
273
287
|
]
|