@aclymatepackages/modules 4.0.1 → 4.1.0
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.
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
require("core-js/modules/es.weak-map.js");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports.default = void 0;
|
|
8
|
+
require("core-js/modules/web.dom-collections.iterator.js");
|
|
9
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
10
|
+
var _material = require("@mui/material");
|
|
11
|
+
var _Edit = _interopRequireDefault(require("@mui/icons-material/Edit"));
|
|
12
|
+
var _arrayImmutabilityHelpers = require("@aclymatepackages/array-immutability-helpers");
|
|
13
|
+
var _atoms = require("@aclymatepackages/atoms");
|
|
14
|
+
var _modules = require("@aclymatepackages/modules");
|
|
15
|
+
var _regExp = require("@aclymatepackages/reg-exp");
|
|
16
|
+
var _googleMaps = _interopRequireDefault(require("@aclymatepackages/google-maps"));
|
|
17
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
18
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
19
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
20
|
+
const CompanyDataConfirmation = _ref => {
|
|
21
|
+
let {
|
|
22
|
+
companyData,
|
|
23
|
+
onConfirmClick
|
|
24
|
+
} = _ref;
|
|
25
|
+
const {
|
|
26
|
+
address: existingAddress
|
|
27
|
+
} = companyData || {};
|
|
28
|
+
const {
|
|
29
|
+
coordinates: existingCoordinates
|
|
30
|
+
} = existingAddress || {};
|
|
31
|
+
const [anchorEl, setAnchorEl] = (0, _react.useState)(null);
|
|
32
|
+
const [modifyCompanyData, setModifyCompanyData] = (0, _react.useState)(companyData);
|
|
33
|
+
const {
|
|
34
|
+
address = null,
|
|
35
|
+
industry,
|
|
36
|
+
employeeCount,
|
|
37
|
+
isRemote = false,
|
|
38
|
+
name
|
|
39
|
+
} = modifyCompanyData || {};
|
|
40
|
+
const {
|
|
41
|
+
coordinates
|
|
42
|
+
} = address || {};
|
|
43
|
+
const {
|
|
44
|
+
lat,
|
|
45
|
+
lng
|
|
46
|
+
} = coordinates || {};
|
|
47
|
+
const editCompanyData = field => value => (0, _arrayImmutabilityHelpers.editObjectData)(setModifyCompanyData, field, value);
|
|
48
|
+
const placesAutocompleteInput = !existingCoordinates ? [/*#__PURE__*/_react.default.createElement(_modules.PlacesAutocomplete, {
|
|
49
|
+
place: address,
|
|
50
|
+
editPlace: editCompanyData("address"),
|
|
51
|
+
label: "Edit your company address"
|
|
52
|
+
})] : [];
|
|
53
|
+
const inputs = [...placesAutocompleteInput, /*#__PURE__*/_react.default.createElement(_atoms.TextField, {
|
|
54
|
+
label: "How many employees do you have?",
|
|
55
|
+
value: employeeCount,
|
|
56
|
+
setValue: editCompanyData("employeeCount"),
|
|
57
|
+
error: employeeCount && !(0, _regExp.numbersRegExpTest)(employeeCount)
|
|
58
|
+
}), /*#__PURE__*/_react.default.createElement(_modules.IndustryAutocomplete, {
|
|
59
|
+
industry: industry,
|
|
60
|
+
setIndustry: editCompanyData("industry"),
|
|
61
|
+
helperText: "We'll use this to estimate your emissions and benchmark to other similar companies"
|
|
62
|
+
}), /*#__PURE__*/_react.default.createElement(_modules.YesNoQuestion, {
|
|
63
|
+
question: "Does your company only work remotely?",
|
|
64
|
+
value: isRemote,
|
|
65
|
+
setValue: editCompanyData("isRemote"),
|
|
66
|
+
lightBackground: true
|
|
67
|
+
})];
|
|
68
|
+
return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, !!anchorEl && /*#__PURE__*/_react.default.createElement(_material.Menu, {
|
|
69
|
+
anchorEl: anchorEl,
|
|
70
|
+
open: !!anchorEl,
|
|
71
|
+
anchorOrigin: {
|
|
72
|
+
vertical: "top",
|
|
73
|
+
horizontal: "right"
|
|
74
|
+
},
|
|
75
|
+
transformOrigin: {
|
|
76
|
+
vertical: "top",
|
|
77
|
+
horizontal: "right"
|
|
78
|
+
}
|
|
79
|
+
}, /*#__PURE__*/_react.default.createElement(_material.Box, {
|
|
80
|
+
p: 1,
|
|
81
|
+
style: {
|
|
82
|
+
width: "350px"
|
|
83
|
+
}
|
|
84
|
+
}, /*#__PURE__*/_react.default.createElement(_modules.PlacesAutocomplete, {
|
|
85
|
+
place: address,
|
|
86
|
+
editPlace: place => {
|
|
87
|
+
editCompanyData("address")(place);
|
|
88
|
+
return setAnchorEl(null);
|
|
89
|
+
},
|
|
90
|
+
label: "Edit your company address"
|
|
91
|
+
}))), /*#__PURE__*/_react.default.createElement(_material.Grid, {
|
|
92
|
+
container: true,
|
|
93
|
+
direction: "column",
|
|
94
|
+
spacing: 2
|
|
95
|
+
}, /*#__PURE__*/_react.default.createElement(_material.Grid, {
|
|
96
|
+
item: true
|
|
97
|
+
}, /*#__PURE__*/_react.default.createElement(_material.Typography, {
|
|
98
|
+
variant: "h4",
|
|
99
|
+
color: "textPrimary",
|
|
100
|
+
align: "center"
|
|
101
|
+
}, "Please check and fill in some basic information about ", name)), /*#__PURE__*/_react.default.createElement(_material.Grid, {
|
|
102
|
+
item: true,
|
|
103
|
+
container: true,
|
|
104
|
+
spacing: 2,
|
|
105
|
+
justifyContent: "center"
|
|
106
|
+
}, existingCoordinates && /*#__PURE__*/_react.default.createElement(_material.Grid, {
|
|
107
|
+
item: true,
|
|
108
|
+
xs: 5
|
|
109
|
+
}, /*#__PURE__*/_react.default.createElement(_material.Box, {
|
|
110
|
+
position: "relative"
|
|
111
|
+
}, /*#__PURE__*/_react.default.createElement(_googleMaps.default, {
|
|
112
|
+
height: "225px",
|
|
113
|
+
markers: [{
|
|
114
|
+
latLng: {
|
|
115
|
+
y: lng,
|
|
116
|
+
x: lat
|
|
117
|
+
}
|
|
118
|
+
}],
|
|
119
|
+
zoom: 13
|
|
120
|
+
}), /*#__PURE__*/_react.default.createElement(_material.Box, {
|
|
121
|
+
style: {
|
|
122
|
+
position: "absolute",
|
|
123
|
+
top: 0,
|
|
124
|
+
right: 0
|
|
125
|
+
}
|
|
126
|
+
}, /*#__PURE__*/_react.default.createElement(_material.Tooltip, {
|
|
127
|
+
title: "Edit your company address"
|
|
128
|
+
}, /*#__PURE__*/_react.default.createElement(_material.IconButton, {
|
|
129
|
+
onClick: e => setAnchorEl(e.currentTarget)
|
|
130
|
+
}, /*#__PURE__*/_react.default.createElement(_Edit.default, null)))))), /*#__PURE__*/_react.default.createElement(_material.Grid, {
|
|
131
|
+
item: true,
|
|
132
|
+
xs: 7
|
|
133
|
+
}, /*#__PURE__*/_react.default.createElement(_material.Grid, {
|
|
134
|
+
container: true,
|
|
135
|
+
direction: "column",
|
|
136
|
+
spacing: 2
|
|
137
|
+
}, inputs.map((input, index) => /*#__PURE__*/_react.default.createElement(_material.Grid, {
|
|
138
|
+
item: true,
|
|
139
|
+
key: "input-".concat(index)
|
|
140
|
+
}, input))))), /*#__PURE__*/_react.default.createElement(_material.Grid, {
|
|
141
|
+
item: true,
|
|
142
|
+
container: true,
|
|
143
|
+
justifyContent: "center"
|
|
144
|
+
}, /*#__PURE__*/_react.default.createElement(_material.Grid, {
|
|
145
|
+
item: true
|
|
146
|
+
}, /*#__PURE__*/_react.default.createElement(_material.Button, {
|
|
147
|
+
disabled: !employeeCount || !(0, _regExp.numbersRegExpTest)(employeeCount) || !industry || !address,
|
|
148
|
+
color: "primary",
|
|
149
|
+
variant: "contained",
|
|
150
|
+
onClick: () => onConfirmClick(modifyCompanyData)
|
|
151
|
+
}, "Confirm")))));
|
|
152
|
+
};
|
|
153
|
+
var _default = exports.default = CompanyDataConfirmation;
|
|
@@ -10,6 +10,7 @@ var _react = require("react");
|
|
|
10
10
|
var _material = require("@mui/material");
|
|
11
11
|
var _Search = _interopRequireDefault(require("@mui/icons-material/Search"));
|
|
12
12
|
var _atoms = require("@aclymatepackages/atoms");
|
|
13
|
+
var _fetchAclymateApi = _interopRequireDefault(require("@aclymatepackages/fetch-aclymate-api"));
|
|
13
14
|
var _themes = require("@aclymatepackages/themes");
|
|
14
15
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
15
16
|
const DbCompanySelect = _ref => {
|
|
@@ -30,7 +31,19 @@ const DbCompanySelect = _ref => {
|
|
|
30
31
|
const [selectedCompany, setSelectedCompany] = (0, _react.useState)(null);
|
|
31
32
|
const fetchMatchingCompanies = async () => {
|
|
32
33
|
setPdlFetchLoading(true);
|
|
33
|
-
const matchingCompanies = await
|
|
34
|
+
const matchingCompanies = await (0, _fetchAclymateApi.default)({
|
|
35
|
+
path: "/onboarding/query-matching-companies",
|
|
36
|
+
method: "POST",
|
|
37
|
+
data: {
|
|
38
|
+
name: inputValue
|
|
39
|
+
},
|
|
40
|
+
callback: _ref2 => {
|
|
41
|
+
let {
|
|
42
|
+
matchingCompanies
|
|
43
|
+
} = _ref2;
|
|
44
|
+
return matchingCompanies;
|
|
45
|
+
}
|
|
46
|
+
});
|
|
34
47
|
setPdlFetchLoading(false);
|
|
35
48
|
setMatchingCompanies(matchingCompanies);
|
|
36
49
|
return setInputComplete(true);
|
|
@@ -57,10 +70,10 @@ const DbCompanySelect = _ref => {
|
|
|
57
70
|
label: label,
|
|
58
71
|
value: inputValue,
|
|
59
72
|
setValue: setInputValue,
|
|
60
|
-
onKeyPress:
|
|
73
|
+
onKeyPress: _ref3 => {
|
|
61
74
|
let {
|
|
62
75
|
key
|
|
63
|
-
} =
|
|
76
|
+
} = _ref3;
|
|
64
77
|
if (key === "Enter") {
|
|
65
78
|
return fetchMatchingCompanies();
|
|
66
79
|
}
|
package/dist/index.js
CHANGED
|
@@ -9,6 +9,12 @@ Object.defineProperty(exports, "AccountingChart", {
|
|
|
9
9
|
return _AccountingChart.default;
|
|
10
10
|
}
|
|
11
11
|
});
|
|
12
|
+
Object.defineProperty(exports, "CompanyDataConfirmation", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function get() {
|
|
15
|
+
return _CompanyDataConfirmation.default;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
12
18
|
Object.defineProperty(exports, "CompanyOnboardingInput", {
|
|
13
19
|
enumerable: true,
|
|
14
20
|
get: function get() {
|
|
@@ -94,4 +100,5 @@ var _EmissionsPieChart = _interopRequireDefault(require("./components/EmissionsP
|
|
|
94
100
|
var _useChartWarningLabels = _interopRequireDefault(require("./components/useChartWarningLabels"));
|
|
95
101
|
var _EmissionsSummarySentence = _interopRequireDefault(require("./components/EmissionsSummarySentence"));
|
|
96
102
|
var _DbCompanySelect = _interopRequireDefault(require("./components/DbCompanySelect"));
|
|
103
|
+
var _CompanyDataConfirmation = _interopRequireDefault(require("./components/CompanyDataConfirmation"));
|
|
97
104
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aclymatepackages/modules",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"description": "Aclymate modules",
|
|
5
5
|
"author": "William Loopesko",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"@aclymatepackages/converters": "^1.0.0",
|
|
12
12
|
"@aclymatepackages/fetch-aclymate-api": "^1.0.0",
|
|
13
13
|
"@aclymatepackages/formatters": "^1.0.0",
|
|
14
|
+
"@aclymatepackages/google-maps": "^1.0.5",
|
|
14
15
|
"@aclymatepackages/lists": "^1.4.14",
|
|
15
16
|
"@aclymatepackages/multi-part-form": "^2.0.1",
|
|
16
17
|
"@aclymatepackages/other-helpers": "^1.0.9",
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
import { useState } from "react";
|
|
4
|
+
|
|
5
|
+
import {
|
|
6
|
+
Box,
|
|
7
|
+
Grid,
|
|
8
|
+
Typography,
|
|
9
|
+
Button,
|
|
10
|
+
IconButton,
|
|
11
|
+
Menu,
|
|
12
|
+
Tooltip,
|
|
13
|
+
} from "@mui/material";
|
|
14
|
+
import EditIcon from "@mui/icons-material/Edit";
|
|
15
|
+
|
|
16
|
+
import { editObjectData } from "@aclymatepackages/array-immutability-helpers";
|
|
17
|
+
import { TextField } from "@aclymatepackages/atoms";
|
|
18
|
+
import {
|
|
19
|
+
IndustryAutocomplete,
|
|
20
|
+
YesNoQuestion,
|
|
21
|
+
PlacesAutocomplete,
|
|
22
|
+
} from "@aclymatepackages/modules";
|
|
23
|
+
import { numbersRegExpTest } from "@aclymatepackages/reg-exp";
|
|
24
|
+
import GoogleMap from "@aclymatepackages/google-maps";
|
|
25
|
+
|
|
26
|
+
const CompanyDataConfirmation = ({ companyData, onConfirmClick }) => {
|
|
27
|
+
const { address: existingAddress } = companyData || {};
|
|
28
|
+
const { coordinates: existingCoordinates } = existingAddress || {};
|
|
29
|
+
|
|
30
|
+
const [anchorEl, setAnchorEl] = useState(null);
|
|
31
|
+
const [modifyCompanyData, setModifyCompanyData] = useState(companyData);
|
|
32
|
+
const {
|
|
33
|
+
address = null,
|
|
34
|
+
industry,
|
|
35
|
+
employeeCount,
|
|
36
|
+
isRemote = false,
|
|
37
|
+
name,
|
|
38
|
+
} = modifyCompanyData || {};
|
|
39
|
+
const { coordinates } = address || {};
|
|
40
|
+
const { lat, lng } = coordinates || {};
|
|
41
|
+
|
|
42
|
+
const editCompanyData = (field) => (value) =>
|
|
43
|
+
editObjectData(setModifyCompanyData, field, value);
|
|
44
|
+
|
|
45
|
+
const placesAutocompleteInput = !existingCoordinates
|
|
46
|
+
? [
|
|
47
|
+
<PlacesAutocomplete
|
|
48
|
+
place={address}
|
|
49
|
+
editPlace={editCompanyData("address")}
|
|
50
|
+
label="Edit your company address"
|
|
51
|
+
/>,
|
|
52
|
+
]
|
|
53
|
+
: [];
|
|
54
|
+
|
|
55
|
+
const inputs = [
|
|
56
|
+
...placesAutocompleteInput,
|
|
57
|
+
<TextField
|
|
58
|
+
label="How many employees do you have?"
|
|
59
|
+
value={employeeCount}
|
|
60
|
+
setValue={editCompanyData("employeeCount")}
|
|
61
|
+
error={employeeCount && !numbersRegExpTest(employeeCount)}
|
|
62
|
+
/>,
|
|
63
|
+
<IndustryAutocomplete
|
|
64
|
+
industry={industry}
|
|
65
|
+
setIndustry={editCompanyData("industry")}
|
|
66
|
+
helperText="We'll use this to estimate your emissions and benchmark to other similar companies"
|
|
67
|
+
/>,
|
|
68
|
+
<YesNoQuestion
|
|
69
|
+
question="Does your company only work remotely?"
|
|
70
|
+
value={isRemote}
|
|
71
|
+
setValue={editCompanyData("isRemote")}
|
|
72
|
+
lightBackground
|
|
73
|
+
/>,
|
|
74
|
+
];
|
|
75
|
+
|
|
76
|
+
return (
|
|
77
|
+
<>
|
|
78
|
+
{!!anchorEl && (
|
|
79
|
+
<Menu
|
|
80
|
+
anchorEl={anchorEl}
|
|
81
|
+
open={!!anchorEl}
|
|
82
|
+
anchorOrigin={{ vertical: "top", horizontal: "right" }}
|
|
83
|
+
transformOrigin={{ vertical: "top", horizontal: "right" }}
|
|
84
|
+
>
|
|
85
|
+
<Box p={1} style={{ width: "350px" }}>
|
|
86
|
+
<PlacesAutocomplete
|
|
87
|
+
place={address}
|
|
88
|
+
editPlace={(place) => {
|
|
89
|
+
editCompanyData("address")(place);
|
|
90
|
+
return setAnchorEl(null);
|
|
91
|
+
}}
|
|
92
|
+
label="Edit your company address"
|
|
93
|
+
/>
|
|
94
|
+
</Box>
|
|
95
|
+
</Menu>
|
|
96
|
+
)}
|
|
97
|
+
<Grid container direction="column" spacing={2}>
|
|
98
|
+
<Grid item>
|
|
99
|
+
<Typography variant="h4" color="textPrimary" align="center">
|
|
100
|
+
Please check and fill in some basic information about {name}
|
|
101
|
+
</Typography>
|
|
102
|
+
</Grid>
|
|
103
|
+
<Grid item container spacing={2} justifyContent="center">
|
|
104
|
+
{existingCoordinates && (
|
|
105
|
+
<Grid item xs={5}>
|
|
106
|
+
<Box position="relative">
|
|
107
|
+
<GoogleMap
|
|
108
|
+
height="225px"
|
|
109
|
+
markers={[{ latLng: { y: lng, x: lat } }]}
|
|
110
|
+
zoom={13}
|
|
111
|
+
/>
|
|
112
|
+
<Box style={{ position: "absolute", top: 0, right: 0 }}>
|
|
113
|
+
<Tooltip title="Edit your company address">
|
|
114
|
+
<IconButton onClick={(e) => setAnchorEl(e.currentTarget)}>
|
|
115
|
+
<EditIcon />
|
|
116
|
+
</IconButton>
|
|
117
|
+
</Tooltip>
|
|
118
|
+
</Box>
|
|
119
|
+
</Box>
|
|
120
|
+
</Grid>
|
|
121
|
+
)}
|
|
122
|
+
<Grid item xs={7}>
|
|
123
|
+
<Grid container direction="column" spacing={2}>
|
|
124
|
+
{inputs.map((input, index) => (
|
|
125
|
+
<Grid item key={`input-${index}`}>
|
|
126
|
+
{input}
|
|
127
|
+
</Grid>
|
|
128
|
+
))}
|
|
129
|
+
</Grid>
|
|
130
|
+
</Grid>
|
|
131
|
+
</Grid>
|
|
132
|
+
<Grid item container justifyContent="center">
|
|
133
|
+
<Grid item>
|
|
134
|
+
<Button
|
|
135
|
+
disabled={
|
|
136
|
+
!employeeCount ||
|
|
137
|
+
!numbersRegExpTest(employeeCount) ||
|
|
138
|
+
!industry ||
|
|
139
|
+
!address
|
|
140
|
+
}
|
|
141
|
+
color="primary"
|
|
142
|
+
variant="contained"
|
|
143
|
+
onClick={() => onConfirmClick(modifyCompanyData)}
|
|
144
|
+
>
|
|
145
|
+
Confirm
|
|
146
|
+
</Button>
|
|
147
|
+
</Grid>
|
|
148
|
+
</Grid>
|
|
149
|
+
</Grid>
|
|
150
|
+
</>
|
|
151
|
+
);
|
|
152
|
+
};
|
|
153
|
+
export default CompanyDataConfirmation;
|
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
LoadingButton,
|
|
16
16
|
MatchingCompanyChips,
|
|
17
17
|
} from "@aclymatepackages/atoms";
|
|
18
|
-
|
|
18
|
+
import fetchAclymateApi from "@aclymatepackages/fetch-aclymate-api";
|
|
19
19
|
import { mainTheme } from "@aclymatepackages/themes";
|
|
20
20
|
|
|
21
21
|
const DbCompanySelect = ({
|
|
@@ -37,7 +37,12 @@ const DbCompanySelect = ({
|
|
|
37
37
|
const fetchMatchingCompanies = async () => {
|
|
38
38
|
setPdlFetchLoading(true);
|
|
39
39
|
|
|
40
|
-
const matchingCompanies = await
|
|
40
|
+
const matchingCompanies = await fetchAclymateApi({
|
|
41
|
+
path: `/onboarding/query-matching-companies`,
|
|
42
|
+
method: "POST",
|
|
43
|
+
data: { name: inputValue },
|
|
44
|
+
callback: ({ matchingCompanies }) => matchingCompanies,
|
|
45
|
+
});
|
|
41
46
|
|
|
42
47
|
setPdlFetchLoading(false);
|
|
43
48
|
setMatchingCompanies(matchingCompanies);
|
package/src/index.js
CHANGED
|
@@ -11,6 +11,7 @@ import EmissionsPieChart from "./components/EmissionsPieChart";
|
|
|
11
11
|
import useChartWarningLabels from "./components/useChartWarningLabels";
|
|
12
12
|
import EmissionsSummarySentence from "./components/EmissionsSummarySentence";
|
|
13
13
|
import DbCompanySelect from "./components/DbCompanySelect";
|
|
14
|
+
import CompanyDataConfirmation from "./components/CompanyDataConfirmation";
|
|
14
15
|
|
|
15
16
|
export {
|
|
16
17
|
AccountingChart,
|
|
@@ -26,4 +27,5 @@ export {
|
|
|
26
27
|
useChartWarningLabels,
|
|
27
28
|
EmissionsSummarySentence,
|
|
28
29
|
DbCompanySelect,
|
|
30
|
+
CompanyDataConfirmation,
|
|
29
31
|
};
|