@banch0u/core-project-test-repository 2.3.1 → 2.3.2
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/dist/layout/QuestionnairesSidebar/index.js +34 -10
- package/dist/pages/Questionnnaires/QuestionnairesInventoryBrandsContent/constant.js +58 -0
- package/dist/pages/Questionnnaires/QuestionnairesInventoryBrandsContent/index.js +247 -0
- package/dist/pages/Questionnnaires/QuestionnairesInventoryCategoriesContent/constant.js +58 -0
- package/dist/pages/Questionnnaires/QuestionnairesInventoryCategoriesContent/index.js +247 -0
- package/dist/pages/Questionnnaires/QuestionnairesInventoryModelsContent/constant.js +58 -0
- package/dist/pages/Questionnnaires/QuestionnairesInventoryModelsContent/index.js +247 -0
- package/dist/routes/QuestionnaireRoutes.js +19 -1
- package/dist/store/slices/global/index.js +186 -168
- package/dist/store/slices/questionnaire/index.js +956 -329
- package/dist/store/slices/questionnaire/service.js +384 -0
- package/dist/tools/questionnaireGenerator.js +4 -4
- package/dist/utils/path.js +94 -82
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@ import _asyncToGenerator from "@babel/runtime/helpers/asyncToGenerator";
|
|
|
2
2
|
import _regeneratorRuntime from "@babel/runtime/regenerator";
|
|
3
3
|
import { createAsyncThunk, createSlice } from "@reduxjs/toolkit";
|
|
4
4
|
import Services from "./service";
|
|
5
|
-
import { setApplicationFormsRender, setCountryRender, setDeleteModalVisible, setDeliveryMethodRender, setDocumentRecieveMethodsRender, setDocumentTypesRender, setDocumentWhomRender, setExecutionRulesRender, setLoading, setMarginNoteTextRender, setOrganizationRender, setStructureRender, setSubtopicsRender, setTopicsRender, setViewModalVisible, setBrandRender, setChassisTypeRender, setColorRender, setEnginetypeRender, setGearboxtypeRender, setIssuedauthoritieRender, setModelRender, setOwnershiptypeRender, setOrganisationrecordRender, setTransmittertypeRender, setVehicleRender, setVehicletypeRender, setVrcRender, setAcademicdegreesRender, setDisabilitystatusesRender, setHonorarytitlesRender, setMilitarystaffsRender, setMilitarycategoriesRender, setMilitaryranksRender, setMilitarygroupsRender, setGeneralstructurestatusesRender, setWorkschedulesRender, setSpecializationsRender, setWarparticipantsRender, setGeneralstructuretypesRender, setEducationinstitutionsRender, setEducationpaymentsRender, setEducationlevelsRender, setReprimandtypesRender, setSpecialdaysRender, setCategoriesRender, setRegionsRender, setAreasRender, setCompaniesRender, setPositionsRender, setHallsRender, setDrivingcategoriesRender, setEmployeeConfigurationsRender, setContracttypesRender, setContragenttypesRender, setOrdersRender, setContractcurrenciesRender, setWorkModesRender, setVehicleCategoriesRender, setChemicalsRender, setRepairtypesRender, setDetailpartsRender, setMeasurementtypesRender, setRepairmentWorkTypesRender, setPenaltyTypesRender, setCrushReasonsRender, insuranceTypesRender, setOilFieldsRender, setVehicleGroupsRender, setOwnersRender, setContractTopicsRender, setContractTypesSubtypesRender, setDefaultAgreementPlansRender, setRouteLocationsRender, setInternalStructureRender, setFieldRender, setWellRender, setBarrelRender, setBudgetComponentsRender, setDepartmentsRender, setPentionsRender, setProjectsRender, setCustomersRender } from "../global";
|
|
5
|
+
import { setApplicationFormsRender, setCountryRender, setDeleteModalVisible, setDeliveryMethodRender, setDocumentRecieveMethodsRender, setDocumentTypesRender, setDocumentWhomRender, setExecutionRulesRender, setLoading, setMarginNoteTextRender, setOrganizationRender, setStructureRender, setSubtopicsRender, setTopicsRender, setViewModalVisible, setBrandRender, setChassisTypeRender, setColorRender, setEnginetypeRender, setGearboxtypeRender, setIssuedauthoritieRender, setModelRender, setOwnershiptypeRender, setOrganisationrecordRender, setTransmittertypeRender, setVehicleRender, setVehicletypeRender, setVrcRender, setAcademicdegreesRender, setDisabilitystatusesRender, setHonorarytitlesRender, setMilitarystaffsRender, setMilitarycategoriesRender, setMilitaryranksRender, setMilitarygroupsRender, setGeneralstructurestatusesRender, setWorkschedulesRender, setSpecializationsRender, setWarparticipantsRender, setGeneralstructuretypesRender, setEducationinstitutionsRender, setEducationpaymentsRender, setEducationlevelsRender, setReprimandtypesRender, setSpecialdaysRender, setCategoriesRender, setRegionsRender, setAreasRender, setCompaniesRender, setPositionsRender, setHallsRender, setDrivingcategoriesRender, setEmployeeConfigurationsRender, setContracttypesRender, setContragenttypesRender, setOrdersRender, setContractcurrenciesRender, setWorkModesRender, setVehicleCategoriesRender, setChemicalsRender, setRepairtypesRender, setDetailpartsRender, setMeasurementtypesRender, setRepairmentWorkTypesRender, setPenaltyTypesRender, setCrushReasonsRender, insuranceTypesRender, setOilFieldsRender, setVehicleGroupsRender, setOwnersRender, setContractTopicsRender, setContractTypesSubtypesRender, setDefaultAgreementPlansRender, setRouteLocationsRender, setInternalStructureRender, setFieldRender, setWellRender, setBarrelRender, setBudgetComponentsRender, setDepartmentsRender, setPentionsRender, setProjectsRender, setCustomersRender, setInventoryBrandsRender, setInventoryCategoriesRender, setInventoryModelsRender } from "../global";
|
|
6
6
|
import { errorMessage } from "../../../utils/message";
|
|
7
7
|
var initialState = {
|
|
8
8
|
questionnaires: []
|
|
@@ -16160,708 +16160,1335 @@ export var customersVisibility = createAsyncThunk("customersVisibility", /*#__PU
|
|
|
16160
16160
|
|
|
16161
16161
|
// ---- end generated ----
|
|
16162
16162
|
|
|
16163
|
+
export var getInventoryBrands = createAsyncThunk("/getInventoryBrands", /*#__PURE__*/function () {
|
|
16164
|
+
var _ref986 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee492(data, _ref985) {
|
|
16165
|
+
var dispatch, response, _error$response311, _t492;
|
|
16166
|
+
return _regeneratorRuntime.wrap(function (_context492) {
|
|
16167
|
+
while (1) switch (_context492.prev = _context492.next) {
|
|
16168
|
+
case 0:
|
|
16169
|
+
dispatch = _ref985.dispatch;
|
|
16170
|
+
_context492.prev = 1;
|
|
16171
|
+
dispatch(setLoading(true));
|
|
16172
|
+
_context492.next = 2;
|
|
16173
|
+
return Services.getInventoryBrands(data.size, data.page, data.query, data.visibility);
|
|
16174
|
+
case 2:
|
|
16175
|
+
response = _context492.sent;
|
|
16176
|
+
dispatch(setLoading(false));
|
|
16177
|
+
return _context492.abrupt("return", response === null || response === void 0 ? void 0 : response.data);
|
|
16178
|
+
case 3:
|
|
16179
|
+
_context492.prev = 3;
|
|
16180
|
+
_t492 = _context492["catch"](1);
|
|
16181
|
+
errorMessage((_error$response311 = _t492.response) === null || _error$response311 === void 0 || (_error$response311 = _error$response311.data) === null || _error$response311 === void 0 ? void 0 : _error$response311.message);
|
|
16182
|
+
dispatch(setLoading(false));
|
|
16183
|
+
case 4:
|
|
16184
|
+
case "end":
|
|
16185
|
+
return _context492.stop();
|
|
16186
|
+
}
|
|
16187
|
+
}, _callee492, null, [[1, 3]]);
|
|
16188
|
+
}));
|
|
16189
|
+
return function (_x985, _x986) {
|
|
16190
|
+
return _ref986.apply(this, arguments);
|
|
16191
|
+
};
|
|
16192
|
+
}());
|
|
16193
|
+
export var getInventoryBrandsAll = createAsyncThunk("/getInventoryBrandsAll", /*#__PURE__*/function () {
|
|
16194
|
+
var _ref988 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee493(visibility, _ref987) {
|
|
16195
|
+
var dispatch, response, _error$response312, _t493;
|
|
16196
|
+
return _regeneratorRuntime.wrap(function (_context493) {
|
|
16197
|
+
while (1) switch (_context493.prev = _context493.next) {
|
|
16198
|
+
case 0:
|
|
16199
|
+
dispatch = _ref987.dispatch;
|
|
16200
|
+
_context493.prev = 1;
|
|
16201
|
+
dispatch(setLoading(true));
|
|
16202
|
+
_context493.next = 2;
|
|
16203
|
+
return Services.getInventoryBrandsAll(visibility);
|
|
16204
|
+
case 2:
|
|
16205
|
+
response = _context493.sent;
|
|
16206
|
+
dispatch(setLoading(false));
|
|
16207
|
+
return _context493.abrupt("return", response === null || response === void 0 ? void 0 : response.data);
|
|
16208
|
+
case 3:
|
|
16209
|
+
_context493.prev = 3;
|
|
16210
|
+
_t493 = _context493["catch"](1);
|
|
16211
|
+
errorMessage((_error$response312 = _t493.response) === null || _error$response312 === void 0 || (_error$response312 = _error$response312.data) === null || _error$response312 === void 0 ? void 0 : _error$response312.message);
|
|
16212
|
+
dispatch(setLoading(false));
|
|
16213
|
+
case 4:
|
|
16214
|
+
case "end":
|
|
16215
|
+
return _context493.stop();
|
|
16216
|
+
}
|
|
16217
|
+
}, _callee493, null, [[1, 3]]);
|
|
16218
|
+
}));
|
|
16219
|
+
return function (_x987, _x988) {
|
|
16220
|
+
return _ref988.apply(this, arguments);
|
|
16221
|
+
};
|
|
16222
|
+
}());
|
|
16223
|
+
export var addInventoryBrands = createAsyncThunk("/addInventoryBrands", /*#__PURE__*/function () {
|
|
16224
|
+
var _ref990 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee494(data, _ref989) {
|
|
16225
|
+
var dispatch, _error$response313, _t494;
|
|
16226
|
+
return _regeneratorRuntime.wrap(function (_context494) {
|
|
16227
|
+
while (1) switch (_context494.prev = _context494.next) {
|
|
16228
|
+
case 0:
|
|
16229
|
+
dispatch = _ref989.dispatch;
|
|
16230
|
+
_context494.prev = 1;
|
|
16231
|
+
dispatch(setLoading(true));
|
|
16232
|
+
_context494.next = 2;
|
|
16233
|
+
return Services.addInventoryBrands(data);
|
|
16234
|
+
case 2:
|
|
16235
|
+
dispatch(setLoading(false));
|
|
16236
|
+
dispatch(setInventoryBrandsRender(function (prev) {
|
|
16237
|
+
return !prev;
|
|
16238
|
+
}));
|
|
16239
|
+
dispatch(setViewModalVisible(true));
|
|
16240
|
+
_context494.next = 4;
|
|
16241
|
+
break;
|
|
16242
|
+
case 3:
|
|
16243
|
+
_context494.prev = 3;
|
|
16244
|
+
_t494 = _context494["catch"](1);
|
|
16245
|
+
errorMessage((_error$response313 = _t494.response) === null || _error$response313 === void 0 || (_error$response313 = _error$response313.data) === null || _error$response313 === void 0 ? void 0 : _error$response313.message);
|
|
16246
|
+
dispatch(setLoading(false));
|
|
16247
|
+
case 4:
|
|
16248
|
+
case "end":
|
|
16249
|
+
return _context494.stop();
|
|
16250
|
+
}
|
|
16251
|
+
}, _callee494, null, [[1, 3]]);
|
|
16252
|
+
}));
|
|
16253
|
+
return function (_x989, _x990) {
|
|
16254
|
+
return _ref990.apply(this, arguments);
|
|
16255
|
+
};
|
|
16256
|
+
}());
|
|
16257
|
+
export var editInventoryBrands = createAsyncThunk("/editInventoryBrands", /*#__PURE__*/function () {
|
|
16258
|
+
var _ref992 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee495(data, _ref991) {
|
|
16259
|
+
var dispatch, response, _error$response314, _t495;
|
|
16260
|
+
return _regeneratorRuntime.wrap(function (_context495) {
|
|
16261
|
+
while (1) switch (_context495.prev = _context495.next) {
|
|
16262
|
+
case 0:
|
|
16263
|
+
dispatch = _ref991.dispatch;
|
|
16264
|
+
_context495.prev = 1;
|
|
16265
|
+
dispatch(setLoading(true));
|
|
16266
|
+
_context495.next = 2;
|
|
16267
|
+
return Services.editInventoryBrands(data);
|
|
16268
|
+
case 2:
|
|
16269
|
+
response = _context495.sent;
|
|
16270
|
+
dispatch(setLoading(false));
|
|
16271
|
+
dispatch(setInventoryBrandsRender(function (prev) {
|
|
16272
|
+
return !prev;
|
|
16273
|
+
}));
|
|
16274
|
+
return _context495.abrupt("return", response === null || response === void 0 ? void 0 : response.data);
|
|
16275
|
+
case 3:
|
|
16276
|
+
_context495.prev = 3;
|
|
16277
|
+
_t495 = _context495["catch"](1);
|
|
16278
|
+
errorMessage((_error$response314 = _t495.response) === null || _error$response314 === void 0 || (_error$response314 = _error$response314.data) === null || _error$response314 === void 0 ? void 0 : _error$response314.message);
|
|
16279
|
+
dispatch(setLoading(false));
|
|
16280
|
+
case 4:
|
|
16281
|
+
case "end":
|
|
16282
|
+
return _context495.stop();
|
|
16283
|
+
}
|
|
16284
|
+
}, _callee495, null, [[1, 3]]);
|
|
16285
|
+
}));
|
|
16286
|
+
return function (_x991, _x992) {
|
|
16287
|
+
return _ref992.apply(this, arguments);
|
|
16288
|
+
};
|
|
16289
|
+
}());
|
|
16290
|
+
export var deleteInventoryBrands = createAsyncThunk("/deleteInventoryBrands", /*#__PURE__*/function () {
|
|
16291
|
+
var _ref994 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee496(id, _ref993) {
|
|
16292
|
+
var dispatch, _error$response315, _t496;
|
|
16293
|
+
return _regeneratorRuntime.wrap(function (_context496) {
|
|
16294
|
+
while (1) switch (_context496.prev = _context496.next) {
|
|
16295
|
+
case 0:
|
|
16296
|
+
dispatch = _ref993.dispatch;
|
|
16297
|
+
_context496.prev = 1;
|
|
16298
|
+
dispatch(setLoading(true));
|
|
16299
|
+
_context496.next = 2;
|
|
16300
|
+
return Services.deleteInventoryBrands(id);
|
|
16301
|
+
case 2:
|
|
16302
|
+
dispatch(setLoading(false));
|
|
16303
|
+
dispatch(setDeleteModalVisible(false));
|
|
16304
|
+
dispatch(setInventoryBrandsRender(function (prev) {
|
|
16305
|
+
return !prev;
|
|
16306
|
+
}));
|
|
16307
|
+
_context496.next = 4;
|
|
16308
|
+
break;
|
|
16309
|
+
case 3:
|
|
16310
|
+
_context496.prev = 3;
|
|
16311
|
+
_t496 = _context496["catch"](1);
|
|
16312
|
+
dispatch(setDeleteModalVisible(false));
|
|
16313
|
+
errorMessage((_error$response315 = _t496.response) === null || _error$response315 === void 0 || (_error$response315 = _error$response315.data) === null || _error$response315 === void 0 ? void 0 : _error$response315.message);
|
|
16314
|
+
dispatch(setLoading(false));
|
|
16315
|
+
case 4:
|
|
16316
|
+
case "end":
|
|
16317
|
+
return _context496.stop();
|
|
16318
|
+
}
|
|
16319
|
+
}, _callee496, null, [[1, 3]]);
|
|
16320
|
+
}));
|
|
16321
|
+
return function (_x993, _x994) {
|
|
16322
|
+
return _ref994.apply(this, arguments);
|
|
16323
|
+
};
|
|
16324
|
+
}());
|
|
16325
|
+
export var inventoryBrandsVisibility = createAsyncThunk("inventoryBrandsVisibility", /*#__PURE__*/function () {
|
|
16326
|
+
var _ref996 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee497(data, _ref995) {
|
|
16327
|
+
var dispatch, response, _error$response316, _t497;
|
|
16328
|
+
return _regeneratorRuntime.wrap(function (_context497) {
|
|
16329
|
+
while (1) switch (_context497.prev = _context497.next) {
|
|
16330
|
+
case 0:
|
|
16331
|
+
dispatch = _ref995.dispatch;
|
|
16332
|
+
_context497.prev = 1;
|
|
16333
|
+
dispatch(setLoading(true));
|
|
16334
|
+
_context497.next = 2;
|
|
16335
|
+
return Services.inventoryBrandsVisibility(data);
|
|
16336
|
+
case 2:
|
|
16337
|
+
response = _context497.sent;
|
|
16338
|
+
dispatch(setLoading(false));
|
|
16339
|
+
dispatch(setInventoryBrandsRender(function (prev) {
|
|
16340
|
+
return !prev;
|
|
16341
|
+
}));
|
|
16342
|
+
return _context497.abrupt("return", response === null || response === void 0 ? void 0 : response.data);
|
|
16343
|
+
case 3:
|
|
16344
|
+
_context497.prev = 3;
|
|
16345
|
+
_t497 = _context497["catch"](1);
|
|
16346
|
+
errorMessage((_error$response316 = _t497.response) === null || _error$response316 === void 0 || (_error$response316 = _error$response316.data) === null || _error$response316 === void 0 ? void 0 : _error$response316.message);
|
|
16347
|
+
dispatch(setLoading(false));
|
|
16348
|
+
case 4:
|
|
16349
|
+
case "end":
|
|
16350
|
+
return _context497.stop();
|
|
16351
|
+
}
|
|
16352
|
+
}, _callee497, null, [[1, 3]]);
|
|
16353
|
+
}));
|
|
16354
|
+
return function (_x995, _x996) {
|
|
16355
|
+
return _ref996.apply(this, arguments);
|
|
16356
|
+
};
|
|
16357
|
+
}());
|
|
16358
|
+
|
|
16359
|
+
// ---- end generated ----
|
|
16360
|
+
|
|
16361
|
+
export var getInventoryCategories = createAsyncThunk("/getInventoryCategories", /*#__PURE__*/function () {
|
|
16362
|
+
var _ref998 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee498(data, _ref997) {
|
|
16363
|
+
var dispatch, response, _error$response317, _t498;
|
|
16364
|
+
return _regeneratorRuntime.wrap(function (_context498) {
|
|
16365
|
+
while (1) switch (_context498.prev = _context498.next) {
|
|
16366
|
+
case 0:
|
|
16367
|
+
dispatch = _ref997.dispatch;
|
|
16368
|
+
_context498.prev = 1;
|
|
16369
|
+
dispatch(setLoading(true));
|
|
16370
|
+
_context498.next = 2;
|
|
16371
|
+
return Services.getInventoryCategories(data.size, data.page, data.query, data.visibility);
|
|
16372
|
+
case 2:
|
|
16373
|
+
response = _context498.sent;
|
|
16374
|
+
dispatch(setLoading(false));
|
|
16375
|
+
return _context498.abrupt("return", response === null || response === void 0 ? void 0 : response.data);
|
|
16376
|
+
case 3:
|
|
16377
|
+
_context498.prev = 3;
|
|
16378
|
+
_t498 = _context498["catch"](1);
|
|
16379
|
+
errorMessage((_error$response317 = _t498.response) === null || _error$response317 === void 0 || (_error$response317 = _error$response317.data) === null || _error$response317 === void 0 ? void 0 : _error$response317.message);
|
|
16380
|
+
dispatch(setLoading(false));
|
|
16381
|
+
case 4:
|
|
16382
|
+
case "end":
|
|
16383
|
+
return _context498.stop();
|
|
16384
|
+
}
|
|
16385
|
+
}, _callee498, null, [[1, 3]]);
|
|
16386
|
+
}));
|
|
16387
|
+
return function (_x997, _x998) {
|
|
16388
|
+
return _ref998.apply(this, arguments);
|
|
16389
|
+
};
|
|
16390
|
+
}());
|
|
16391
|
+
export var getInventoryCategoriesAll = createAsyncThunk("/getInventoryCategoriesAll", /*#__PURE__*/function () {
|
|
16392
|
+
var _ref1000 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee499(visibility, _ref999) {
|
|
16393
|
+
var dispatch, response, _error$response318, _t499;
|
|
16394
|
+
return _regeneratorRuntime.wrap(function (_context499) {
|
|
16395
|
+
while (1) switch (_context499.prev = _context499.next) {
|
|
16396
|
+
case 0:
|
|
16397
|
+
dispatch = _ref999.dispatch;
|
|
16398
|
+
_context499.prev = 1;
|
|
16399
|
+
dispatch(setLoading(true));
|
|
16400
|
+
_context499.next = 2;
|
|
16401
|
+
return Services.getInventoryCategoriesAll(visibility);
|
|
16402
|
+
case 2:
|
|
16403
|
+
response = _context499.sent;
|
|
16404
|
+
dispatch(setLoading(false));
|
|
16405
|
+
return _context499.abrupt("return", response === null || response === void 0 ? void 0 : response.data);
|
|
16406
|
+
case 3:
|
|
16407
|
+
_context499.prev = 3;
|
|
16408
|
+
_t499 = _context499["catch"](1);
|
|
16409
|
+
errorMessage((_error$response318 = _t499.response) === null || _error$response318 === void 0 || (_error$response318 = _error$response318.data) === null || _error$response318 === void 0 ? void 0 : _error$response318.message);
|
|
16410
|
+
dispatch(setLoading(false));
|
|
16411
|
+
case 4:
|
|
16412
|
+
case "end":
|
|
16413
|
+
return _context499.stop();
|
|
16414
|
+
}
|
|
16415
|
+
}, _callee499, null, [[1, 3]]);
|
|
16416
|
+
}));
|
|
16417
|
+
return function (_x999, _x1000) {
|
|
16418
|
+
return _ref1000.apply(this, arguments);
|
|
16419
|
+
};
|
|
16420
|
+
}());
|
|
16421
|
+
export var addInventoryCategories = createAsyncThunk("/addInventoryCategories", /*#__PURE__*/function () {
|
|
16422
|
+
var _ref1002 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee500(data, _ref1001) {
|
|
16423
|
+
var dispatch, _error$response319, _t500;
|
|
16424
|
+
return _regeneratorRuntime.wrap(function (_context500) {
|
|
16425
|
+
while (1) switch (_context500.prev = _context500.next) {
|
|
16426
|
+
case 0:
|
|
16427
|
+
dispatch = _ref1001.dispatch;
|
|
16428
|
+
_context500.prev = 1;
|
|
16429
|
+
dispatch(setLoading(true));
|
|
16430
|
+
_context500.next = 2;
|
|
16431
|
+
return Services.addInventoryCategories(data);
|
|
16432
|
+
case 2:
|
|
16433
|
+
dispatch(setLoading(false));
|
|
16434
|
+
dispatch(setInventoryCategoriesRender(function (prev) {
|
|
16435
|
+
return !prev;
|
|
16436
|
+
}));
|
|
16437
|
+
dispatch(setViewModalVisible(true));
|
|
16438
|
+
_context500.next = 4;
|
|
16439
|
+
break;
|
|
16440
|
+
case 3:
|
|
16441
|
+
_context500.prev = 3;
|
|
16442
|
+
_t500 = _context500["catch"](1);
|
|
16443
|
+
errorMessage((_error$response319 = _t500.response) === null || _error$response319 === void 0 || (_error$response319 = _error$response319.data) === null || _error$response319 === void 0 ? void 0 : _error$response319.message);
|
|
16444
|
+
dispatch(setLoading(false));
|
|
16445
|
+
case 4:
|
|
16446
|
+
case "end":
|
|
16447
|
+
return _context500.stop();
|
|
16448
|
+
}
|
|
16449
|
+
}, _callee500, null, [[1, 3]]);
|
|
16450
|
+
}));
|
|
16451
|
+
return function (_x1001, _x1002) {
|
|
16452
|
+
return _ref1002.apply(this, arguments);
|
|
16453
|
+
};
|
|
16454
|
+
}());
|
|
16455
|
+
export var editInventoryCategories = createAsyncThunk("/editInventoryCategories", /*#__PURE__*/function () {
|
|
16456
|
+
var _ref1004 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee501(data, _ref1003) {
|
|
16457
|
+
var dispatch, response, _error$response320, _t501;
|
|
16458
|
+
return _regeneratorRuntime.wrap(function (_context501) {
|
|
16459
|
+
while (1) switch (_context501.prev = _context501.next) {
|
|
16460
|
+
case 0:
|
|
16461
|
+
dispatch = _ref1003.dispatch;
|
|
16462
|
+
_context501.prev = 1;
|
|
16463
|
+
dispatch(setLoading(true));
|
|
16464
|
+
_context501.next = 2;
|
|
16465
|
+
return Services.editInventoryCategories(data);
|
|
16466
|
+
case 2:
|
|
16467
|
+
response = _context501.sent;
|
|
16468
|
+
dispatch(setLoading(false));
|
|
16469
|
+
dispatch(setInventoryCategoriesRender(function (prev) {
|
|
16470
|
+
return !prev;
|
|
16471
|
+
}));
|
|
16472
|
+
return _context501.abrupt("return", response === null || response === void 0 ? void 0 : response.data);
|
|
16473
|
+
case 3:
|
|
16474
|
+
_context501.prev = 3;
|
|
16475
|
+
_t501 = _context501["catch"](1);
|
|
16476
|
+
errorMessage((_error$response320 = _t501.response) === null || _error$response320 === void 0 || (_error$response320 = _error$response320.data) === null || _error$response320 === void 0 ? void 0 : _error$response320.message);
|
|
16477
|
+
dispatch(setLoading(false));
|
|
16478
|
+
case 4:
|
|
16479
|
+
case "end":
|
|
16480
|
+
return _context501.stop();
|
|
16481
|
+
}
|
|
16482
|
+
}, _callee501, null, [[1, 3]]);
|
|
16483
|
+
}));
|
|
16484
|
+
return function (_x1003, _x1004) {
|
|
16485
|
+
return _ref1004.apply(this, arguments);
|
|
16486
|
+
};
|
|
16487
|
+
}());
|
|
16488
|
+
export var deleteInventoryCategories = createAsyncThunk("/deleteInventoryCategories", /*#__PURE__*/function () {
|
|
16489
|
+
var _ref1006 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee502(id, _ref1005) {
|
|
16490
|
+
var dispatch, _error$response321, _t502;
|
|
16491
|
+
return _regeneratorRuntime.wrap(function (_context502) {
|
|
16492
|
+
while (1) switch (_context502.prev = _context502.next) {
|
|
16493
|
+
case 0:
|
|
16494
|
+
dispatch = _ref1005.dispatch;
|
|
16495
|
+
_context502.prev = 1;
|
|
16496
|
+
dispatch(setLoading(true));
|
|
16497
|
+
_context502.next = 2;
|
|
16498
|
+
return Services.deleteInventoryCategories(id);
|
|
16499
|
+
case 2:
|
|
16500
|
+
dispatch(setLoading(false));
|
|
16501
|
+
dispatch(setDeleteModalVisible(false));
|
|
16502
|
+
dispatch(setInventoryCategoriesRender(function (prev) {
|
|
16503
|
+
return !prev;
|
|
16504
|
+
}));
|
|
16505
|
+
_context502.next = 4;
|
|
16506
|
+
break;
|
|
16507
|
+
case 3:
|
|
16508
|
+
_context502.prev = 3;
|
|
16509
|
+
_t502 = _context502["catch"](1);
|
|
16510
|
+
dispatch(setDeleteModalVisible(false));
|
|
16511
|
+
errorMessage((_error$response321 = _t502.response) === null || _error$response321 === void 0 || (_error$response321 = _error$response321.data) === null || _error$response321 === void 0 ? void 0 : _error$response321.message);
|
|
16512
|
+
dispatch(setLoading(false));
|
|
16513
|
+
case 4:
|
|
16514
|
+
case "end":
|
|
16515
|
+
return _context502.stop();
|
|
16516
|
+
}
|
|
16517
|
+
}, _callee502, null, [[1, 3]]);
|
|
16518
|
+
}));
|
|
16519
|
+
return function (_x1005, _x1006) {
|
|
16520
|
+
return _ref1006.apply(this, arguments);
|
|
16521
|
+
};
|
|
16522
|
+
}());
|
|
16523
|
+
export var inventoryCategoriesVisibility = createAsyncThunk("inventoryCategoriesVisibility", /*#__PURE__*/function () {
|
|
16524
|
+
var _ref1008 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee503(data, _ref1007) {
|
|
16525
|
+
var dispatch, response, _error$response322, _t503;
|
|
16526
|
+
return _regeneratorRuntime.wrap(function (_context503) {
|
|
16527
|
+
while (1) switch (_context503.prev = _context503.next) {
|
|
16528
|
+
case 0:
|
|
16529
|
+
dispatch = _ref1007.dispatch;
|
|
16530
|
+
_context503.prev = 1;
|
|
16531
|
+
dispatch(setLoading(true));
|
|
16532
|
+
_context503.next = 2;
|
|
16533
|
+
return Services.inventoryCategoriesVisibility(data);
|
|
16534
|
+
case 2:
|
|
16535
|
+
response = _context503.sent;
|
|
16536
|
+
dispatch(setLoading(false));
|
|
16537
|
+
dispatch(setInventoryCategoriesRender(function (prev) {
|
|
16538
|
+
return !prev;
|
|
16539
|
+
}));
|
|
16540
|
+
return _context503.abrupt("return", response === null || response === void 0 ? void 0 : response.data);
|
|
16541
|
+
case 3:
|
|
16542
|
+
_context503.prev = 3;
|
|
16543
|
+
_t503 = _context503["catch"](1);
|
|
16544
|
+
errorMessage((_error$response322 = _t503.response) === null || _error$response322 === void 0 || (_error$response322 = _error$response322.data) === null || _error$response322 === void 0 ? void 0 : _error$response322.message);
|
|
16545
|
+
dispatch(setLoading(false));
|
|
16546
|
+
case 4:
|
|
16547
|
+
case "end":
|
|
16548
|
+
return _context503.stop();
|
|
16549
|
+
}
|
|
16550
|
+
}, _callee503, null, [[1, 3]]);
|
|
16551
|
+
}));
|
|
16552
|
+
return function (_x1007, _x1008) {
|
|
16553
|
+
return _ref1008.apply(this, arguments);
|
|
16554
|
+
};
|
|
16555
|
+
}());
|
|
16556
|
+
|
|
16557
|
+
// ---- end generated ----
|
|
16558
|
+
|
|
16559
|
+
export var getInventoryModels = createAsyncThunk("/getInventoryModels", /*#__PURE__*/function () {
|
|
16560
|
+
var _ref1010 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee504(data, _ref1009) {
|
|
16561
|
+
var dispatch, response, _error$response323, _t504;
|
|
16562
|
+
return _regeneratorRuntime.wrap(function (_context504) {
|
|
16563
|
+
while (1) switch (_context504.prev = _context504.next) {
|
|
16564
|
+
case 0:
|
|
16565
|
+
dispatch = _ref1009.dispatch;
|
|
16566
|
+
_context504.prev = 1;
|
|
16567
|
+
dispatch(setLoading(true));
|
|
16568
|
+
_context504.next = 2;
|
|
16569
|
+
return Services.getInventoryModels(data.size, data.page, data.query, data.visibility);
|
|
16570
|
+
case 2:
|
|
16571
|
+
response = _context504.sent;
|
|
16572
|
+
dispatch(setLoading(false));
|
|
16573
|
+
return _context504.abrupt("return", response === null || response === void 0 ? void 0 : response.data);
|
|
16574
|
+
case 3:
|
|
16575
|
+
_context504.prev = 3;
|
|
16576
|
+
_t504 = _context504["catch"](1);
|
|
16577
|
+
errorMessage((_error$response323 = _t504.response) === null || _error$response323 === void 0 || (_error$response323 = _error$response323.data) === null || _error$response323 === void 0 ? void 0 : _error$response323.message);
|
|
16578
|
+
dispatch(setLoading(false));
|
|
16579
|
+
case 4:
|
|
16580
|
+
case "end":
|
|
16581
|
+
return _context504.stop();
|
|
16582
|
+
}
|
|
16583
|
+
}, _callee504, null, [[1, 3]]);
|
|
16584
|
+
}));
|
|
16585
|
+
return function (_x1009, _x1010) {
|
|
16586
|
+
return _ref1010.apply(this, arguments);
|
|
16587
|
+
};
|
|
16588
|
+
}());
|
|
16589
|
+
export var getInventoryModelsAll = createAsyncThunk("/getInventoryModelsAll", /*#__PURE__*/function () {
|
|
16590
|
+
var _ref1012 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee505(visibility, _ref1011) {
|
|
16591
|
+
var dispatch, response, _error$response324, _t505;
|
|
16592
|
+
return _regeneratorRuntime.wrap(function (_context505) {
|
|
16593
|
+
while (1) switch (_context505.prev = _context505.next) {
|
|
16594
|
+
case 0:
|
|
16595
|
+
dispatch = _ref1011.dispatch;
|
|
16596
|
+
_context505.prev = 1;
|
|
16597
|
+
dispatch(setLoading(true));
|
|
16598
|
+
_context505.next = 2;
|
|
16599
|
+
return Services.getInventoryModelsAll(visibility);
|
|
16600
|
+
case 2:
|
|
16601
|
+
response = _context505.sent;
|
|
16602
|
+
dispatch(setLoading(false));
|
|
16603
|
+
return _context505.abrupt("return", response === null || response === void 0 ? void 0 : response.data);
|
|
16604
|
+
case 3:
|
|
16605
|
+
_context505.prev = 3;
|
|
16606
|
+
_t505 = _context505["catch"](1);
|
|
16607
|
+
errorMessage((_error$response324 = _t505.response) === null || _error$response324 === void 0 || (_error$response324 = _error$response324.data) === null || _error$response324 === void 0 ? void 0 : _error$response324.message);
|
|
16608
|
+
dispatch(setLoading(false));
|
|
16609
|
+
case 4:
|
|
16610
|
+
case "end":
|
|
16611
|
+
return _context505.stop();
|
|
16612
|
+
}
|
|
16613
|
+
}, _callee505, null, [[1, 3]]);
|
|
16614
|
+
}));
|
|
16615
|
+
return function (_x1011, _x1012) {
|
|
16616
|
+
return _ref1012.apply(this, arguments);
|
|
16617
|
+
};
|
|
16618
|
+
}());
|
|
16619
|
+
export var addInventoryModels = createAsyncThunk("/addInventoryModels", /*#__PURE__*/function () {
|
|
16620
|
+
var _ref1014 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee506(data, _ref1013) {
|
|
16621
|
+
var dispatch, _error$response325, _t506;
|
|
16622
|
+
return _regeneratorRuntime.wrap(function (_context506) {
|
|
16623
|
+
while (1) switch (_context506.prev = _context506.next) {
|
|
16624
|
+
case 0:
|
|
16625
|
+
dispatch = _ref1013.dispatch;
|
|
16626
|
+
_context506.prev = 1;
|
|
16627
|
+
dispatch(setLoading(true));
|
|
16628
|
+
_context506.next = 2;
|
|
16629
|
+
return Services.addInventoryModels(data);
|
|
16630
|
+
case 2:
|
|
16631
|
+
dispatch(setLoading(false));
|
|
16632
|
+
dispatch(setInventoryModelsRender(function (prev) {
|
|
16633
|
+
return !prev;
|
|
16634
|
+
}));
|
|
16635
|
+
dispatch(setViewModalVisible(true));
|
|
16636
|
+
_context506.next = 4;
|
|
16637
|
+
break;
|
|
16638
|
+
case 3:
|
|
16639
|
+
_context506.prev = 3;
|
|
16640
|
+
_t506 = _context506["catch"](1);
|
|
16641
|
+
errorMessage((_error$response325 = _t506.response) === null || _error$response325 === void 0 || (_error$response325 = _error$response325.data) === null || _error$response325 === void 0 ? void 0 : _error$response325.message);
|
|
16642
|
+
dispatch(setLoading(false));
|
|
16643
|
+
case 4:
|
|
16644
|
+
case "end":
|
|
16645
|
+
return _context506.stop();
|
|
16646
|
+
}
|
|
16647
|
+
}, _callee506, null, [[1, 3]]);
|
|
16648
|
+
}));
|
|
16649
|
+
return function (_x1013, _x1014) {
|
|
16650
|
+
return _ref1014.apply(this, arguments);
|
|
16651
|
+
};
|
|
16652
|
+
}());
|
|
16653
|
+
export var editInventoryModels = createAsyncThunk("/editInventoryModels", /*#__PURE__*/function () {
|
|
16654
|
+
var _ref1016 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee507(data, _ref1015) {
|
|
16655
|
+
var dispatch, response, _error$response326, _t507;
|
|
16656
|
+
return _regeneratorRuntime.wrap(function (_context507) {
|
|
16657
|
+
while (1) switch (_context507.prev = _context507.next) {
|
|
16658
|
+
case 0:
|
|
16659
|
+
dispatch = _ref1015.dispatch;
|
|
16660
|
+
_context507.prev = 1;
|
|
16661
|
+
dispatch(setLoading(true));
|
|
16662
|
+
_context507.next = 2;
|
|
16663
|
+
return Services.editInventoryModels(data);
|
|
16664
|
+
case 2:
|
|
16665
|
+
response = _context507.sent;
|
|
16666
|
+
dispatch(setLoading(false));
|
|
16667
|
+
dispatch(setInventoryModelsRender(function (prev) {
|
|
16668
|
+
return !prev;
|
|
16669
|
+
}));
|
|
16670
|
+
return _context507.abrupt("return", response === null || response === void 0 ? void 0 : response.data);
|
|
16671
|
+
case 3:
|
|
16672
|
+
_context507.prev = 3;
|
|
16673
|
+
_t507 = _context507["catch"](1);
|
|
16674
|
+
errorMessage((_error$response326 = _t507.response) === null || _error$response326 === void 0 || (_error$response326 = _error$response326.data) === null || _error$response326 === void 0 ? void 0 : _error$response326.message);
|
|
16675
|
+
dispatch(setLoading(false));
|
|
16676
|
+
case 4:
|
|
16677
|
+
case "end":
|
|
16678
|
+
return _context507.stop();
|
|
16679
|
+
}
|
|
16680
|
+
}, _callee507, null, [[1, 3]]);
|
|
16681
|
+
}));
|
|
16682
|
+
return function (_x1015, _x1016) {
|
|
16683
|
+
return _ref1016.apply(this, arguments);
|
|
16684
|
+
};
|
|
16685
|
+
}());
|
|
16686
|
+
export var deleteInventoryModels = createAsyncThunk("/deleteInventoryModels", /*#__PURE__*/function () {
|
|
16687
|
+
var _ref1018 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee508(id, _ref1017) {
|
|
16688
|
+
var dispatch, _error$response327, _t508;
|
|
16689
|
+
return _regeneratorRuntime.wrap(function (_context508) {
|
|
16690
|
+
while (1) switch (_context508.prev = _context508.next) {
|
|
16691
|
+
case 0:
|
|
16692
|
+
dispatch = _ref1017.dispatch;
|
|
16693
|
+
_context508.prev = 1;
|
|
16694
|
+
dispatch(setLoading(true));
|
|
16695
|
+
_context508.next = 2;
|
|
16696
|
+
return Services.deleteInventoryModels(id);
|
|
16697
|
+
case 2:
|
|
16698
|
+
dispatch(setLoading(false));
|
|
16699
|
+
dispatch(setDeleteModalVisible(false));
|
|
16700
|
+
dispatch(setInventoryModelsRender(function (prev) {
|
|
16701
|
+
return !prev;
|
|
16702
|
+
}));
|
|
16703
|
+
_context508.next = 4;
|
|
16704
|
+
break;
|
|
16705
|
+
case 3:
|
|
16706
|
+
_context508.prev = 3;
|
|
16707
|
+
_t508 = _context508["catch"](1);
|
|
16708
|
+
dispatch(setDeleteModalVisible(false));
|
|
16709
|
+
errorMessage((_error$response327 = _t508.response) === null || _error$response327 === void 0 || (_error$response327 = _error$response327.data) === null || _error$response327 === void 0 ? void 0 : _error$response327.message);
|
|
16710
|
+
dispatch(setLoading(false));
|
|
16711
|
+
case 4:
|
|
16712
|
+
case "end":
|
|
16713
|
+
return _context508.stop();
|
|
16714
|
+
}
|
|
16715
|
+
}, _callee508, null, [[1, 3]]);
|
|
16716
|
+
}));
|
|
16717
|
+
return function (_x1017, _x1018) {
|
|
16718
|
+
return _ref1018.apply(this, arguments);
|
|
16719
|
+
};
|
|
16720
|
+
}());
|
|
16721
|
+
export var inventoryModelsVisibility = createAsyncThunk("inventoryModelsVisibility", /*#__PURE__*/function () {
|
|
16722
|
+
var _ref1020 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee509(data, _ref1019) {
|
|
16723
|
+
var dispatch, response, _error$response328, _t509;
|
|
16724
|
+
return _regeneratorRuntime.wrap(function (_context509) {
|
|
16725
|
+
while (1) switch (_context509.prev = _context509.next) {
|
|
16726
|
+
case 0:
|
|
16727
|
+
dispatch = _ref1019.dispatch;
|
|
16728
|
+
_context509.prev = 1;
|
|
16729
|
+
dispatch(setLoading(true));
|
|
16730
|
+
_context509.next = 2;
|
|
16731
|
+
return Services.inventoryModelsVisibility(data);
|
|
16732
|
+
case 2:
|
|
16733
|
+
response = _context509.sent;
|
|
16734
|
+
dispatch(setLoading(false));
|
|
16735
|
+
dispatch(setInventoryModelsRender(function (prev) {
|
|
16736
|
+
return !prev;
|
|
16737
|
+
}));
|
|
16738
|
+
return _context509.abrupt("return", response === null || response === void 0 ? void 0 : response.data);
|
|
16739
|
+
case 3:
|
|
16740
|
+
_context509.prev = 3;
|
|
16741
|
+
_t509 = _context509["catch"](1);
|
|
16742
|
+
errorMessage((_error$response328 = _t509.response) === null || _error$response328 === void 0 || (_error$response328 = _error$response328.data) === null || _error$response328 === void 0 ? void 0 : _error$response328.message);
|
|
16743
|
+
dispatch(setLoading(false));
|
|
16744
|
+
case 4:
|
|
16745
|
+
case "end":
|
|
16746
|
+
return _context509.stop();
|
|
16747
|
+
}
|
|
16748
|
+
}, _callee509, null, [[1, 3]]);
|
|
16749
|
+
}));
|
|
16750
|
+
return function (_x1019, _x1020) {
|
|
16751
|
+
return _ref1020.apply(this, arguments);
|
|
16752
|
+
};
|
|
16753
|
+
}());
|
|
16754
|
+
|
|
16755
|
+
// ---- end generated ----
|
|
16756
|
+
|
|
16163
16757
|
export var questionnaire = createSlice({
|
|
16164
16758
|
name: "questionnaire",
|
|
16165
16759
|
initialState: initialState,
|
|
16166
16760
|
extraReducers: function extraReducers(builder) {
|
|
16167
|
-
builder.addCase(getTopics.fulfilled, function (state,
|
|
16168
|
-
var payload =
|
|
16761
|
+
builder.addCase(getTopics.fulfilled, function (state, _ref1021) {
|
|
16762
|
+
var payload = _ref1021.payload;
|
|
16169
16763
|
state.topics = payload;
|
|
16170
16764
|
});
|
|
16171
|
-
builder.addCase(getTopicsAll.fulfilled, function (state,
|
|
16172
|
-
var payload =
|
|
16765
|
+
builder.addCase(getTopicsAll.fulfilled, function (state, _ref1022) {
|
|
16766
|
+
var payload = _ref1022.payload;
|
|
16173
16767
|
state.topicsAll = payload;
|
|
16174
16768
|
});
|
|
16175
|
-
builder.addCase(getSubtopics.fulfilled, function (state,
|
|
16176
|
-
var payload =
|
|
16769
|
+
builder.addCase(getSubtopics.fulfilled, function (state, _ref1023) {
|
|
16770
|
+
var payload = _ref1023.payload;
|
|
16177
16771
|
state.subtopics = payload;
|
|
16178
16772
|
});
|
|
16179
|
-
builder.addCase(getSubtopicsAll.fulfilled, function (state,
|
|
16180
|
-
var payload =
|
|
16773
|
+
builder.addCase(getSubtopicsAll.fulfilled, function (state, _ref1024) {
|
|
16774
|
+
var payload = _ref1024.payload;
|
|
16181
16775
|
state.subtopicsAll = payload;
|
|
16182
16776
|
});
|
|
16183
|
-
builder.addCase(getExecutionRules.fulfilled, function (state,
|
|
16184
|
-
var payload =
|
|
16777
|
+
builder.addCase(getExecutionRules.fulfilled, function (state, _ref1025) {
|
|
16778
|
+
var payload = _ref1025.payload;
|
|
16185
16779
|
state.executionRules = payload;
|
|
16186
16780
|
});
|
|
16187
|
-
builder.addCase(getExecutionRulesAll.fulfilled, function (state,
|
|
16188
|
-
var payload =
|
|
16781
|
+
builder.addCase(getExecutionRulesAll.fulfilled, function (state, _ref1026) {
|
|
16782
|
+
var payload = _ref1026.payload;
|
|
16189
16783
|
state.executionRulesAll = payload;
|
|
16190
16784
|
});
|
|
16191
|
-
builder.addCase(getDocumentRecieveMethods.fulfilled, function (state,
|
|
16192
|
-
var payload =
|
|
16785
|
+
builder.addCase(getDocumentRecieveMethods.fulfilled, function (state, _ref1027) {
|
|
16786
|
+
var payload = _ref1027.payload;
|
|
16193
16787
|
state.documentRecieveMethods = payload;
|
|
16194
16788
|
});
|
|
16195
|
-
builder.addCase(getDocumentRecieveMethodsAll.fulfilled, function (state,
|
|
16196
|
-
var payload =
|
|
16789
|
+
builder.addCase(getDocumentRecieveMethodsAll.fulfilled, function (state, _ref1028) {
|
|
16790
|
+
var payload = _ref1028.payload;
|
|
16197
16791
|
state.documentRecieveMethodsAll = payload;
|
|
16198
16792
|
});
|
|
16199
|
-
builder.addCase(getDocumentTypes.fulfilled, function (state,
|
|
16200
|
-
var payload =
|
|
16793
|
+
builder.addCase(getDocumentTypes.fulfilled, function (state, _ref1029) {
|
|
16794
|
+
var payload = _ref1029.payload;
|
|
16201
16795
|
state.documentTypes = payload;
|
|
16202
16796
|
});
|
|
16203
|
-
builder.addCase(getDocumentTypesAllOne.fulfilled, function (state,
|
|
16204
|
-
var payload =
|
|
16797
|
+
builder.addCase(getDocumentTypesAllOne.fulfilled, function (state, _ref1030) {
|
|
16798
|
+
var payload = _ref1030.payload;
|
|
16205
16799
|
state.documentTypesAllOne = payload;
|
|
16206
16800
|
});
|
|
16207
|
-
builder.addCase(getDocumentTypesAllTwo.fulfilled, function (state,
|
|
16208
|
-
var payload =
|
|
16801
|
+
builder.addCase(getDocumentTypesAllTwo.fulfilled, function (state, _ref1031) {
|
|
16802
|
+
var payload = _ref1031.payload;
|
|
16209
16803
|
state.documentTypesAllTwo = payload;
|
|
16210
16804
|
});
|
|
16211
|
-
builder.addCase(getCountries.fulfilled, function (state,
|
|
16212
|
-
var payload =
|
|
16805
|
+
builder.addCase(getCountries.fulfilled, function (state, _ref1032) {
|
|
16806
|
+
var payload = _ref1032.payload;
|
|
16213
16807
|
state.countries = payload;
|
|
16214
16808
|
});
|
|
16215
|
-
builder.addCase(getCountriesAll.fulfilled, function (state,
|
|
16216
|
-
var payload =
|
|
16809
|
+
builder.addCase(getCountriesAll.fulfilled, function (state, _ref1033) {
|
|
16810
|
+
var payload = _ref1033.payload;
|
|
16217
16811
|
state.countriesAll = payload;
|
|
16218
16812
|
});
|
|
16219
|
-
builder.addCase(getOrganizations.fulfilled, function (state,
|
|
16220
|
-
var payload =
|
|
16813
|
+
builder.addCase(getOrganizations.fulfilled, function (state, _ref1034) {
|
|
16814
|
+
var payload = _ref1034.payload;
|
|
16221
16815
|
state.organizations = payload;
|
|
16222
16816
|
});
|
|
16223
|
-
builder.addCase(getStructures.fulfilled, function (state,
|
|
16224
|
-
var payload =
|
|
16817
|
+
builder.addCase(getStructures.fulfilled, function (state, _ref1035) {
|
|
16818
|
+
var payload = _ref1035.payload;
|
|
16225
16819
|
state.structures = payload;
|
|
16226
16820
|
});
|
|
16227
|
-
builder.addCase(getApplicationForms.fulfilled, function (state,
|
|
16228
|
-
var payload =
|
|
16821
|
+
builder.addCase(getApplicationForms.fulfilled, function (state, _ref1036) {
|
|
16822
|
+
var payload = _ref1036.payload;
|
|
16229
16823
|
state.applicationForms = payload;
|
|
16230
16824
|
});
|
|
16231
|
-
builder.addCase(getApplicationFormsAll.fulfilled, function (state,
|
|
16232
|
-
var payload =
|
|
16825
|
+
builder.addCase(getApplicationFormsAll.fulfilled, function (state, _ref1037) {
|
|
16826
|
+
var payload = _ref1037.payload;
|
|
16233
16827
|
state.applicationFormsAll = payload;
|
|
16234
16828
|
});
|
|
16235
|
-
builder.addCase(getDocumentWhom.fulfilled, function (state,
|
|
16236
|
-
var payload =
|
|
16829
|
+
builder.addCase(getDocumentWhom.fulfilled, function (state, _ref1038) {
|
|
16830
|
+
var payload = _ref1038.payload;
|
|
16237
16831
|
state.documentWhom = payload;
|
|
16238
16832
|
});
|
|
16239
|
-
builder.addCase(getDocumentWhomAll.fulfilled, function (state,
|
|
16240
|
-
var payload =
|
|
16833
|
+
builder.addCase(getDocumentWhomAll.fulfilled, function (state, _ref1039) {
|
|
16834
|
+
var payload = _ref1039.payload;
|
|
16241
16835
|
state.documentWhomAll = payload;
|
|
16242
16836
|
});
|
|
16243
|
-
builder.addCase(getOrganizationsAll.fulfilled, function (state,
|
|
16244
|
-
var payload =
|
|
16837
|
+
builder.addCase(getOrganizationsAll.fulfilled, function (state, _ref1040) {
|
|
16838
|
+
var payload = _ref1040.payload;
|
|
16245
16839
|
state.organizationsAll = payload;
|
|
16246
16840
|
});
|
|
16247
|
-
builder.addCase(getMarginNoteText.fulfilled, function (state,
|
|
16248
|
-
var payload =
|
|
16841
|
+
builder.addCase(getMarginNoteText.fulfilled, function (state, _ref1041) {
|
|
16842
|
+
var payload = _ref1041.payload;
|
|
16249
16843
|
state.marginNoteText = payload;
|
|
16250
16844
|
});
|
|
16251
|
-
builder.addCase(getDeliveryMethod.fulfilled, function (state,
|
|
16252
|
-
var payload =
|
|
16845
|
+
builder.addCase(getDeliveryMethod.fulfilled, function (state, _ref1042) {
|
|
16846
|
+
var payload = _ref1042.payload;
|
|
16253
16847
|
state.deliveryMethod = payload;
|
|
16254
16848
|
});
|
|
16255
|
-
builder.addCase(getDeliveryMethodAll.fulfilled, function (state,
|
|
16256
|
-
var payload =
|
|
16849
|
+
builder.addCase(getDeliveryMethodAll.fulfilled, function (state, _ref1043) {
|
|
16850
|
+
var payload = _ref1043.payload;
|
|
16257
16851
|
state.deliveryMethodAll = payload;
|
|
16258
16852
|
});
|
|
16259
|
-
builder.addCase(getGeneralStructuresAll.fulfilled, function (state,
|
|
16260
|
-
var payload =
|
|
16853
|
+
builder.addCase(getGeneralStructuresAll.fulfilled, function (state, _ref1044) {
|
|
16854
|
+
var payload = _ref1044.payload;
|
|
16261
16855
|
state.generalStructuresAll = payload;
|
|
16262
16856
|
});
|
|
16263
|
-
builder.addCase(getBrands.fulfilled, function (state,
|
|
16264
|
-
var payload =
|
|
16857
|
+
builder.addCase(getBrands.fulfilled, function (state, _ref1045) {
|
|
16858
|
+
var payload = _ref1045.payload;
|
|
16265
16859
|
state.brands = payload;
|
|
16266
16860
|
});
|
|
16267
|
-
builder.addCase(getBrandsAll.fulfilled, function (state,
|
|
16268
|
-
var payload =
|
|
16861
|
+
builder.addCase(getBrandsAll.fulfilled, function (state, _ref1046) {
|
|
16862
|
+
var payload = _ref1046.payload;
|
|
16269
16863
|
state.brandsAll = payload;
|
|
16270
16864
|
});
|
|
16271
|
-
builder.addCase(getChassisTypes.fulfilled, function (state,
|
|
16272
|
-
var payload =
|
|
16865
|
+
builder.addCase(getChassisTypes.fulfilled, function (state, _ref1047) {
|
|
16866
|
+
var payload = _ref1047.payload;
|
|
16273
16867
|
state.chassisTypes = payload;
|
|
16274
16868
|
});
|
|
16275
|
-
builder.addCase(getChassisTypesAll.fulfilled, function (state,
|
|
16276
|
-
var payload =
|
|
16869
|
+
builder.addCase(getChassisTypesAll.fulfilled, function (state, _ref1048) {
|
|
16870
|
+
var payload = _ref1048.payload;
|
|
16277
16871
|
state.chassisTypesAll = payload;
|
|
16278
16872
|
});
|
|
16279
|
-
builder.addCase(getColor.fulfilled, function (state,
|
|
16280
|
-
var payload =
|
|
16873
|
+
builder.addCase(getColor.fulfilled, function (state, _ref1049) {
|
|
16874
|
+
var payload = _ref1049.payload;
|
|
16281
16875
|
state.color = payload;
|
|
16282
16876
|
});
|
|
16283
|
-
builder.addCase(getColorAll.fulfilled, function (state,
|
|
16284
|
-
var payload =
|
|
16877
|
+
builder.addCase(getColorAll.fulfilled, function (state, _ref1050) {
|
|
16878
|
+
var payload = _ref1050.payload;
|
|
16285
16879
|
state.colorAll = payload;
|
|
16286
16880
|
});
|
|
16287
|
-
builder.addCase(getEnginetype.fulfilled, function (state,
|
|
16288
|
-
var payload =
|
|
16881
|
+
builder.addCase(getEnginetype.fulfilled, function (state, _ref1051) {
|
|
16882
|
+
var payload = _ref1051.payload;
|
|
16289
16883
|
state.enginetype = payload;
|
|
16290
16884
|
});
|
|
16291
|
-
builder.addCase(getEnginetypeAll.fulfilled, function (state,
|
|
16292
|
-
var payload =
|
|
16885
|
+
builder.addCase(getEnginetypeAll.fulfilled, function (state, _ref1052) {
|
|
16886
|
+
var payload = _ref1052.payload;
|
|
16293
16887
|
state.enginetypeAll = payload;
|
|
16294
16888
|
});
|
|
16295
|
-
builder.addCase(getGearboxtype.fulfilled, function (state,
|
|
16296
|
-
var payload =
|
|
16889
|
+
builder.addCase(getGearboxtype.fulfilled, function (state, _ref1053) {
|
|
16890
|
+
var payload = _ref1053.payload;
|
|
16297
16891
|
state.gearboxtype = payload;
|
|
16298
16892
|
});
|
|
16299
|
-
builder.addCase(getGearboxtypeAll.fulfilled, function (state,
|
|
16300
|
-
var payload =
|
|
16893
|
+
builder.addCase(getGearboxtypeAll.fulfilled, function (state, _ref1054) {
|
|
16894
|
+
var payload = _ref1054.payload;
|
|
16301
16895
|
state.gearboxtypeAll = payload;
|
|
16302
16896
|
});
|
|
16303
|
-
builder.addCase(getIssuedauthoritie.fulfilled, function (state,
|
|
16304
|
-
var payload =
|
|
16897
|
+
builder.addCase(getIssuedauthoritie.fulfilled, function (state, _ref1055) {
|
|
16898
|
+
var payload = _ref1055.payload;
|
|
16305
16899
|
state.issuedauthoritie = payload;
|
|
16306
16900
|
});
|
|
16307
|
-
builder.addCase(getIssuedauthoritieAll.fulfilled, function (state,
|
|
16308
|
-
var payload =
|
|
16901
|
+
builder.addCase(getIssuedauthoritieAll.fulfilled, function (state, _ref1056) {
|
|
16902
|
+
var payload = _ref1056.payload;
|
|
16309
16903
|
state.issuedauthoritieAll = payload;
|
|
16310
16904
|
});
|
|
16311
|
-
builder.addCase(getModel.fulfilled, function (state,
|
|
16312
|
-
var payload =
|
|
16905
|
+
builder.addCase(getModel.fulfilled, function (state, _ref1057) {
|
|
16906
|
+
var payload = _ref1057.payload;
|
|
16313
16907
|
state.model = payload;
|
|
16314
16908
|
});
|
|
16315
|
-
builder.addCase(getModelAll.fulfilled, function (state,
|
|
16316
|
-
var payload =
|
|
16909
|
+
builder.addCase(getModelAll.fulfilled, function (state, _ref1058) {
|
|
16910
|
+
var payload = _ref1058.payload;
|
|
16317
16911
|
state.modelAll = payload;
|
|
16318
16912
|
});
|
|
16319
|
-
builder.addCase(getOwnershiptype.fulfilled, function (state,
|
|
16320
|
-
var payload =
|
|
16913
|
+
builder.addCase(getOwnershiptype.fulfilled, function (state, _ref1059) {
|
|
16914
|
+
var payload = _ref1059.payload;
|
|
16321
16915
|
state.ownershiptype = payload;
|
|
16322
16916
|
});
|
|
16323
|
-
builder.addCase(getOwnershiptypeAll.fulfilled, function (state,
|
|
16324
|
-
var payload =
|
|
16917
|
+
builder.addCase(getOwnershiptypeAll.fulfilled, function (state, _ref1060) {
|
|
16918
|
+
var payload = _ref1060.payload;
|
|
16325
16919
|
state.ownershiptypeAll = payload;
|
|
16326
16920
|
});
|
|
16327
|
-
builder.addCase(getOrganisationrecord.fulfilled, function (state,
|
|
16328
|
-
var payload =
|
|
16921
|
+
builder.addCase(getOrganisationrecord.fulfilled, function (state, _ref1061) {
|
|
16922
|
+
var payload = _ref1061.payload;
|
|
16329
16923
|
state.organisationrecord = payload;
|
|
16330
16924
|
});
|
|
16331
|
-
builder.addCase(getOrganisationrecordAll.fulfilled, function (state,
|
|
16332
|
-
var payload =
|
|
16925
|
+
builder.addCase(getOrganisationrecordAll.fulfilled, function (state, _ref1062) {
|
|
16926
|
+
var payload = _ref1062.payload;
|
|
16333
16927
|
state.organisationrecordAll = payload;
|
|
16334
16928
|
});
|
|
16335
|
-
builder.addCase(getTransmittertype.fulfilled, function (state,
|
|
16336
|
-
var payload =
|
|
16929
|
+
builder.addCase(getTransmittertype.fulfilled, function (state, _ref1063) {
|
|
16930
|
+
var payload = _ref1063.payload;
|
|
16337
16931
|
state.transmittertype = payload;
|
|
16338
16932
|
});
|
|
16339
|
-
builder.addCase(getTransmittertypeAll.fulfilled, function (state,
|
|
16340
|
-
var payload =
|
|
16933
|
+
builder.addCase(getTransmittertypeAll.fulfilled, function (state, _ref1064) {
|
|
16934
|
+
var payload = _ref1064.payload;
|
|
16341
16935
|
state.transmittertypeAll = payload;
|
|
16342
16936
|
});
|
|
16343
|
-
builder.addCase(getVehicle.fulfilled, function (state,
|
|
16344
|
-
var payload =
|
|
16937
|
+
builder.addCase(getVehicle.fulfilled, function (state, _ref1065) {
|
|
16938
|
+
var payload = _ref1065.payload;
|
|
16345
16939
|
state.vehicle = payload;
|
|
16346
16940
|
});
|
|
16347
|
-
builder.addCase(getVehicleAll.fulfilled, function (state,
|
|
16348
|
-
var payload =
|
|
16941
|
+
builder.addCase(getVehicleAll.fulfilled, function (state, _ref1066) {
|
|
16942
|
+
var payload = _ref1066.payload;
|
|
16349
16943
|
state.vehicleAll = payload;
|
|
16350
16944
|
});
|
|
16351
|
-
builder.addCase(getVehicletype.fulfilled, function (state,
|
|
16352
|
-
var payload =
|
|
16945
|
+
builder.addCase(getVehicletype.fulfilled, function (state, _ref1067) {
|
|
16946
|
+
var payload = _ref1067.payload;
|
|
16353
16947
|
state.vehicletype = payload;
|
|
16354
16948
|
});
|
|
16355
|
-
builder.addCase(getVehicletypeAll.fulfilled, function (state,
|
|
16356
|
-
var payload =
|
|
16949
|
+
builder.addCase(getVehicletypeAll.fulfilled, function (state, _ref1068) {
|
|
16950
|
+
var payload = _ref1068.payload;
|
|
16357
16951
|
state.vehicletypeAll = payload;
|
|
16358
16952
|
});
|
|
16359
|
-
builder.addCase(getVrc.fulfilled, function (state,
|
|
16360
|
-
var payload =
|
|
16953
|
+
builder.addCase(getVrc.fulfilled, function (state, _ref1069) {
|
|
16954
|
+
var payload = _ref1069.payload;
|
|
16361
16955
|
state.vrc = payload;
|
|
16362
16956
|
});
|
|
16363
|
-
builder.addCase(getVrcAll.fulfilled, function (state,
|
|
16364
|
-
var payload =
|
|
16957
|
+
builder.addCase(getVrcAll.fulfilled, function (state, _ref1070) {
|
|
16958
|
+
var payload = _ref1070.payload;
|
|
16365
16959
|
state.vrcAll = payload;
|
|
16366
16960
|
});
|
|
16367
|
-
builder.addCase(getAcademicdegrees.fulfilled, function (state,
|
|
16368
|
-
var payload =
|
|
16961
|
+
builder.addCase(getAcademicdegrees.fulfilled, function (state, _ref1071) {
|
|
16962
|
+
var payload = _ref1071.payload;
|
|
16369
16963
|
state.academicdegrees = payload;
|
|
16370
16964
|
});
|
|
16371
|
-
builder.addCase(getAcademicdegreesAll.fulfilled, function (state,
|
|
16372
|
-
var payload =
|
|
16965
|
+
builder.addCase(getAcademicdegreesAll.fulfilled, function (state, _ref1072) {
|
|
16966
|
+
var payload = _ref1072.payload;
|
|
16373
16967
|
state.academicdegreesAll = payload;
|
|
16374
16968
|
});
|
|
16375
|
-
builder.addCase(getDisabilitystatuses.fulfilled, function (state,
|
|
16376
|
-
var payload =
|
|
16969
|
+
builder.addCase(getDisabilitystatuses.fulfilled, function (state, _ref1073) {
|
|
16970
|
+
var payload = _ref1073.payload;
|
|
16377
16971
|
state.disabilitystatuses = payload;
|
|
16378
16972
|
});
|
|
16379
|
-
builder.addCase(getDisabilitystatusesAll.fulfilled, function (state,
|
|
16380
|
-
var payload =
|
|
16973
|
+
builder.addCase(getDisabilitystatusesAll.fulfilled, function (state, _ref1074) {
|
|
16974
|
+
var payload = _ref1074.payload;
|
|
16381
16975
|
state.disabilitystatusesAll = payload;
|
|
16382
16976
|
});
|
|
16383
|
-
builder.addCase(getHonorarytitles.fulfilled, function (state,
|
|
16384
|
-
var payload =
|
|
16977
|
+
builder.addCase(getHonorarytitles.fulfilled, function (state, _ref1075) {
|
|
16978
|
+
var payload = _ref1075.payload;
|
|
16385
16979
|
state.honorarytitles = payload;
|
|
16386
16980
|
});
|
|
16387
|
-
builder.addCase(getHonorarytitlesAll.fulfilled, function (state,
|
|
16388
|
-
var payload =
|
|
16981
|
+
builder.addCase(getHonorarytitlesAll.fulfilled, function (state, _ref1076) {
|
|
16982
|
+
var payload = _ref1076.payload;
|
|
16389
16983
|
state.honorarytitlesAll = payload;
|
|
16390
16984
|
});
|
|
16391
|
-
builder.addCase(getMilitarystaffs.fulfilled, function (state,
|
|
16392
|
-
var payload =
|
|
16985
|
+
builder.addCase(getMilitarystaffs.fulfilled, function (state, _ref1077) {
|
|
16986
|
+
var payload = _ref1077.payload;
|
|
16393
16987
|
state.militaryStaffs = payload;
|
|
16394
16988
|
});
|
|
16395
|
-
builder.addCase(getMilitarystaffsAll.fulfilled, function (state,
|
|
16396
|
-
var payload =
|
|
16989
|
+
builder.addCase(getMilitarystaffsAll.fulfilled, function (state, _ref1078) {
|
|
16990
|
+
var payload = _ref1078.payload;
|
|
16397
16991
|
state.militaryStaffsAll = payload;
|
|
16398
16992
|
});
|
|
16399
|
-
builder.addCase(getMilitarycategories.fulfilled, function (state,
|
|
16400
|
-
var payload =
|
|
16993
|
+
builder.addCase(getMilitarycategories.fulfilled, function (state, _ref1079) {
|
|
16994
|
+
var payload = _ref1079.payload;
|
|
16401
16995
|
state.militaryCategories = payload;
|
|
16402
16996
|
});
|
|
16403
|
-
builder.addCase(getMilitarycategoriesAll.fulfilled, function (state,
|
|
16404
|
-
var payload =
|
|
16997
|
+
builder.addCase(getMilitarycategoriesAll.fulfilled, function (state, _ref1080) {
|
|
16998
|
+
var payload = _ref1080.payload;
|
|
16405
16999
|
state.militaryCategoriesAll = payload;
|
|
16406
17000
|
});
|
|
16407
|
-
builder.addCase(getMilitaryranks.fulfilled, function (state,
|
|
16408
|
-
var payload =
|
|
17001
|
+
builder.addCase(getMilitaryranks.fulfilled, function (state, _ref1081) {
|
|
17002
|
+
var payload = _ref1081.payload;
|
|
16409
17003
|
state.militaryranks = payload;
|
|
16410
17004
|
});
|
|
16411
|
-
builder.addCase(getMilitaryranksAll.fulfilled, function (state,
|
|
16412
|
-
var payload =
|
|
17005
|
+
builder.addCase(getMilitaryranksAll.fulfilled, function (state, _ref1082) {
|
|
17006
|
+
var payload = _ref1082.payload;
|
|
16413
17007
|
state.militaryranksAll = payload;
|
|
16414
17008
|
});
|
|
16415
|
-
builder.addCase(getMilitarygroups.fulfilled, function (state,
|
|
16416
|
-
var payload =
|
|
17009
|
+
builder.addCase(getMilitarygroups.fulfilled, function (state, _ref1083) {
|
|
17010
|
+
var payload = _ref1083.payload;
|
|
16417
17011
|
state.militarygroups = payload;
|
|
16418
17012
|
});
|
|
16419
|
-
builder.addCase(getMilitarygroupsAll.fulfilled, function (state,
|
|
16420
|
-
var payload =
|
|
17013
|
+
builder.addCase(getMilitarygroupsAll.fulfilled, function (state, _ref1084) {
|
|
17014
|
+
var payload = _ref1084.payload;
|
|
16421
17015
|
state.militarygroupsAll = payload;
|
|
16422
17016
|
});
|
|
16423
|
-
builder.addCase(getGeneralstructurestatuses.fulfilled, function (state,
|
|
16424
|
-
var payload =
|
|
17017
|
+
builder.addCase(getGeneralstructurestatuses.fulfilled, function (state, _ref1085) {
|
|
17018
|
+
var payload = _ref1085.payload;
|
|
16425
17019
|
state.generalstructurestatuses = payload;
|
|
16426
17020
|
});
|
|
16427
|
-
builder.addCase(getGeneralstructurestatusesAll.fulfilled, function (state,
|
|
16428
|
-
var payload =
|
|
17021
|
+
builder.addCase(getGeneralstructurestatusesAll.fulfilled, function (state, _ref1086) {
|
|
17022
|
+
var payload = _ref1086.payload;
|
|
16429
17023
|
state.generalstructurestatusesAll = payload;
|
|
16430
17024
|
});
|
|
16431
|
-
builder.addCase(getWorkschedules.fulfilled, function (state,
|
|
16432
|
-
var payload =
|
|
17025
|
+
builder.addCase(getWorkschedules.fulfilled, function (state, _ref1087) {
|
|
17026
|
+
var payload = _ref1087.payload;
|
|
16433
17027
|
state.workschedules = payload;
|
|
16434
17028
|
});
|
|
16435
|
-
builder.addCase(getWorkschedulesAll.fulfilled, function (state,
|
|
16436
|
-
var payload =
|
|
17029
|
+
builder.addCase(getWorkschedulesAll.fulfilled, function (state, _ref1088) {
|
|
17030
|
+
var payload = _ref1088.payload;
|
|
16437
17031
|
state.workschedulesAll = payload;
|
|
16438
17032
|
});
|
|
16439
|
-
builder.addCase(getSpecializations.fulfilled, function (state,
|
|
16440
|
-
var payload =
|
|
17033
|
+
builder.addCase(getSpecializations.fulfilled, function (state, _ref1089) {
|
|
17034
|
+
var payload = _ref1089.payload;
|
|
16441
17035
|
state.specializations = payload;
|
|
16442
17036
|
});
|
|
16443
|
-
builder.addCase(getSpecializationsAll.fulfilled, function (state,
|
|
16444
|
-
var payload =
|
|
17037
|
+
builder.addCase(getSpecializationsAll.fulfilled, function (state, _ref1090) {
|
|
17038
|
+
var payload = _ref1090.payload;
|
|
16445
17039
|
state.specializationsAll = payload;
|
|
16446
17040
|
});
|
|
16447
|
-
builder.addCase(getWarparticipants.fulfilled, function (state,
|
|
16448
|
-
var payload =
|
|
17041
|
+
builder.addCase(getWarparticipants.fulfilled, function (state, _ref1091) {
|
|
17042
|
+
var payload = _ref1091.payload;
|
|
16449
17043
|
state.warparticipants = payload;
|
|
16450
17044
|
});
|
|
16451
|
-
builder.addCase(getWarparticipantsAll.fulfilled, function (state,
|
|
16452
|
-
var payload =
|
|
17045
|
+
builder.addCase(getWarparticipantsAll.fulfilled, function (state, _ref1092) {
|
|
17046
|
+
var payload = _ref1092.payload;
|
|
16453
17047
|
state.warparticipantsAll = payload;
|
|
16454
17048
|
});
|
|
16455
|
-
builder.addCase(getGeneralstructuretypes.fulfilled, function (state,
|
|
16456
|
-
var payload =
|
|
17049
|
+
builder.addCase(getGeneralstructuretypes.fulfilled, function (state, _ref1093) {
|
|
17050
|
+
var payload = _ref1093.payload;
|
|
16457
17051
|
state.generalstructuretypes = payload;
|
|
16458
17052
|
});
|
|
16459
|
-
builder.addCase(getGeneralstructuretypesAll.fulfilled, function (state,
|
|
16460
|
-
var payload =
|
|
17053
|
+
builder.addCase(getGeneralstructuretypesAll.fulfilled, function (state, _ref1094) {
|
|
17054
|
+
var payload = _ref1094.payload;
|
|
16461
17055
|
state.generalstructuretypesAll = payload;
|
|
16462
17056
|
});
|
|
16463
|
-
builder.addCase(getEducationinstitutions.fulfilled, function (state,
|
|
16464
|
-
var payload =
|
|
17057
|
+
builder.addCase(getEducationinstitutions.fulfilled, function (state, _ref1095) {
|
|
17058
|
+
var payload = _ref1095.payload;
|
|
16465
17059
|
state.educationinstitutions = payload;
|
|
16466
17060
|
});
|
|
16467
|
-
builder.addCase(getEducationinstitutionsAll.fulfilled, function (state,
|
|
16468
|
-
var payload =
|
|
17061
|
+
builder.addCase(getEducationinstitutionsAll.fulfilled, function (state, _ref1096) {
|
|
17062
|
+
var payload = _ref1096.payload;
|
|
16469
17063
|
state.educationinstitutionsAll = payload;
|
|
16470
17064
|
});
|
|
16471
|
-
builder.addCase(getEducationpayments.fulfilled, function (state,
|
|
16472
|
-
var payload =
|
|
17065
|
+
builder.addCase(getEducationpayments.fulfilled, function (state, _ref1097) {
|
|
17066
|
+
var payload = _ref1097.payload;
|
|
16473
17067
|
state.educationPayments = payload;
|
|
16474
17068
|
});
|
|
16475
|
-
builder.addCase(getEducationpaymentsAll.fulfilled, function (state,
|
|
16476
|
-
var payload =
|
|
17069
|
+
builder.addCase(getEducationpaymentsAll.fulfilled, function (state, _ref1098) {
|
|
17070
|
+
var payload = _ref1098.payload;
|
|
16477
17071
|
state.educationPaymentsAll = payload;
|
|
16478
17072
|
});
|
|
16479
|
-
builder.addCase(getEducationlevels.fulfilled, function (state,
|
|
16480
|
-
var payload =
|
|
17073
|
+
builder.addCase(getEducationlevels.fulfilled, function (state, _ref1099) {
|
|
17074
|
+
var payload = _ref1099.payload;
|
|
16481
17075
|
state.educationlevels = payload;
|
|
16482
17076
|
});
|
|
16483
|
-
builder.addCase(getEducationlevelsAll.fulfilled, function (state,
|
|
16484
|
-
var payload =
|
|
17077
|
+
builder.addCase(getEducationlevelsAll.fulfilled, function (state, _ref1100) {
|
|
17078
|
+
var payload = _ref1100.payload;
|
|
16485
17079
|
state.educationlevelsAll = payload;
|
|
16486
17080
|
});
|
|
16487
|
-
builder.addCase(getReprimandtypes.fulfilled, function (state,
|
|
16488
|
-
var payload =
|
|
17081
|
+
builder.addCase(getReprimandtypes.fulfilled, function (state, _ref1101) {
|
|
17082
|
+
var payload = _ref1101.payload;
|
|
16489
17083
|
state.reprimandTypes = payload;
|
|
16490
17084
|
});
|
|
16491
|
-
builder.addCase(getReprimandtypesAll.fulfilled, function (state,
|
|
16492
|
-
var payload =
|
|
17085
|
+
builder.addCase(getReprimandtypesAll.fulfilled, function (state, _ref1102) {
|
|
17086
|
+
var payload = _ref1102.payload;
|
|
16493
17087
|
state.reprimandTypesAll = payload;
|
|
16494
17088
|
});
|
|
16495
|
-
builder.addCase(getSpecialdays.fulfilled, function (state,
|
|
16496
|
-
var payload =
|
|
17089
|
+
builder.addCase(getSpecialdays.fulfilled, function (state, _ref1103) {
|
|
17090
|
+
var payload = _ref1103.payload;
|
|
16497
17091
|
state.specialdays = payload;
|
|
16498
17092
|
});
|
|
16499
|
-
builder.addCase(getSpecialdaysAll.fulfilled, function (state,
|
|
16500
|
-
var payload =
|
|
17093
|
+
builder.addCase(getSpecialdaysAll.fulfilled, function (state, _ref1104) {
|
|
17094
|
+
var payload = _ref1104.payload;
|
|
16501
17095
|
state.specialdaysAll = payload;
|
|
16502
17096
|
});
|
|
16503
|
-
builder.addCase(getCategories.fulfilled, function (state,
|
|
16504
|
-
var payload =
|
|
17097
|
+
builder.addCase(getCategories.fulfilled, function (state, _ref1105) {
|
|
17098
|
+
var payload = _ref1105.payload;
|
|
16505
17099
|
state.categories = payload;
|
|
16506
17100
|
});
|
|
16507
|
-
builder.addCase(getCategoriesAll.fulfilled, function (state,
|
|
16508
|
-
var payload =
|
|
17101
|
+
builder.addCase(getCategoriesAll.fulfilled, function (state, _ref1106) {
|
|
17102
|
+
var payload = _ref1106.payload;
|
|
16509
17103
|
state.categoriesAll = payload;
|
|
16510
17104
|
});
|
|
16511
|
-
builder.addCase(getRegions.fulfilled, function (state,
|
|
16512
|
-
var payload =
|
|
17105
|
+
builder.addCase(getRegions.fulfilled, function (state, _ref1107) {
|
|
17106
|
+
var payload = _ref1107.payload;
|
|
16513
17107
|
state.regions = payload;
|
|
16514
17108
|
});
|
|
16515
|
-
builder.addCase(getRegionsAll.fulfilled, function (state,
|
|
16516
|
-
var payload =
|
|
17109
|
+
builder.addCase(getRegionsAll.fulfilled, function (state, _ref1108) {
|
|
17110
|
+
var payload = _ref1108.payload;
|
|
16517
17111
|
state.regionsAll = payload;
|
|
16518
17112
|
});
|
|
16519
|
-
builder.addCase(getRegionsChildren.fulfilled, function (state,
|
|
16520
|
-
var payload =
|
|
17113
|
+
builder.addCase(getRegionsChildren.fulfilled, function (state, _ref1109) {
|
|
17114
|
+
var payload = _ref1109.payload;
|
|
16521
17115
|
state.regionChildren = payload;
|
|
16522
17116
|
});
|
|
16523
|
-
builder.addCase(getAreas.fulfilled, function (state,
|
|
16524
|
-
var payload =
|
|
17117
|
+
builder.addCase(getAreas.fulfilled, function (state, _ref1110) {
|
|
17118
|
+
var payload = _ref1110.payload;
|
|
16525
17119
|
state.areas = payload;
|
|
16526
17120
|
});
|
|
16527
|
-
builder.addCase(getAreasAll.fulfilled, function (state,
|
|
16528
|
-
var payload =
|
|
17121
|
+
builder.addCase(getAreasAll.fulfilled, function (state, _ref1111) {
|
|
17122
|
+
var payload = _ref1111.payload;
|
|
16529
17123
|
state.areasAll = payload;
|
|
16530
17124
|
});
|
|
16531
|
-
builder.addCase(getCompanies.fulfilled, function (state,
|
|
16532
|
-
var payload =
|
|
17125
|
+
builder.addCase(getCompanies.fulfilled, function (state, _ref1112) {
|
|
17126
|
+
var payload = _ref1112.payload;
|
|
16533
17127
|
state.companies = payload;
|
|
16534
17128
|
});
|
|
16535
|
-
builder.addCase(getCompaniesAll.fulfilled, function (state,
|
|
16536
|
-
var payload =
|
|
17129
|
+
builder.addCase(getCompaniesAll.fulfilled, function (state, _ref1113) {
|
|
17130
|
+
var payload = _ref1113.payload;
|
|
16537
17131
|
state.companiesAll = payload;
|
|
16538
17132
|
});
|
|
16539
|
-
builder.addCase(getPositions.fulfilled, function (state,
|
|
16540
|
-
var payload =
|
|
17133
|
+
builder.addCase(getPositions.fulfilled, function (state, _ref1114) {
|
|
17134
|
+
var payload = _ref1114.payload;
|
|
16541
17135
|
state.positions = payload;
|
|
16542
17136
|
});
|
|
16543
|
-
builder.addCase(getPositionsAll.fulfilled, function (state,
|
|
16544
|
-
var payload =
|
|
17137
|
+
builder.addCase(getPositionsAll.fulfilled, function (state, _ref1115) {
|
|
17138
|
+
var payload = _ref1115.payload;
|
|
16545
17139
|
state.positionsAll = payload;
|
|
16546
17140
|
});
|
|
16547
|
-
builder.addCase(getHalls.fulfilled, function (state,
|
|
16548
|
-
var payload =
|
|
17141
|
+
builder.addCase(getHalls.fulfilled, function (state, _ref1116) {
|
|
17142
|
+
var payload = _ref1116.payload;
|
|
16549
17143
|
state.halls = payload;
|
|
16550
17144
|
});
|
|
16551
|
-
builder.addCase(getHallsAll.fulfilled, function (state,
|
|
16552
|
-
var payload =
|
|
17145
|
+
builder.addCase(getHallsAll.fulfilled, function (state, _ref1117) {
|
|
17146
|
+
var payload = _ref1117.payload;
|
|
16553
17147
|
state.hallsAll = payload;
|
|
16554
17148
|
});
|
|
16555
|
-
builder.addCase(getEmployeeConfigurations.fulfilled, function (state,
|
|
16556
|
-
var payload =
|
|
17149
|
+
builder.addCase(getEmployeeConfigurations.fulfilled, function (state, _ref1118) {
|
|
17150
|
+
var payload = _ref1118.payload;
|
|
16557
17151
|
state.employeeConfigurations = payload;
|
|
16558
17152
|
});
|
|
16559
|
-
builder.addCase(getEmployeeConfigurationsAll.fulfilled, function (state,
|
|
16560
|
-
var payload =
|
|
17153
|
+
builder.addCase(getEmployeeConfigurationsAll.fulfilled, function (state, _ref1119) {
|
|
17154
|
+
var payload = _ref1119.payload;
|
|
16561
17155
|
state.employeeConfigurationsAll = payload;
|
|
16562
17156
|
});
|
|
16563
|
-
builder.addCase(getContragenttypes.fulfilled, function (state,
|
|
16564
|
-
var payload =
|
|
17157
|
+
builder.addCase(getContragenttypes.fulfilled, function (state, _ref1120) {
|
|
17158
|
+
var payload = _ref1120.payload;
|
|
16565
17159
|
state.contragenttypes = payload;
|
|
16566
17160
|
});
|
|
16567
|
-
builder.addCase(getContragenttypesAll.fulfilled, function (state,
|
|
16568
|
-
var payload =
|
|
17161
|
+
builder.addCase(getContragenttypesAll.fulfilled, function (state, _ref1121) {
|
|
17162
|
+
var payload = _ref1121.payload;
|
|
16569
17163
|
state.contragenttypesAll = payload;
|
|
16570
17164
|
});
|
|
16571
|
-
builder.addCase(getContracttypes.fulfilled, function (state,
|
|
16572
|
-
var payload =
|
|
17165
|
+
builder.addCase(getContracttypes.fulfilled, function (state, _ref1122) {
|
|
17166
|
+
var payload = _ref1122.payload;
|
|
16573
17167
|
state.contracttypes = payload;
|
|
16574
17168
|
});
|
|
16575
|
-
builder.addCase(getContracttypesAll.fulfilled, function (state,
|
|
16576
|
-
var payload =
|
|
17169
|
+
builder.addCase(getContracttypesAll.fulfilled, function (state, _ref1123) {
|
|
17170
|
+
var payload = _ref1123.payload;
|
|
16577
17171
|
state.contracttypesAll = payload;
|
|
16578
17172
|
});
|
|
16579
|
-
builder.addCase(getContractcurrencies.fulfilled, function (state,
|
|
16580
|
-
var payload =
|
|
17173
|
+
builder.addCase(getContractcurrencies.fulfilled, function (state, _ref1124) {
|
|
17174
|
+
var payload = _ref1124.payload;
|
|
16581
17175
|
state.contractcurrencies = payload;
|
|
16582
17176
|
});
|
|
16583
|
-
builder.addCase(getContractcurrenciesAll.fulfilled, function (state,
|
|
16584
|
-
var payload =
|
|
17177
|
+
builder.addCase(getContractcurrenciesAll.fulfilled, function (state, _ref1125) {
|
|
17178
|
+
var payload = _ref1125.payload;
|
|
16585
17179
|
state.contractcurrenciesAll = payload;
|
|
16586
17180
|
});
|
|
16587
|
-
builder.addCase(getOrders.fulfilled, function (state,
|
|
16588
|
-
var payload =
|
|
17181
|
+
builder.addCase(getOrders.fulfilled, function (state, _ref1126) {
|
|
17182
|
+
var payload = _ref1126.payload;
|
|
16589
17183
|
state.orders = payload;
|
|
16590
17184
|
});
|
|
16591
|
-
builder.addCase(getOrdersAll.fulfilled, function (state,
|
|
16592
|
-
var payload =
|
|
17185
|
+
builder.addCase(getOrdersAll.fulfilled, function (state, _ref1127) {
|
|
17186
|
+
var payload = _ref1127.payload;
|
|
16593
17187
|
state.ordersAll = payload;
|
|
16594
17188
|
});
|
|
16595
|
-
builder.addCase(getDrivingcategoriesAll.fulfilled, function (state,
|
|
16596
|
-
var payload =
|
|
17189
|
+
builder.addCase(getDrivingcategoriesAll.fulfilled, function (state, _ref1128) {
|
|
17190
|
+
var payload = _ref1128.payload;
|
|
16597
17191
|
state.drivingcategoriesAll = payload;
|
|
16598
17192
|
});
|
|
16599
|
-
builder.addCase(getWorkModes.fulfilled, function (state,
|
|
16600
|
-
var payload =
|
|
17193
|
+
builder.addCase(getWorkModes.fulfilled, function (state, _ref1129) {
|
|
17194
|
+
var payload = _ref1129.payload;
|
|
16601
17195
|
state.workModes = payload;
|
|
16602
17196
|
});
|
|
16603
|
-
builder.addCase(getWorkModesAll.fulfilled, function (state,
|
|
16604
|
-
var payload =
|
|
17197
|
+
builder.addCase(getWorkModesAll.fulfilled, function (state, _ref1130) {
|
|
17198
|
+
var payload = _ref1130.payload;
|
|
16605
17199
|
state.workModesAll = payload;
|
|
16606
17200
|
});
|
|
16607
|
-
builder.addCase(getVehicleCategories.fulfilled, function (state,
|
|
16608
|
-
var payload =
|
|
17201
|
+
builder.addCase(getVehicleCategories.fulfilled, function (state, _ref1131) {
|
|
17202
|
+
var payload = _ref1131.payload;
|
|
16609
17203
|
state.vehicleCategories = payload;
|
|
16610
17204
|
});
|
|
16611
|
-
builder.addCase(getVehicleCategoriesAll.fulfilled, function (state,
|
|
16612
|
-
var payload =
|
|
17205
|
+
builder.addCase(getVehicleCategoriesAll.fulfilled, function (state, _ref1132) {
|
|
17206
|
+
var payload = _ref1132.payload;
|
|
16613
17207
|
state.vehicleCategoriesAll = payload;
|
|
16614
17208
|
});
|
|
16615
|
-
builder.addCase(getChemicals.fulfilled, function (state,
|
|
16616
|
-
var payload =
|
|
17209
|
+
builder.addCase(getChemicals.fulfilled, function (state, _ref1133) {
|
|
17210
|
+
var payload = _ref1133.payload;
|
|
16617
17211
|
state.chemicals = payload;
|
|
16618
17212
|
});
|
|
16619
|
-
builder.addCase(getChemicalsAll.fulfilled, function (state,
|
|
16620
|
-
var payload =
|
|
17213
|
+
builder.addCase(getChemicalsAll.fulfilled, function (state, _ref1134) {
|
|
17214
|
+
var payload = _ref1134.payload;
|
|
16621
17215
|
state.chemicalsAll = payload;
|
|
16622
17216
|
});
|
|
16623
|
-
builder.addCase(getRepairtypes.fulfilled, function (state,
|
|
16624
|
-
var payload =
|
|
17217
|
+
builder.addCase(getRepairtypes.fulfilled, function (state, _ref1135) {
|
|
17218
|
+
var payload = _ref1135.payload;
|
|
16625
17219
|
state.repairtypes = payload;
|
|
16626
17220
|
});
|
|
16627
|
-
builder.addCase(getRepairtypesAll.fulfilled, function (state,
|
|
16628
|
-
var payload =
|
|
17221
|
+
builder.addCase(getRepairtypesAll.fulfilled, function (state, _ref1136) {
|
|
17222
|
+
var payload = _ref1136.payload;
|
|
16629
17223
|
state.repairtypesAll = payload;
|
|
16630
17224
|
});
|
|
16631
|
-
builder.addCase(getDetailparts.fulfilled, function (state,
|
|
16632
|
-
var payload =
|
|
17225
|
+
builder.addCase(getDetailparts.fulfilled, function (state, _ref1137) {
|
|
17226
|
+
var payload = _ref1137.payload;
|
|
16633
17227
|
state.detailparts = payload;
|
|
16634
17228
|
});
|
|
16635
|
-
builder.addCase(getDetailpartsAll.fulfilled, function (state,
|
|
16636
|
-
var payload =
|
|
17229
|
+
builder.addCase(getDetailpartsAll.fulfilled, function (state, _ref1138) {
|
|
17230
|
+
var payload = _ref1138.payload;
|
|
16637
17231
|
state.detailpartsAll = payload;
|
|
16638
17232
|
});
|
|
16639
|
-
builder.addCase(getMeasurementtypes.fulfilled, function (state,
|
|
16640
|
-
var payload =
|
|
17233
|
+
builder.addCase(getMeasurementtypes.fulfilled, function (state, _ref1139) {
|
|
17234
|
+
var payload = _ref1139.payload;
|
|
16641
17235
|
state.measurementtypes = payload;
|
|
16642
17236
|
});
|
|
16643
|
-
builder.addCase(getMeasurementtypesAll.fulfilled, function (state,
|
|
16644
|
-
var payload =
|
|
17237
|
+
builder.addCase(getMeasurementtypesAll.fulfilled, function (state, _ref1140) {
|
|
17238
|
+
var payload = _ref1140.payload;
|
|
16645
17239
|
state.measurementtypesAll = payload;
|
|
16646
17240
|
});
|
|
16647
|
-
builder.addCase(getRepairmentWorkTypes.fulfilled, function (state,
|
|
16648
|
-
var payload =
|
|
17241
|
+
builder.addCase(getRepairmentWorkTypes.fulfilled, function (state, _ref1141) {
|
|
17242
|
+
var payload = _ref1141.payload;
|
|
16649
17243
|
state.repairmentWorkTypes = payload;
|
|
16650
17244
|
});
|
|
16651
|
-
builder.addCase(getRepairmentWorkTypesAll.fulfilled, function (state,
|
|
16652
|
-
var payload =
|
|
17245
|
+
builder.addCase(getRepairmentWorkTypesAll.fulfilled, function (state, _ref1142) {
|
|
17246
|
+
var payload = _ref1142.payload;
|
|
16653
17247
|
state.repairmentWorkTypesAll = payload;
|
|
16654
17248
|
});
|
|
16655
|
-
builder.addCase(getPenaltyTypes.fulfilled, function (state,
|
|
16656
|
-
var payload =
|
|
17249
|
+
builder.addCase(getPenaltyTypes.fulfilled, function (state, _ref1143) {
|
|
17250
|
+
var payload = _ref1143.payload;
|
|
16657
17251
|
state.penaltyTypes = payload;
|
|
16658
17252
|
});
|
|
16659
|
-
builder.addCase(getPenaltyTypesAll.fulfilled, function (state,
|
|
16660
|
-
var payload =
|
|
17253
|
+
builder.addCase(getPenaltyTypesAll.fulfilled, function (state, _ref1144) {
|
|
17254
|
+
var payload = _ref1144.payload;
|
|
16661
17255
|
state.penaltyTypesAll = payload;
|
|
16662
17256
|
});
|
|
16663
|
-
builder.addCase(getCrushReasons.fulfilled, function (state,
|
|
16664
|
-
var payload =
|
|
17257
|
+
builder.addCase(getCrushReasons.fulfilled, function (state, _ref1145) {
|
|
17258
|
+
var payload = _ref1145.payload;
|
|
16665
17259
|
state.crushReasons = payload;
|
|
16666
17260
|
});
|
|
16667
|
-
builder.addCase(getCrushReasonsAll.fulfilled, function (state,
|
|
16668
|
-
var payload =
|
|
17261
|
+
builder.addCase(getCrushReasonsAll.fulfilled, function (state, _ref1146) {
|
|
17262
|
+
var payload = _ref1146.payload;
|
|
16669
17263
|
state.crushReasonsAll = payload;
|
|
16670
17264
|
});
|
|
16671
|
-
builder.addCase(getInsuranceTypes.fulfilled, function (state,
|
|
16672
|
-
var payload =
|
|
17265
|
+
builder.addCase(getInsuranceTypes.fulfilled, function (state, _ref1147) {
|
|
17266
|
+
var payload = _ref1147.payload;
|
|
16673
17267
|
state.insuranceTypes = payload;
|
|
16674
17268
|
});
|
|
16675
|
-
builder.addCase(getInsuranceTypesAll.fulfilled, function (state,
|
|
16676
|
-
var payload =
|
|
17269
|
+
builder.addCase(getInsuranceTypesAll.fulfilled, function (state, _ref1148) {
|
|
17270
|
+
var payload = _ref1148.payload;
|
|
16677
17271
|
state.insuranceTypesAll = payload;
|
|
16678
17272
|
});
|
|
16679
|
-
builder.addCase(getExtraServices.fulfilled, function (state,
|
|
16680
|
-
var payload =
|
|
17273
|
+
builder.addCase(getExtraServices.fulfilled, function (state, _ref1149) {
|
|
17274
|
+
var payload = _ref1149.payload;
|
|
16681
17275
|
state.extraServices = payload;
|
|
16682
17276
|
});
|
|
16683
|
-
builder.addCase(getExtraServicesAll.fulfilled, function (state,
|
|
16684
|
-
var payload =
|
|
17277
|
+
builder.addCase(getExtraServicesAll.fulfilled, function (state, _ref1150) {
|
|
17278
|
+
var payload = _ref1150.payload;
|
|
16685
17279
|
state.extraServicesAll = payload;
|
|
16686
17280
|
});
|
|
16687
|
-
builder.addCase(getFuelTypes.fulfilled, function (state,
|
|
16688
|
-
var payload =
|
|
17281
|
+
builder.addCase(getFuelTypes.fulfilled, function (state, _ref1151) {
|
|
17282
|
+
var payload = _ref1151.payload;
|
|
16689
17283
|
state.fuelTypes = payload;
|
|
16690
17284
|
});
|
|
16691
|
-
builder.addCase(getFuelTypesAll.fulfilled, function (state,
|
|
16692
|
-
var payload =
|
|
17285
|
+
builder.addCase(getFuelTypesAll.fulfilled, function (state, _ref1152) {
|
|
17286
|
+
var payload = _ref1152.payload;
|
|
16693
17287
|
state.fuelTypesAll = payload;
|
|
16694
17288
|
});
|
|
16695
|
-
builder.addCase(getOilFields.fulfilled, function (state,
|
|
16696
|
-
var payload =
|
|
17289
|
+
builder.addCase(getOilFields.fulfilled, function (state, _ref1153) {
|
|
17290
|
+
var payload = _ref1153.payload;
|
|
16697
17291
|
state.oilFields = payload;
|
|
16698
17292
|
});
|
|
16699
|
-
builder.addCase(getOilFieldsAll.fulfilled, function (state,
|
|
16700
|
-
var payload =
|
|
17293
|
+
builder.addCase(getOilFieldsAll.fulfilled, function (state, _ref1154) {
|
|
17294
|
+
var payload = _ref1154.payload;
|
|
16701
17295
|
state.oilFieldsAll = payload;
|
|
16702
17296
|
});
|
|
16703
|
-
builder.addCase(getVehicleGroups.fulfilled, function (state,
|
|
16704
|
-
var payload =
|
|
17297
|
+
builder.addCase(getVehicleGroups.fulfilled, function (state, _ref1155) {
|
|
17298
|
+
var payload = _ref1155.payload;
|
|
16705
17299
|
state.vehicleGroups = payload;
|
|
16706
17300
|
});
|
|
16707
|
-
builder.addCase(getVehicleGroupsAll.fulfilled, function (state,
|
|
16708
|
-
var payload =
|
|
17301
|
+
builder.addCase(getVehicleGroupsAll.fulfilled, function (state, _ref1156) {
|
|
17302
|
+
var payload = _ref1156.payload;
|
|
16709
17303
|
state.vehicleGroupsAll = payload;
|
|
16710
17304
|
});
|
|
16711
17305
|
|
|
16712
17306
|
// ---- generated reducers for Owners ----
|
|
16713
|
-
builder.addCase(getOwners.fulfilled, function (state,
|
|
16714
|
-
var payload =
|
|
17307
|
+
builder.addCase(getOwners.fulfilled, function (state, _ref1157) {
|
|
17308
|
+
var payload = _ref1157.payload;
|
|
16715
17309
|
state.owners = payload;
|
|
16716
17310
|
});
|
|
16717
|
-
builder.addCase(getOwnersAll.fulfilled, function (state,
|
|
16718
|
-
var payload =
|
|
17311
|
+
builder.addCase(getOwnersAll.fulfilled, function (state, _ref1158) {
|
|
17312
|
+
var payload = _ref1158.payload;
|
|
16719
17313
|
state.ownersAll = payload;
|
|
16720
17314
|
});
|
|
16721
17315
|
// ---- end generated reducers ----
|
|
16722
17316
|
|
|
16723
17317
|
// ---- generated reducers for ContractTopics ----
|
|
16724
|
-
builder.addCase(getContractTopics.fulfilled, function (state,
|
|
16725
|
-
var payload =
|
|
17318
|
+
builder.addCase(getContractTopics.fulfilled, function (state, _ref1159) {
|
|
17319
|
+
var payload = _ref1159.payload;
|
|
16726
17320
|
state.contractTopics = payload;
|
|
16727
17321
|
});
|
|
16728
|
-
builder.addCase(getContractTopicsAll.fulfilled, function (state,
|
|
16729
|
-
var payload =
|
|
17322
|
+
builder.addCase(getContractTopicsAll.fulfilled, function (state, _ref1160) {
|
|
17323
|
+
var payload = _ref1160.payload;
|
|
16730
17324
|
state.contractTopicsAll = payload;
|
|
16731
17325
|
});
|
|
16732
17326
|
// ---- end generated reducers ----
|
|
16733
17327
|
|
|
16734
17328
|
// ---- generated reducers for ContractTypesSubtypes ----
|
|
16735
|
-
builder.addCase(getContractTypesSubtypes.fulfilled, function (state,
|
|
16736
|
-
var payload =
|
|
17329
|
+
builder.addCase(getContractTypesSubtypes.fulfilled, function (state, _ref1161) {
|
|
17330
|
+
var payload = _ref1161.payload;
|
|
16737
17331
|
state.contractTypesSubtypes = payload;
|
|
16738
17332
|
});
|
|
16739
|
-
builder.addCase(getContractTypesSubtypesAll.fulfilled, function (state,
|
|
16740
|
-
var payload =
|
|
17333
|
+
builder.addCase(getContractTypesSubtypesAll.fulfilled, function (state, _ref1162) {
|
|
17334
|
+
var payload = _ref1162.payload;
|
|
16741
17335
|
state.contractTypesSubtypesAll = payload;
|
|
16742
17336
|
});
|
|
16743
17337
|
// ---- end generated reducers ----
|
|
16744
17338
|
|
|
16745
17339
|
// ---- generated reducers for DefaultAgreementPlans ----
|
|
16746
|
-
builder.addCase(getDefaultAgreementPlans.fulfilled, function (state,
|
|
16747
|
-
var payload =
|
|
17340
|
+
builder.addCase(getDefaultAgreementPlans.fulfilled, function (state, _ref1163) {
|
|
17341
|
+
var payload = _ref1163.payload;
|
|
16748
17342
|
state.defaultAgreementPlans = payload;
|
|
16749
17343
|
});
|
|
16750
|
-
builder.addCase(getDefaultAgreementPlansAll.fulfilled, function (state,
|
|
16751
|
-
var payload =
|
|
17344
|
+
builder.addCase(getDefaultAgreementPlansAll.fulfilled, function (state, _ref1164) {
|
|
17345
|
+
var payload = _ref1164.payload;
|
|
16752
17346
|
state.defaultAgreementPlansAll = payload;
|
|
16753
17347
|
});
|
|
16754
17348
|
// ---- end generated reducers ----
|
|
16755
17349
|
|
|
16756
17350
|
// ---- generated reducers for RouteLocations ----
|
|
16757
|
-
builder.addCase(getRouteLocations.fulfilled, function (state,
|
|
16758
|
-
var payload =
|
|
17351
|
+
builder.addCase(getRouteLocations.fulfilled, function (state, _ref1165) {
|
|
17352
|
+
var payload = _ref1165.payload;
|
|
16759
17353
|
state.routeLocations = payload;
|
|
16760
17354
|
});
|
|
16761
|
-
builder.addCase(getRouteLocationsAll.fulfilled, function (state,
|
|
16762
|
-
var payload =
|
|
17355
|
+
builder.addCase(getRouteLocationsAll.fulfilled, function (state, _ref1166) {
|
|
17356
|
+
var payload = _ref1166.payload;
|
|
16763
17357
|
state.routeLocationsAll = payload;
|
|
16764
17358
|
});
|
|
16765
17359
|
// ---- end generated reducers ----
|
|
16766
17360
|
|
|
16767
17361
|
// ---- generated reducers for InternalStructure ----
|
|
16768
|
-
builder.addCase(getInternalStructure.fulfilled, function (state,
|
|
16769
|
-
var payload =
|
|
17362
|
+
builder.addCase(getInternalStructure.fulfilled, function (state, _ref1167) {
|
|
17363
|
+
var payload = _ref1167.payload;
|
|
16770
17364
|
state.internalStructure = payload;
|
|
16771
17365
|
});
|
|
16772
|
-
builder.addCase(getInternalStructureAll.fulfilled, function (state,
|
|
16773
|
-
var payload =
|
|
17366
|
+
builder.addCase(getInternalStructureAll.fulfilled, function (state, _ref1168) {
|
|
17367
|
+
var payload = _ref1168.payload;
|
|
16774
17368
|
state.internalStructureAll = payload;
|
|
16775
17369
|
});
|
|
16776
17370
|
// ---- end generated reducers ----
|
|
16777
17371
|
|
|
16778
17372
|
// ---- generated reducers for Field ----
|
|
16779
|
-
builder.addCase(getField.fulfilled, function (state,
|
|
16780
|
-
var payload =
|
|
17373
|
+
builder.addCase(getField.fulfilled, function (state, _ref1169) {
|
|
17374
|
+
var payload = _ref1169.payload;
|
|
16781
17375
|
state.field = payload;
|
|
16782
17376
|
});
|
|
16783
|
-
builder.addCase(getFieldAll.fulfilled, function (state,
|
|
16784
|
-
var payload =
|
|
17377
|
+
builder.addCase(getFieldAll.fulfilled, function (state, _ref1170) {
|
|
17378
|
+
var payload = _ref1170.payload;
|
|
16785
17379
|
state.fieldAll = payload;
|
|
16786
17380
|
});
|
|
16787
17381
|
// ---- end generated reducers ----
|
|
16788
17382
|
|
|
16789
17383
|
// ---- generated reducers for Well ----
|
|
16790
|
-
builder.addCase(getWell.fulfilled, function (state,
|
|
16791
|
-
var payload =
|
|
17384
|
+
builder.addCase(getWell.fulfilled, function (state, _ref1171) {
|
|
17385
|
+
var payload = _ref1171.payload;
|
|
16792
17386
|
state.well = payload;
|
|
16793
17387
|
});
|
|
16794
|
-
builder.addCase(getWellAll.fulfilled, function (state,
|
|
16795
|
-
var payload =
|
|
17388
|
+
builder.addCase(getWellAll.fulfilled, function (state, _ref1172) {
|
|
17389
|
+
var payload = _ref1172.payload;
|
|
16796
17390
|
state.wellAll = payload;
|
|
16797
17391
|
});
|
|
16798
17392
|
// ---- end generated reducers ----
|
|
16799
17393
|
|
|
16800
17394
|
// ---- generated reducers for Barrel ----
|
|
16801
|
-
builder.addCase(getBarrel.fulfilled, function (state,
|
|
16802
|
-
var payload =
|
|
17395
|
+
builder.addCase(getBarrel.fulfilled, function (state, _ref1173) {
|
|
17396
|
+
var payload = _ref1173.payload;
|
|
16803
17397
|
state.barrel = payload;
|
|
16804
17398
|
});
|
|
16805
|
-
builder.addCase(getBarrelAll.fulfilled, function (state,
|
|
16806
|
-
var payload =
|
|
17399
|
+
builder.addCase(getBarrelAll.fulfilled, function (state, _ref1174) {
|
|
17400
|
+
var payload = _ref1174.payload;
|
|
16807
17401
|
state.barrelAll = payload;
|
|
16808
17402
|
});
|
|
16809
17403
|
// ---- end generated reducers ----
|
|
16810
17404
|
|
|
16811
17405
|
// ---- generated reducers for BudgetComponents ----
|
|
16812
|
-
builder.addCase(getBudgetComponents.fulfilled, function (state,
|
|
16813
|
-
var payload =
|
|
17406
|
+
builder.addCase(getBudgetComponents.fulfilled, function (state, _ref1175) {
|
|
17407
|
+
var payload = _ref1175.payload;
|
|
16814
17408
|
state.budgetComponents = payload;
|
|
16815
17409
|
});
|
|
16816
|
-
builder.addCase(getBudgetComponentsAll.fulfilled, function (state,
|
|
16817
|
-
var payload =
|
|
17410
|
+
builder.addCase(getBudgetComponentsAll.fulfilled, function (state, _ref1176) {
|
|
17411
|
+
var payload = _ref1176.payload;
|
|
16818
17412
|
state.budgetComponentsAll = payload;
|
|
16819
17413
|
});
|
|
16820
17414
|
// ---- end generated reducers ----
|
|
16821
17415
|
|
|
16822
17416
|
// ---- generated reducers for Departments ----
|
|
16823
|
-
builder.addCase(getDepartments.fulfilled, function (state,
|
|
16824
|
-
var payload =
|
|
17417
|
+
builder.addCase(getDepartments.fulfilled, function (state, _ref1177) {
|
|
17418
|
+
var payload = _ref1177.payload;
|
|
16825
17419
|
state.departments = payload;
|
|
16826
17420
|
});
|
|
16827
|
-
builder.addCase(getDepartmentsAll.fulfilled, function (state,
|
|
16828
|
-
var payload =
|
|
17421
|
+
builder.addCase(getDepartmentsAll.fulfilled, function (state, _ref1178) {
|
|
17422
|
+
var payload = _ref1178.payload;
|
|
16829
17423
|
state.departmentsAll = payload;
|
|
16830
17424
|
});
|
|
16831
17425
|
// ---- end generated reducers ----
|
|
16832
17426
|
|
|
16833
17427
|
// ---- generated reducers for Pentions ----
|
|
16834
|
-
builder.addCase(getPentions.fulfilled, function (state,
|
|
16835
|
-
var payload =
|
|
17428
|
+
builder.addCase(getPentions.fulfilled, function (state, _ref1179) {
|
|
17429
|
+
var payload = _ref1179.payload;
|
|
16836
17430
|
state.pentions = payload;
|
|
16837
17431
|
});
|
|
16838
|
-
builder.addCase(getPentionsAll.fulfilled, function (state,
|
|
16839
|
-
var payload =
|
|
17432
|
+
builder.addCase(getPentionsAll.fulfilled, function (state, _ref1180) {
|
|
17433
|
+
var payload = _ref1180.payload;
|
|
16840
17434
|
state.pentionsAll = payload;
|
|
16841
17435
|
});
|
|
16842
17436
|
// ---- end generated reducers ----
|
|
16843
17437
|
|
|
16844
17438
|
// ---- generated reducers for Projects ----
|
|
16845
|
-
builder.addCase(getProjects.fulfilled, function (state,
|
|
16846
|
-
var payload =
|
|
17439
|
+
builder.addCase(getProjects.fulfilled, function (state, _ref1181) {
|
|
17440
|
+
var payload = _ref1181.payload;
|
|
16847
17441
|
state.projects = payload;
|
|
16848
17442
|
});
|
|
16849
|
-
builder.addCase(getProjectsAll.fulfilled, function (state,
|
|
16850
|
-
var payload =
|
|
17443
|
+
builder.addCase(getProjectsAll.fulfilled, function (state, _ref1182) {
|
|
17444
|
+
var payload = _ref1182.payload;
|
|
16851
17445
|
state.projectsAll = payload;
|
|
16852
17446
|
});
|
|
16853
17447
|
// ---- end generated reducers ----
|
|
16854
17448
|
|
|
16855
17449
|
// ---- generated reducers for Customers ----
|
|
16856
|
-
builder.addCase(getCustomers.fulfilled, function (state,
|
|
16857
|
-
var payload =
|
|
17450
|
+
builder.addCase(getCustomers.fulfilled, function (state, _ref1183) {
|
|
17451
|
+
var payload = _ref1183.payload;
|
|
16858
17452
|
state.customers = payload;
|
|
16859
17453
|
});
|
|
16860
|
-
builder.addCase(getCustomersAll.fulfilled, function (state,
|
|
16861
|
-
var payload =
|
|
17454
|
+
builder.addCase(getCustomersAll.fulfilled, function (state, _ref1184) {
|
|
17455
|
+
var payload = _ref1184.payload;
|
|
16862
17456
|
state.customersAll = payload;
|
|
16863
17457
|
});
|
|
16864
17458
|
// ---- end generated reducers ----
|
|
17459
|
+
|
|
17460
|
+
// ---- generated reducers for InventoryBrands ----
|
|
17461
|
+
builder.addCase(getInventoryBrands.fulfilled, function (state, _ref1185) {
|
|
17462
|
+
var payload = _ref1185.payload;
|
|
17463
|
+
state.inventoryBrands = payload;
|
|
17464
|
+
});
|
|
17465
|
+
builder.addCase(getInventoryBrandsAll.fulfilled, function (state, _ref1186) {
|
|
17466
|
+
var payload = _ref1186.payload;
|
|
17467
|
+
state.inventoryBrandsAll = payload;
|
|
17468
|
+
});
|
|
17469
|
+
// ---- end generated reducers ----
|
|
17470
|
+
|
|
17471
|
+
// ---- generated reducers for InventoryCategories ----
|
|
17472
|
+
builder.addCase(getInventoryCategories.fulfilled, function (state, _ref1187) {
|
|
17473
|
+
var payload = _ref1187.payload;
|
|
17474
|
+
state.inventoryCategories = payload;
|
|
17475
|
+
});
|
|
17476
|
+
builder.addCase(getInventoryCategoriesAll.fulfilled, function (state, _ref1188) {
|
|
17477
|
+
var payload = _ref1188.payload;
|
|
17478
|
+
state.inventoryCategoriesAll = payload;
|
|
17479
|
+
});
|
|
17480
|
+
// ---- end generated reducers ----
|
|
17481
|
+
|
|
17482
|
+
// ---- generated reducers for InventoryModels ----
|
|
17483
|
+
builder.addCase(getInventoryModels.fulfilled, function (state, _ref1189) {
|
|
17484
|
+
var payload = _ref1189.payload;
|
|
17485
|
+
state.inventoryModels = payload;
|
|
17486
|
+
});
|
|
17487
|
+
builder.addCase(getInventoryModelsAll.fulfilled, function (state, _ref1190) {
|
|
17488
|
+
var payload = _ref1190.payload;
|
|
17489
|
+
state.inventoryModelsAll = payload;
|
|
17490
|
+
});
|
|
17491
|
+
// ---- end generated reducers ----
|
|
16865
17492
|
}
|
|
16866
17493
|
});
|
|
16867
17494
|
var setPage = questionnaire.actions.setPage;
|