@banch0u/core-project-test-repository 1.11.5 → 1.11.7
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 +10 -2
- package/dist/pages/Questionnnaires/QuestionnairesExtraServicesContent/constant.js +58 -0
- package/dist/pages/Questionnnaires/QuestionnairesExtraServicesContent/index.js +250 -0
- package/dist/pages/Questionnnaires/QuestionnairesFuelTypesContent/constant.js +58 -0
- package/dist/pages/Questionnnaires/QuestionnairesFuelTypesContent/index.js +244 -0
- package/dist/routes/QuestionnaireRoutes.js +15 -1
- package/dist/store/slices/questionnaire/index.js +664 -256
- package/dist/store/slices/questionnaire/service.js +238 -0
- package/dist/utils/path.js +5 -1
- package/package.json +1 -1
|
@@ -12604,522 +12604,930 @@ export var insuranceTypesVisibility = createAsyncThunk("/insuranceTypesVisibilit
|
|
|
12604
12604
|
return _ref770.apply(this, arguments);
|
|
12605
12605
|
};
|
|
12606
12606
|
}());
|
|
12607
|
+
//
|
|
12608
|
+
export var getExtraServices = createAsyncThunk("/getExtraServices", /*#__PURE__*/function () {
|
|
12609
|
+
var _ref772 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee386(data, _ref771) {
|
|
12610
|
+
var dispatch, _response$data62, response, _error$response205;
|
|
12611
|
+
return _regeneratorRuntime.wrap(function _callee386$(_context386) {
|
|
12612
|
+
while (1) switch (_context386.prev = _context386.next) {
|
|
12613
|
+
case 0:
|
|
12614
|
+
dispatch = _ref771.dispatch;
|
|
12615
|
+
_context386.prev = 1;
|
|
12616
|
+
dispatch(setLoading(true));
|
|
12617
|
+
_context386.next = 5;
|
|
12618
|
+
return Services.getExtraServices(data.size, data.page, data.query, data.visibility);
|
|
12619
|
+
case 5:
|
|
12620
|
+
response = _context386.sent;
|
|
12621
|
+
dispatch(setLoading(false));
|
|
12622
|
+
return _context386.abrupt("return", response === null || response === void 0 || (_response$data62 = response.data) === null || _response$data62 === void 0 ? void 0 : _response$data62.data);
|
|
12623
|
+
case 10:
|
|
12624
|
+
_context386.prev = 10;
|
|
12625
|
+
_context386.t0 = _context386["catch"](1);
|
|
12626
|
+
errorMessage((_error$response205 = _context386.t0.response) === null || _error$response205 === void 0 || (_error$response205 = _error$response205.data) === null || _error$response205 === void 0 ? void 0 : _error$response205.message);
|
|
12627
|
+
dispatch(setLoading(false));
|
|
12628
|
+
case 14:
|
|
12629
|
+
case "end":
|
|
12630
|
+
return _context386.stop();
|
|
12631
|
+
}
|
|
12632
|
+
}, _callee386, null, [[1, 10]]);
|
|
12633
|
+
}));
|
|
12634
|
+
return function (_x771, _x772) {
|
|
12635
|
+
return _ref772.apply(this, arguments);
|
|
12636
|
+
};
|
|
12637
|
+
}());
|
|
12638
|
+
export var getExtraServicesAll = createAsyncThunk("/getExtraServicesAll", /*#__PURE__*/function () {
|
|
12639
|
+
var _ref774 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee387(visibility, _ref773) {
|
|
12640
|
+
var dispatch, _response$data63, response, _error$response206;
|
|
12641
|
+
return _regeneratorRuntime.wrap(function _callee387$(_context387) {
|
|
12642
|
+
while (1) switch (_context387.prev = _context387.next) {
|
|
12643
|
+
case 0:
|
|
12644
|
+
dispatch = _ref773.dispatch;
|
|
12645
|
+
_context387.prev = 1;
|
|
12646
|
+
dispatch(setLoading(true));
|
|
12647
|
+
_context387.next = 5;
|
|
12648
|
+
return Services.getExtraServicesAll(visibility);
|
|
12649
|
+
case 5:
|
|
12650
|
+
response = _context387.sent;
|
|
12651
|
+
dispatch(setLoading(false));
|
|
12652
|
+
return _context387.abrupt("return", response === null || response === void 0 || (_response$data63 = response.data) === null || _response$data63 === void 0 ? void 0 : _response$data63.data);
|
|
12653
|
+
case 10:
|
|
12654
|
+
_context387.prev = 10;
|
|
12655
|
+
_context387.t0 = _context387["catch"](1);
|
|
12656
|
+
errorMessage((_error$response206 = _context387.t0.response) === null || _error$response206 === void 0 || (_error$response206 = _error$response206.data) === null || _error$response206 === void 0 ? void 0 : _error$response206.message);
|
|
12657
|
+
dispatch(setLoading(false));
|
|
12658
|
+
case 14:
|
|
12659
|
+
case "end":
|
|
12660
|
+
return _context387.stop();
|
|
12661
|
+
}
|
|
12662
|
+
}, _callee387, null, [[1, 10]]);
|
|
12663
|
+
}));
|
|
12664
|
+
return function (_x773, _x774) {
|
|
12665
|
+
return _ref774.apply(this, arguments);
|
|
12666
|
+
};
|
|
12667
|
+
}());
|
|
12668
|
+
export var addExtraServices = createAsyncThunk("/addExtraServices", /*#__PURE__*/function () {
|
|
12669
|
+
var _ref776 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee388(data, _ref775) {
|
|
12670
|
+
var dispatch, _error$response207;
|
|
12671
|
+
return _regeneratorRuntime.wrap(function _callee388$(_context388) {
|
|
12672
|
+
while (1) switch (_context388.prev = _context388.next) {
|
|
12673
|
+
case 0:
|
|
12674
|
+
dispatch = _ref775.dispatch;
|
|
12675
|
+
_context388.prev = 1;
|
|
12676
|
+
dispatch(setLoading(true));
|
|
12677
|
+
_context388.next = 5;
|
|
12678
|
+
return Services.addExtraServices(data);
|
|
12679
|
+
case 5:
|
|
12680
|
+
dispatch(setLoading(false));
|
|
12681
|
+
dispatch(insuranceTypesRender(function (prev) {
|
|
12682
|
+
return !prev;
|
|
12683
|
+
}));
|
|
12684
|
+
dispatch(setViewModalVisible(true));
|
|
12685
|
+
_context388.next = 14;
|
|
12686
|
+
break;
|
|
12687
|
+
case 10:
|
|
12688
|
+
_context388.prev = 10;
|
|
12689
|
+
_context388.t0 = _context388["catch"](1);
|
|
12690
|
+
errorMessage((_error$response207 = _context388.t0.response) === null || _error$response207 === void 0 || (_error$response207 = _error$response207.data) === null || _error$response207 === void 0 ? void 0 : _error$response207.message);
|
|
12691
|
+
dispatch(setLoading(false));
|
|
12692
|
+
case 14:
|
|
12693
|
+
case "end":
|
|
12694
|
+
return _context388.stop();
|
|
12695
|
+
}
|
|
12696
|
+
}, _callee388, null, [[1, 10]]);
|
|
12697
|
+
}));
|
|
12698
|
+
return function (_x775, _x776) {
|
|
12699
|
+
return _ref776.apply(this, arguments);
|
|
12700
|
+
};
|
|
12701
|
+
}());
|
|
12702
|
+
export var editExtraServices = createAsyncThunk("/editExtraServices", /*#__PURE__*/function () {
|
|
12703
|
+
var _ref778 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee389(data, _ref777) {
|
|
12704
|
+
var dispatch, response, _error$response208;
|
|
12705
|
+
return _regeneratorRuntime.wrap(function _callee389$(_context389) {
|
|
12706
|
+
while (1) switch (_context389.prev = _context389.next) {
|
|
12707
|
+
case 0:
|
|
12708
|
+
dispatch = _ref777.dispatch;
|
|
12709
|
+
_context389.prev = 1;
|
|
12710
|
+
dispatch(setLoading(true));
|
|
12711
|
+
_context389.next = 5;
|
|
12712
|
+
return Services.editExtraServices(data);
|
|
12713
|
+
case 5:
|
|
12714
|
+
response = _context389.sent;
|
|
12715
|
+
dispatch(setLoading(false));
|
|
12716
|
+
dispatch(insuranceTypesRender(function (prev) {
|
|
12717
|
+
return !prev;
|
|
12718
|
+
}));
|
|
12719
|
+
return _context389.abrupt("return", response === null || response === void 0 ? void 0 : response.data);
|
|
12720
|
+
case 11:
|
|
12721
|
+
_context389.prev = 11;
|
|
12722
|
+
_context389.t0 = _context389["catch"](1);
|
|
12723
|
+
errorMessage((_error$response208 = _context389.t0.response) === null || _error$response208 === void 0 || (_error$response208 = _error$response208.data) === null || _error$response208 === void 0 ? void 0 : _error$response208.message);
|
|
12724
|
+
dispatch(setLoading(false));
|
|
12725
|
+
case 15:
|
|
12726
|
+
case "end":
|
|
12727
|
+
return _context389.stop();
|
|
12728
|
+
}
|
|
12729
|
+
}, _callee389, null, [[1, 11]]);
|
|
12730
|
+
}));
|
|
12731
|
+
return function (_x777, _x778) {
|
|
12732
|
+
return _ref778.apply(this, arguments);
|
|
12733
|
+
};
|
|
12734
|
+
}());
|
|
12735
|
+
export var deleteExtraServices = createAsyncThunk("/deleteExtraServices", /*#__PURE__*/function () {
|
|
12736
|
+
var _ref780 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee390(id, _ref779) {
|
|
12737
|
+
var dispatch, _error$response209;
|
|
12738
|
+
return _regeneratorRuntime.wrap(function _callee390$(_context390) {
|
|
12739
|
+
while (1) switch (_context390.prev = _context390.next) {
|
|
12740
|
+
case 0:
|
|
12741
|
+
dispatch = _ref779.dispatch;
|
|
12742
|
+
_context390.prev = 1;
|
|
12743
|
+
dispatch(setLoading(true));
|
|
12744
|
+
_context390.next = 5;
|
|
12745
|
+
return Services.deleteExtraServices(id);
|
|
12746
|
+
case 5:
|
|
12747
|
+
dispatch(setLoading(false));
|
|
12748
|
+
dispatch(setDeleteModalVisible(false));
|
|
12749
|
+
dispatch(insuranceTypesRender(function (prev) {
|
|
12750
|
+
return !prev;
|
|
12751
|
+
}));
|
|
12752
|
+
_context390.next = 15;
|
|
12753
|
+
break;
|
|
12754
|
+
case 10:
|
|
12755
|
+
_context390.prev = 10;
|
|
12756
|
+
_context390.t0 = _context390["catch"](1);
|
|
12757
|
+
dispatch(setDeleteModalVisible(false));
|
|
12758
|
+
errorMessage((_error$response209 = _context390.t0.response) === null || _error$response209 === void 0 || (_error$response209 = _error$response209.data) === null || _error$response209 === void 0 ? void 0 : _error$response209.message);
|
|
12759
|
+
dispatch(setLoading(false));
|
|
12760
|
+
case 15:
|
|
12761
|
+
case "end":
|
|
12762
|
+
return _context390.stop();
|
|
12763
|
+
}
|
|
12764
|
+
}, _callee390, null, [[1, 10]]);
|
|
12765
|
+
}));
|
|
12766
|
+
return function (_x779, _x780) {
|
|
12767
|
+
return _ref780.apply(this, arguments);
|
|
12768
|
+
};
|
|
12769
|
+
}());
|
|
12770
|
+
export var extraServicesVisibility = createAsyncThunk("/extraServicesVisibility", /*#__PURE__*/function () {
|
|
12771
|
+
var _ref782 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee391(data, _ref781) {
|
|
12772
|
+
var dispatch, response, _error$response210;
|
|
12773
|
+
return _regeneratorRuntime.wrap(function _callee391$(_context391) {
|
|
12774
|
+
while (1) switch (_context391.prev = _context391.next) {
|
|
12775
|
+
case 0:
|
|
12776
|
+
dispatch = _ref781.dispatch;
|
|
12777
|
+
_context391.prev = 1;
|
|
12778
|
+
dispatch(setLoading(true));
|
|
12779
|
+
_context391.next = 5;
|
|
12780
|
+
return Services.extraServicesVisibility(data);
|
|
12781
|
+
case 5:
|
|
12782
|
+
response = _context391.sent;
|
|
12783
|
+
dispatch(setLoading(false));
|
|
12784
|
+
dispatch(insuranceTypesRender(function (prev) {
|
|
12785
|
+
return !prev;
|
|
12786
|
+
}));
|
|
12787
|
+
return _context391.abrupt("return", response === null || response === void 0 ? void 0 : response.data);
|
|
12788
|
+
case 11:
|
|
12789
|
+
_context391.prev = 11;
|
|
12790
|
+
_context391.t0 = _context391["catch"](1);
|
|
12791
|
+
errorMessage((_error$response210 = _context391.t0.response) === null || _error$response210 === void 0 || (_error$response210 = _error$response210.data) === null || _error$response210 === void 0 ? void 0 : _error$response210.message);
|
|
12792
|
+
dispatch(setLoading(false));
|
|
12793
|
+
case 15:
|
|
12794
|
+
case "end":
|
|
12795
|
+
return _context391.stop();
|
|
12796
|
+
}
|
|
12797
|
+
}, _callee391, null, [[1, 11]]);
|
|
12798
|
+
}));
|
|
12799
|
+
return function (_x781, _x782) {
|
|
12800
|
+
return _ref782.apply(this, arguments);
|
|
12801
|
+
};
|
|
12802
|
+
}());
|
|
12803
|
+
//
|
|
12804
|
+
export var getFuelTypes = createAsyncThunk("/getFuelTypes", /*#__PURE__*/function () {
|
|
12805
|
+
var _ref784 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee392(data, _ref783) {
|
|
12806
|
+
var dispatch, _response$data64, response, _error$response211;
|
|
12807
|
+
return _regeneratorRuntime.wrap(function _callee392$(_context392) {
|
|
12808
|
+
while (1) switch (_context392.prev = _context392.next) {
|
|
12809
|
+
case 0:
|
|
12810
|
+
dispatch = _ref783.dispatch;
|
|
12811
|
+
_context392.prev = 1;
|
|
12812
|
+
dispatch(setLoading(true));
|
|
12813
|
+
_context392.next = 5;
|
|
12814
|
+
return Services.getFuelTypes(data.size, data.page, data.query, data.visibility);
|
|
12815
|
+
case 5:
|
|
12816
|
+
response = _context392.sent;
|
|
12817
|
+
dispatch(setLoading(false));
|
|
12818
|
+
return _context392.abrupt("return", response === null || response === void 0 || (_response$data64 = response.data) === null || _response$data64 === void 0 ? void 0 : _response$data64.data);
|
|
12819
|
+
case 10:
|
|
12820
|
+
_context392.prev = 10;
|
|
12821
|
+
_context392.t0 = _context392["catch"](1);
|
|
12822
|
+
errorMessage((_error$response211 = _context392.t0.response) === null || _error$response211 === void 0 || (_error$response211 = _error$response211.data) === null || _error$response211 === void 0 ? void 0 : _error$response211.message);
|
|
12823
|
+
dispatch(setLoading(false));
|
|
12824
|
+
case 14:
|
|
12825
|
+
case "end":
|
|
12826
|
+
return _context392.stop();
|
|
12827
|
+
}
|
|
12828
|
+
}, _callee392, null, [[1, 10]]);
|
|
12829
|
+
}));
|
|
12830
|
+
return function (_x783, _x784) {
|
|
12831
|
+
return _ref784.apply(this, arguments);
|
|
12832
|
+
};
|
|
12833
|
+
}());
|
|
12834
|
+
export var getFuelTypesAll = createAsyncThunk("/getFuelTypesAll", /*#__PURE__*/function () {
|
|
12835
|
+
var _ref786 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee393(visibility, _ref785) {
|
|
12836
|
+
var dispatch, _response$data65, response, _error$response212;
|
|
12837
|
+
return _regeneratorRuntime.wrap(function _callee393$(_context393) {
|
|
12838
|
+
while (1) switch (_context393.prev = _context393.next) {
|
|
12839
|
+
case 0:
|
|
12840
|
+
dispatch = _ref785.dispatch;
|
|
12841
|
+
_context393.prev = 1;
|
|
12842
|
+
dispatch(setLoading(true));
|
|
12843
|
+
_context393.next = 5;
|
|
12844
|
+
return Services.getFuelTypesAll(visibility);
|
|
12845
|
+
case 5:
|
|
12846
|
+
response = _context393.sent;
|
|
12847
|
+
dispatch(setLoading(false));
|
|
12848
|
+
return _context393.abrupt("return", response === null || response === void 0 || (_response$data65 = response.data) === null || _response$data65 === void 0 ? void 0 : _response$data65.data);
|
|
12849
|
+
case 10:
|
|
12850
|
+
_context393.prev = 10;
|
|
12851
|
+
_context393.t0 = _context393["catch"](1);
|
|
12852
|
+
errorMessage((_error$response212 = _context393.t0.response) === null || _error$response212 === void 0 || (_error$response212 = _error$response212.data) === null || _error$response212 === void 0 ? void 0 : _error$response212.message);
|
|
12853
|
+
dispatch(setLoading(false));
|
|
12854
|
+
case 14:
|
|
12855
|
+
case "end":
|
|
12856
|
+
return _context393.stop();
|
|
12857
|
+
}
|
|
12858
|
+
}, _callee393, null, [[1, 10]]);
|
|
12859
|
+
}));
|
|
12860
|
+
return function (_x785, _x786) {
|
|
12861
|
+
return _ref786.apply(this, arguments);
|
|
12862
|
+
};
|
|
12863
|
+
}());
|
|
12864
|
+
export var addFuelTypes = createAsyncThunk("/addFuelTypes", /*#__PURE__*/function () {
|
|
12865
|
+
var _ref788 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee394(data, _ref787) {
|
|
12866
|
+
var dispatch, _error$response213;
|
|
12867
|
+
return _regeneratorRuntime.wrap(function _callee394$(_context394) {
|
|
12868
|
+
while (1) switch (_context394.prev = _context394.next) {
|
|
12869
|
+
case 0:
|
|
12870
|
+
dispatch = _ref787.dispatch;
|
|
12871
|
+
_context394.prev = 1;
|
|
12872
|
+
dispatch(setLoading(true));
|
|
12873
|
+
_context394.next = 5;
|
|
12874
|
+
return Services.addFuelTypes(data);
|
|
12875
|
+
case 5:
|
|
12876
|
+
dispatch(setLoading(false));
|
|
12877
|
+
dispatch(setPenaltyTypesRender(function (prev) {
|
|
12878
|
+
return !prev;
|
|
12879
|
+
}));
|
|
12880
|
+
dispatch(setViewModalVisible(true));
|
|
12881
|
+
_context394.next = 14;
|
|
12882
|
+
break;
|
|
12883
|
+
case 10:
|
|
12884
|
+
_context394.prev = 10;
|
|
12885
|
+
_context394.t0 = _context394["catch"](1);
|
|
12886
|
+
errorMessage((_error$response213 = _context394.t0.response) === null || _error$response213 === void 0 || (_error$response213 = _error$response213.data) === null || _error$response213 === void 0 ? void 0 : _error$response213.message);
|
|
12887
|
+
dispatch(setLoading(false));
|
|
12888
|
+
case 14:
|
|
12889
|
+
case "end":
|
|
12890
|
+
return _context394.stop();
|
|
12891
|
+
}
|
|
12892
|
+
}, _callee394, null, [[1, 10]]);
|
|
12893
|
+
}));
|
|
12894
|
+
return function (_x787, _x788) {
|
|
12895
|
+
return _ref788.apply(this, arguments);
|
|
12896
|
+
};
|
|
12897
|
+
}());
|
|
12898
|
+
export var editFuelTypes = createAsyncThunk("/editFuelTypes", /*#__PURE__*/function () {
|
|
12899
|
+
var _ref790 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee395(data, _ref789) {
|
|
12900
|
+
var dispatch, response, _error$response214;
|
|
12901
|
+
return _regeneratorRuntime.wrap(function _callee395$(_context395) {
|
|
12902
|
+
while (1) switch (_context395.prev = _context395.next) {
|
|
12903
|
+
case 0:
|
|
12904
|
+
dispatch = _ref789.dispatch;
|
|
12905
|
+
_context395.prev = 1;
|
|
12906
|
+
dispatch(setLoading(true));
|
|
12907
|
+
_context395.next = 5;
|
|
12908
|
+
return Services.editFuelTypes(data);
|
|
12909
|
+
case 5:
|
|
12910
|
+
response = _context395.sent;
|
|
12911
|
+
dispatch(setLoading(false));
|
|
12912
|
+
dispatch(setPenaltyTypesRender(function (prev) {
|
|
12913
|
+
return !prev;
|
|
12914
|
+
}));
|
|
12915
|
+
return _context395.abrupt("return", response === null || response === void 0 ? void 0 : response.data);
|
|
12916
|
+
case 11:
|
|
12917
|
+
_context395.prev = 11;
|
|
12918
|
+
_context395.t0 = _context395["catch"](1);
|
|
12919
|
+
errorMessage((_error$response214 = _context395.t0.response) === null || _error$response214 === void 0 || (_error$response214 = _error$response214.data) === null || _error$response214 === void 0 ? void 0 : _error$response214.message);
|
|
12920
|
+
dispatch(setLoading(false));
|
|
12921
|
+
case 15:
|
|
12922
|
+
case "end":
|
|
12923
|
+
return _context395.stop();
|
|
12924
|
+
}
|
|
12925
|
+
}, _callee395, null, [[1, 11]]);
|
|
12926
|
+
}));
|
|
12927
|
+
return function (_x789, _x790) {
|
|
12928
|
+
return _ref790.apply(this, arguments);
|
|
12929
|
+
};
|
|
12930
|
+
}());
|
|
12931
|
+
export var deleteFuelTypes = createAsyncThunk("/deleteFuelTypes", /*#__PURE__*/function () {
|
|
12932
|
+
var _ref792 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee396(id, _ref791) {
|
|
12933
|
+
var dispatch, _error$response215;
|
|
12934
|
+
return _regeneratorRuntime.wrap(function _callee396$(_context396) {
|
|
12935
|
+
while (1) switch (_context396.prev = _context396.next) {
|
|
12936
|
+
case 0:
|
|
12937
|
+
dispatch = _ref791.dispatch;
|
|
12938
|
+
_context396.prev = 1;
|
|
12939
|
+
dispatch(setLoading(true));
|
|
12940
|
+
_context396.next = 5;
|
|
12941
|
+
return Services.deleteFuelTypes(id);
|
|
12942
|
+
case 5:
|
|
12943
|
+
dispatch(setLoading(false));
|
|
12944
|
+
dispatch(setDeleteModalVisible(false));
|
|
12945
|
+
dispatch(setPenaltyTypesRender(function (prev) {
|
|
12946
|
+
return !prev;
|
|
12947
|
+
}));
|
|
12948
|
+
_context396.next = 15;
|
|
12949
|
+
break;
|
|
12950
|
+
case 10:
|
|
12951
|
+
_context396.prev = 10;
|
|
12952
|
+
_context396.t0 = _context396["catch"](1);
|
|
12953
|
+
dispatch(setDeleteModalVisible(false));
|
|
12954
|
+
errorMessage((_error$response215 = _context396.t0.response) === null || _error$response215 === void 0 || (_error$response215 = _error$response215.data) === null || _error$response215 === void 0 ? void 0 : _error$response215.message);
|
|
12955
|
+
dispatch(setLoading(false));
|
|
12956
|
+
case 15:
|
|
12957
|
+
case "end":
|
|
12958
|
+
return _context396.stop();
|
|
12959
|
+
}
|
|
12960
|
+
}, _callee396, null, [[1, 10]]);
|
|
12961
|
+
}));
|
|
12962
|
+
return function (_x791, _x792) {
|
|
12963
|
+
return _ref792.apply(this, arguments);
|
|
12964
|
+
};
|
|
12965
|
+
}());
|
|
12966
|
+
export var fuelTypesVisibility = createAsyncThunk("/fuelTypesVisibility", /*#__PURE__*/function () {
|
|
12967
|
+
var _ref794 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime.mark(function _callee397(data, _ref793) {
|
|
12968
|
+
var dispatch, response, _error$response216;
|
|
12969
|
+
return _regeneratorRuntime.wrap(function _callee397$(_context397) {
|
|
12970
|
+
while (1) switch (_context397.prev = _context397.next) {
|
|
12971
|
+
case 0:
|
|
12972
|
+
dispatch = _ref793.dispatch;
|
|
12973
|
+
_context397.prev = 1;
|
|
12974
|
+
dispatch(setLoading(true));
|
|
12975
|
+
_context397.next = 5;
|
|
12976
|
+
return Services.fuelTypesVisibility(data);
|
|
12977
|
+
case 5:
|
|
12978
|
+
response = _context397.sent;
|
|
12979
|
+
dispatch(setLoading(false));
|
|
12980
|
+
dispatch(setPenaltyTypesRender(function (prev) {
|
|
12981
|
+
return !prev;
|
|
12982
|
+
}));
|
|
12983
|
+
return _context397.abrupt("return", response === null || response === void 0 ? void 0 : response.data);
|
|
12984
|
+
case 11:
|
|
12985
|
+
_context397.prev = 11;
|
|
12986
|
+
_context397.t0 = _context397["catch"](1);
|
|
12987
|
+
errorMessage((_error$response216 = _context397.t0.response) === null || _error$response216 === void 0 || (_error$response216 = _error$response216.data) === null || _error$response216 === void 0 ? void 0 : _error$response216.message);
|
|
12988
|
+
dispatch(setLoading(false));
|
|
12989
|
+
case 15:
|
|
12990
|
+
case "end":
|
|
12991
|
+
return _context397.stop();
|
|
12992
|
+
}
|
|
12993
|
+
}, _callee397, null, [[1, 11]]);
|
|
12994
|
+
}));
|
|
12995
|
+
return function (_x793, _x794) {
|
|
12996
|
+
return _ref794.apply(this, arguments);
|
|
12997
|
+
};
|
|
12998
|
+
}());
|
|
12607
12999
|
export var questionnaire = createSlice({
|
|
12608
13000
|
name: "questionnaire",
|
|
12609
13001
|
initialState: initialState,
|
|
12610
13002
|
extraReducers: function extraReducers(builder) {
|
|
12611
|
-
builder.addCase(getTopics.fulfilled, function (state,
|
|
12612
|
-
var payload =
|
|
13003
|
+
builder.addCase(getTopics.fulfilled, function (state, _ref795) {
|
|
13004
|
+
var payload = _ref795.payload;
|
|
12613
13005
|
state.topics = payload;
|
|
12614
13006
|
});
|
|
12615
|
-
builder.addCase(getTopicsAll.fulfilled, function (state,
|
|
12616
|
-
var payload =
|
|
13007
|
+
builder.addCase(getTopicsAll.fulfilled, function (state, _ref796) {
|
|
13008
|
+
var payload = _ref796.payload;
|
|
12617
13009
|
state.topicsAll = payload;
|
|
12618
13010
|
});
|
|
12619
|
-
builder.addCase(getSubtopics.fulfilled, function (state,
|
|
12620
|
-
var payload =
|
|
13011
|
+
builder.addCase(getSubtopics.fulfilled, function (state, _ref797) {
|
|
13012
|
+
var payload = _ref797.payload;
|
|
12621
13013
|
state.subtopics = payload;
|
|
12622
13014
|
});
|
|
12623
|
-
builder.addCase(getSubtopicsAll.fulfilled, function (state,
|
|
12624
|
-
var payload =
|
|
13015
|
+
builder.addCase(getSubtopicsAll.fulfilled, function (state, _ref798) {
|
|
13016
|
+
var payload = _ref798.payload;
|
|
12625
13017
|
state.subtopicsAll = payload;
|
|
12626
13018
|
});
|
|
12627
|
-
builder.addCase(getExecutionRules.fulfilled, function (state,
|
|
12628
|
-
var payload =
|
|
13019
|
+
builder.addCase(getExecutionRules.fulfilled, function (state, _ref799) {
|
|
13020
|
+
var payload = _ref799.payload;
|
|
12629
13021
|
state.executionRules = payload;
|
|
12630
13022
|
});
|
|
12631
|
-
builder.addCase(getExecutionRulesAll.fulfilled, function (state,
|
|
12632
|
-
var payload =
|
|
13023
|
+
builder.addCase(getExecutionRulesAll.fulfilled, function (state, _ref800) {
|
|
13024
|
+
var payload = _ref800.payload;
|
|
12633
13025
|
state.executionRulesAll = payload;
|
|
12634
13026
|
});
|
|
12635
|
-
builder.addCase(getDocumentRecieveMethods.fulfilled, function (state,
|
|
12636
|
-
var payload =
|
|
13027
|
+
builder.addCase(getDocumentRecieveMethods.fulfilled, function (state, _ref801) {
|
|
13028
|
+
var payload = _ref801.payload;
|
|
12637
13029
|
state.documentRecieveMethods = payload;
|
|
12638
13030
|
});
|
|
12639
|
-
builder.addCase(getDocumentRecieveMethodsAll.fulfilled, function (state,
|
|
12640
|
-
var payload =
|
|
13031
|
+
builder.addCase(getDocumentRecieveMethodsAll.fulfilled, function (state, _ref802) {
|
|
13032
|
+
var payload = _ref802.payload;
|
|
12641
13033
|
state.documentRecieveMethodsAll = payload;
|
|
12642
13034
|
});
|
|
12643
|
-
builder.addCase(getDocumentTypes.fulfilled, function (state,
|
|
12644
|
-
var payload =
|
|
13035
|
+
builder.addCase(getDocumentTypes.fulfilled, function (state, _ref803) {
|
|
13036
|
+
var payload = _ref803.payload;
|
|
12645
13037
|
state.documentTypes = payload;
|
|
12646
13038
|
});
|
|
12647
|
-
builder.addCase(getDocumentTypesAllOne.fulfilled, function (state,
|
|
12648
|
-
var payload =
|
|
13039
|
+
builder.addCase(getDocumentTypesAllOne.fulfilled, function (state, _ref804) {
|
|
13040
|
+
var payload = _ref804.payload;
|
|
12649
13041
|
state.documentTypesAllOne = payload;
|
|
12650
13042
|
});
|
|
12651
|
-
builder.addCase(getDocumentTypesAllTwo.fulfilled, function (state,
|
|
12652
|
-
var payload =
|
|
13043
|
+
builder.addCase(getDocumentTypesAllTwo.fulfilled, function (state, _ref805) {
|
|
13044
|
+
var payload = _ref805.payload;
|
|
12653
13045
|
state.documentTypesAllTwo = payload;
|
|
12654
13046
|
});
|
|
12655
|
-
builder.addCase(getCountries.fulfilled, function (state,
|
|
12656
|
-
var payload =
|
|
13047
|
+
builder.addCase(getCountries.fulfilled, function (state, _ref806) {
|
|
13048
|
+
var payload = _ref806.payload;
|
|
12657
13049
|
state.countries = payload;
|
|
12658
13050
|
});
|
|
12659
|
-
builder.addCase(getCountriesAll.fulfilled, function (state,
|
|
12660
|
-
var payload =
|
|
13051
|
+
builder.addCase(getCountriesAll.fulfilled, function (state, _ref807) {
|
|
13052
|
+
var payload = _ref807.payload;
|
|
12661
13053
|
state.countriesAll = payload;
|
|
12662
13054
|
});
|
|
12663
|
-
builder.addCase(getOrganizations.fulfilled, function (state,
|
|
12664
|
-
var payload =
|
|
13055
|
+
builder.addCase(getOrganizations.fulfilled, function (state, _ref808) {
|
|
13056
|
+
var payload = _ref808.payload;
|
|
12665
13057
|
state.organizations = payload;
|
|
12666
13058
|
});
|
|
12667
|
-
builder.addCase(getStructures.fulfilled, function (state,
|
|
12668
|
-
var payload =
|
|
13059
|
+
builder.addCase(getStructures.fulfilled, function (state, _ref809) {
|
|
13060
|
+
var payload = _ref809.payload;
|
|
12669
13061
|
state.structures = payload;
|
|
12670
13062
|
});
|
|
12671
|
-
builder.addCase(getApplicationForms.fulfilled, function (state,
|
|
12672
|
-
var payload =
|
|
13063
|
+
builder.addCase(getApplicationForms.fulfilled, function (state, _ref810) {
|
|
13064
|
+
var payload = _ref810.payload;
|
|
12673
13065
|
state.applicationForms = payload;
|
|
12674
13066
|
});
|
|
12675
|
-
builder.addCase(getApplicationFormsAll.fulfilled, function (state,
|
|
12676
|
-
var payload =
|
|
13067
|
+
builder.addCase(getApplicationFormsAll.fulfilled, function (state, _ref811) {
|
|
13068
|
+
var payload = _ref811.payload;
|
|
12677
13069
|
state.applicationFormsAll = payload;
|
|
12678
13070
|
});
|
|
12679
|
-
builder.addCase(getDocumentWhom.fulfilled, function (state,
|
|
12680
|
-
var payload =
|
|
13071
|
+
builder.addCase(getDocumentWhom.fulfilled, function (state, _ref812) {
|
|
13072
|
+
var payload = _ref812.payload;
|
|
12681
13073
|
state.documentWhom = payload;
|
|
12682
13074
|
});
|
|
12683
|
-
builder.addCase(getDocumentWhomAll.fulfilled, function (state,
|
|
12684
|
-
var payload =
|
|
13075
|
+
builder.addCase(getDocumentWhomAll.fulfilled, function (state, _ref813) {
|
|
13076
|
+
var payload = _ref813.payload;
|
|
12685
13077
|
state.documentWhomAll = payload;
|
|
12686
13078
|
});
|
|
12687
|
-
builder.addCase(getOrganizationsAll.fulfilled, function (state,
|
|
12688
|
-
var payload =
|
|
13079
|
+
builder.addCase(getOrganizationsAll.fulfilled, function (state, _ref814) {
|
|
13080
|
+
var payload = _ref814.payload;
|
|
12689
13081
|
state.organizationsAll = payload;
|
|
12690
13082
|
});
|
|
12691
|
-
builder.addCase(getMarginNoteText.fulfilled, function (state,
|
|
12692
|
-
var payload =
|
|
13083
|
+
builder.addCase(getMarginNoteText.fulfilled, function (state, _ref815) {
|
|
13084
|
+
var payload = _ref815.payload;
|
|
12693
13085
|
state.marginNoteText = payload;
|
|
12694
13086
|
});
|
|
12695
|
-
builder.addCase(getDeliveryMethod.fulfilled, function (state,
|
|
12696
|
-
var payload =
|
|
13087
|
+
builder.addCase(getDeliveryMethod.fulfilled, function (state, _ref816) {
|
|
13088
|
+
var payload = _ref816.payload;
|
|
12697
13089
|
state.deliveryMethod = payload;
|
|
12698
13090
|
});
|
|
12699
|
-
builder.addCase(getDeliveryMethodAll.fulfilled, function (state,
|
|
12700
|
-
var payload =
|
|
13091
|
+
builder.addCase(getDeliveryMethodAll.fulfilled, function (state, _ref817) {
|
|
13092
|
+
var payload = _ref817.payload;
|
|
12701
13093
|
state.deliveryMethodAll = payload;
|
|
12702
13094
|
});
|
|
12703
|
-
builder.addCase(getGeneralStructuresAll.fulfilled, function (state,
|
|
12704
|
-
var payload =
|
|
13095
|
+
builder.addCase(getGeneralStructuresAll.fulfilled, function (state, _ref818) {
|
|
13096
|
+
var payload = _ref818.payload;
|
|
12705
13097
|
state.generalStructuresAll = payload;
|
|
12706
13098
|
});
|
|
12707
|
-
builder.addCase(getBrands.fulfilled, function (state,
|
|
12708
|
-
var payload =
|
|
13099
|
+
builder.addCase(getBrands.fulfilled, function (state, _ref819) {
|
|
13100
|
+
var payload = _ref819.payload;
|
|
12709
13101
|
state.brands = payload;
|
|
12710
13102
|
});
|
|
12711
|
-
builder.addCase(getBrandsAll.fulfilled, function (state,
|
|
12712
|
-
var payload =
|
|
13103
|
+
builder.addCase(getBrandsAll.fulfilled, function (state, _ref820) {
|
|
13104
|
+
var payload = _ref820.payload;
|
|
12713
13105
|
state.brandsAll = payload;
|
|
12714
13106
|
});
|
|
12715
|
-
builder.addCase(getChassisTypes.fulfilled, function (state,
|
|
12716
|
-
var payload =
|
|
13107
|
+
builder.addCase(getChassisTypes.fulfilled, function (state, _ref821) {
|
|
13108
|
+
var payload = _ref821.payload;
|
|
12717
13109
|
state.chassisTypes = payload;
|
|
12718
13110
|
});
|
|
12719
|
-
builder.addCase(getChassisTypesAll.fulfilled, function (state,
|
|
12720
|
-
var payload =
|
|
13111
|
+
builder.addCase(getChassisTypesAll.fulfilled, function (state, _ref822) {
|
|
13112
|
+
var payload = _ref822.payload;
|
|
12721
13113
|
state.chassisTypesAll = payload;
|
|
12722
13114
|
});
|
|
12723
|
-
builder.addCase(getColor.fulfilled, function (state,
|
|
12724
|
-
var payload =
|
|
13115
|
+
builder.addCase(getColor.fulfilled, function (state, _ref823) {
|
|
13116
|
+
var payload = _ref823.payload;
|
|
12725
13117
|
state.color = payload;
|
|
12726
13118
|
});
|
|
12727
|
-
builder.addCase(getColorAll.fulfilled, function (state,
|
|
12728
|
-
var payload =
|
|
13119
|
+
builder.addCase(getColorAll.fulfilled, function (state, _ref824) {
|
|
13120
|
+
var payload = _ref824.payload;
|
|
12729
13121
|
state.colorAll = payload;
|
|
12730
13122
|
});
|
|
12731
|
-
builder.addCase(getEnginetype.fulfilled, function (state,
|
|
12732
|
-
var payload =
|
|
13123
|
+
builder.addCase(getEnginetype.fulfilled, function (state, _ref825) {
|
|
13124
|
+
var payload = _ref825.payload;
|
|
12733
13125
|
state.enginetype = payload;
|
|
12734
13126
|
});
|
|
12735
|
-
builder.addCase(getEnginetypeAll.fulfilled, function (state,
|
|
12736
|
-
var payload =
|
|
13127
|
+
builder.addCase(getEnginetypeAll.fulfilled, function (state, _ref826) {
|
|
13128
|
+
var payload = _ref826.payload;
|
|
12737
13129
|
state.enginetypeAll = payload;
|
|
12738
13130
|
});
|
|
12739
|
-
builder.addCase(getGearboxtype.fulfilled, function (state,
|
|
12740
|
-
var payload =
|
|
13131
|
+
builder.addCase(getGearboxtype.fulfilled, function (state, _ref827) {
|
|
13132
|
+
var payload = _ref827.payload;
|
|
12741
13133
|
state.gearboxtype = payload;
|
|
12742
13134
|
});
|
|
12743
|
-
builder.addCase(getGearboxtypeAll.fulfilled, function (state,
|
|
12744
|
-
var payload =
|
|
13135
|
+
builder.addCase(getGearboxtypeAll.fulfilled, function (state, _ref828) {
|
|
13136
|
+
var payload = _ref828.payload;
|
|
12745
13137
|
state.gearboxtypeAll = payload;
|
|
12746
13138
|
});
|
|
12747
|
-
builder.addCase(getIssuedauthoritie.fulfilled, function (state,
|
|
12748
|
-
var payload =
|
|
13139
|
+
builder.addCase(getIssuedauthoritie.fulfilled, function (state, _ref829) {
|
|
13140
|
+
var payload = _ref829.payload;
|
|
12749
13141
|
state.issuedauthoritie = payload;
|
|
12750
13142
|
});
|
|
12751
|
-
builder.addCase(getIssuedauthoritieAll.fulfilled, function (state,
|
|
12752
|
-
var payload =
|
|
13143
|
+
builder.addCase(getIssuedauthoritieAll.fulfilled, function (state, _ref830) {
|
|
13144
|
+
var payload = _ref830.payload;
|
|
12753
13145
|
state.issuedauthoritieAll = payload;
|
|
12754
13146
|
});
|
|
12755
|
-
builder.addCase(getModel.fulfilled, function (state,
|
|
12756
|
-
var payload =
|
|
13147
|
+
builder.addCase(getModel.fulfilled, function (state, _ref831) {
|
|
13148
|
+
var payload = _ref831.payload;
|
|
12757
13149
|
state.model = payload;
|
|
12758
13150
|
});
|
|
12759
|
-
builder.addCase(getModelAll.fulfilled, function (state,
|
|
12760
|
-
var payload =
|
|
13151
|
+
builder.addCase(getModelAll.fulfilled, function (state, _ref832) {
|
|
13152
|
+
var payload = _ref832.payload;
|
|
12761
13153
|
state.modelAll = payload;
|
|
12762
13154
|
});
|
|
12763
|
-
builder.addCase(getOwnershiptype.fulfilled, function (state,
|
|
12764
|
-
var payload =
|
|
13155
|
+
builder.addCase(getOwnershiptype.fulfilled, function (state, _ref833) {
|
|
13156
|
+
var payload = _ref833.payload;
|
|
12765
13157
|
state.ownershiptype = payload;
|
|
12766
13158
|
});
|
|
12767
|
-
builder.addCase(getOwnershiptypeAll.fulfilled, function (state,
|
|
12768
|
-
var payload =
|
|
13159
|
+
builder.addCase(getOwnershiptypeAll.fulfilled, function (state, _ref834) {
|
|
13160
|
+
var payload = _ref834.payload;
|
|
12769
13161
|
state.ownershiptypeAll = payload;
|
|
12770
13162
|
});
|
|
12771
|
-
builder.addCase(getOrganisationrecord.fulfilled, function (state,
|
|
12772
|
-
var payload =
|
|
13163
|
+
builder.addCase(getOrganisationrecord.fulfilled, function (state, _ref835) {
|
|
13164
|
+
var payload = _ref835.payload;
|
|
12773
13165
|
state.organisationrecord = payload;
|
|
12774
13166
|
});
|
|
12775
|
-
builder.addCase(getOrganisationrecordAll.fulfilled, function (state,
|
|
12776
|
-
var payload =
|
|
13167
|
+
builder.addCase(getOrganisationrecordAll.fulfilled, function (state, _ref836) {
|
|
13168
|
+
var payload = _ref836.payload;
|
|
12777
13169
|
state.organisationrecordAll = payload;
|
|
12778
13170
|
});
|
|
12779
|
-
builder.addCase(getTransmittertype.fulfilled, function (state,
|
|
12780
|
-
var payload =
|
|
13171
|
+
builder.addCase(getTransmittertype.fulfilled, function (state, _ref837) {
|
|
13172
|
+
var payload = _ref837.payload;
|
|
12781
13173
|
state.transmittertype = payload;
|
|
12782
13174
|
});
|
|
12783
|
-
builder.addCase(getTransmittertypeAll.fulfilled, function (state,
|
|
12784
|
-
var payload =
|
|
13175
|
+
builder.addCase(getTransmittertypeAll.fulfilled, function (state, _ref838) {
|
|
13176
|
+
var payload = _ref838.payload;
|
|
12785
13177
|
state.transmittertypeAll = payload;
|
|
12786
13178
|
});
|
|
12787
|
-
builder.addCase(getVehicle.fulfilled, function (state,
|
|
12788
|
-
var payload =
|
|
13179
|
+
builder.addCase(getVehicle.fulfilled, function (state, _ref839) {
|
|
13180
|
+
var payload = _ref839.payload;
|
|
12789
13181
|
state.vehicle = payload;
|
|
12790
13182
|
});
|
|
12791
|
-
builder.addCase(getVehicleAll.fulfilled, function (state,
|
|
12792
|
-
var payload =
|
|
13183
|
+
builder.addCase(getVehicleAll.fulfilled, function (state, _ref840) {
|
|
13184
|
+
var payload = _ref840.payload;
|
|
12793
13185
|
state.vehicleAll = payload;
|
|
12794
13186
|
});
|
|
12795
|
-
builder.addCase(getVehicletype.fulfilled, function (state,
|
|
12796
|
-
var payload =
|
|
13187
|
+
builder.addCase(getVehicletype.fulfilled, function (state, _ref841) {
|
|
13188
|
+
var payload = _ref841.payload;
|
|
12797
13189
|
state.vehicletype = payload;
|
|
12798
13190
|
});
|
|
12799
|
-
builder.addCase(getVehicletypeAll.fulfilled, function (state,
|
|
12800
|
-
var payload =
|
|
13191
|
+
builder.addCase(getVehicletypeAll.fulfilled, function (state, _ref842) {
|
|
13192
|
+
var payload = _ref842.payload;
|
|
12801
13193
|
state.vehicletypeAll = payload;
|
|
12802
13194
|
});
|
|
12803
|
-
builder.addCase(getVrc.fulfilled, function (state,
|
|
12804
|
-
var payload =
|
|
13195
|
+
builder.addCase(getVrc.fulfilled, function (state, _ref843) {
|
|
13196
|
+
var payload = _ref843.payload;
|
|
12805
13197
|
state.vrc = payload;
|
|
12806
13198
|
});
|
|
12807
|
-
builder.addCase(getVrcAll.fulfilled, function (state,
|
|
12808
|
-
var payload =
|
|
13199
|
+
builder.addCase(getVrcAll.fulfilled, function (state, _ref844) {
|
|
13200
|
+
var payload = _ref844.payload;
|
|
12809
13201
|
state.vrcAll = payload;
|
|
12810
13202
|
});
|
|
12811
|
-
builder.addCase(getAcademicdegrees.fulfilled, function (state,
|
|
12812
|
-
var payload =
|
|
13203
|
+
builder.addCase(getAcademicdegrees.fulfilled, function (state, _ref845) {
|
|
13204
|
+
var payload = _ref845.payload;
|
|
12813
13205
|
state.academicdegrees = payload;
|
|
12814
13206
|
});
|
|
12815
|
-
builder.addCase(getAcademicdegreesAll.fulfilled, function (state,
|
|
12816
|
-
var payload =
|
|
13207
|
+
builder.addCase(getAcademicdegreesAll.fulfilled, function (state, _ref846) {
|
|
13208
|
+
var payload = _ref846.payload;
|
|
12817
13209
|
state.academicdegreesAll = payload;
|
|
12818
13210
|
});
|
|
12819
|
-
builder.addCase(getDisabilitystatuses.fulfilled, function (state,
|
|
12820
|
-
var payload =
|
|
13211
|
+
builder.addCase(getDisabilitystatuses.fulfilled, function (state, _ref847) {
|
|
13212
|
+
var payload = _ref847.payload;
|
|
12821
13213
|
state.disabilitystatuses = payload;
|
|
12822
13214
|
});
|
|
12823
|
-
builder.addCase(getDisabilitystatusesAll.fulfilled, function (state,
|
|
12824
|
-
var payload =
|
|
13215
|
+
builder.addCase(getDisabilitystatusesAll.fulfilled, function (state, _ref848) {
|
|
13216
|
+
var payload = _ref848.payload;
|
|
12825
13217
|
state.disabilitystatusesAll = payload;
|
|
12826
13218
|
});
|
|
12827
|
-
builder.addCase(getHonorarytitles.fulfilled, function (state,
|
|
12828
|
-
var payload =
|
|
13219
|
+
builder.addCase(getHonorarytitles.fulfilled, function (state, _ref849) {
|
|
13220
|
+
var payload = _ref849.payload;
|
|
12829
13221
|
state.honorarytitles = payload;
|
|
12830
13222
|
});
|
|
12831
|
-
builder.addCase(getHonorarytitlesAll.fulfilled, function (state,
|
|
12832
|
-
var payload =
|
|
13223
|
+
builder.addCase(getHonorarytitlesAll.fulfilled, function (state, _ref850) {
|
|
13224
|
+
var payload = _ref850.payload;
|
|
12833
13225
|
state.honorarytitlesAll = payload;
|
|
12834
13226
|
});
|
|
12835
|
-
builder.addCase(getMilitarystaffs.fulfilled, function (state,
|
|
12836
|
-
var payload =
|
|
13227
|
+
builder.addCase(getMilitarystaffs.fulfilled, function (state, _ref851) {
|
|
13228
|
+
var payload = _ref851.payload;
|
|
12837
13229
|
state.militaryStaffs = payload;
|
|
12838
13230
|
});
|
|
12839
|
-
builder.addCase(getMilitarystaffsAll.fulfilled, function (state,
|
|
12840
|
-
var payload =
|
|
13231
|
+
builder.addCase(getMilitarystaffsAll.fulfilled, function (state, _ref852) {
|
|
13232
|
+
var payload = _ref852.payload;
|
|
12841
13233
|
state.militaryStaffsAll = payload;
|
|
12842
13234
|
});
|
|
12843
|
-
builder.addCase(getMilitarycategories.fulfilled, function (state,
|
|
12844
|
-
var payload =
|
|
13235
|
+
builder.addCase(getMilitarycategories.fulfilled, function (state, _ref853) {
|
|
13236
|
+
var payload = _ref853.payload;
|
|
12845
13237
|
state.militaryCategories = payload;
|
|
12846
13238
|
});
|
|
12847
|
-
builder.addCase(getMilitarycategoriesAll.fulfilled, function (state,
|
|
12848
|
-
var payload =
|
|
13239
|
+
builder.addCase(getMilitarycategoriesAll.fulfilled, function (state, _ref854) {
|
|
13240
|
+
var payload = _ref854.payload;
|
|
12849
13241
|
state.militaryCategoriesAll = payload;
|
|
12850
13242
|
});
|
|
12851
|
-
builder.addCase(getMilitaryranks.fulfilled, function (state,
|
|
12852
|
-
var payload =
|
|
13243
|
+
builder.addCase(getMilitaryranks.fulfilled, function (state, _ref855) {
|
|
13244
|
+
var payload = _ref855.payload;
|
|
12853
13245
|
state.militaryranks = payload;
|
|
12854
13246
|
});
|
|
12855
|
-
builder.addCase(getMilitaryranksAll.fulfilled, function (state,
|
|
12856
|
-
var payload =
|
|
13247
|
+
builder.addCase(getMilitaryranksAll.fulfilled, function (state, _ref856) {
|
|
13248
|
+
var payload = _ref856.payload;
|
|
12857
13249
|
state.militaryranksAll = payload;
|
|
12858
13250
|
});
|
|
12859
|
-
builder.addCase(getMilitarygroups.fulfilled, function (state,
|
|
12860
|
-
var payload =
|
|
13251
|
+
builder.addCase(getMilitarygroups.fulfilled, function (state, _ref857) {
|
|
13252
|
+
var payload = _ref857.payload;
|
|
12861
13253
|
state.militarygroups = payload;
|
|
12862
13254
|
});
|
|
12863
|
-
builder.addCase(getMilitarygroupsAll.fulfilled, function (state,
|
|
12864
|
-
var payload =
|
|
13255
|
+
builder.addCase(getMilitarygroupsAll.fulfilled, function (state, _ref858) {
|
|
13256
|
+
var payload = _ref858.payload;
|
|
12865
13257
|
state.militarygroupsAll = payload;
|
|
12866
13258
|
});
|
|
12867
|
-
builder.addCase(getGeneralstructurestatuses.fulfilled, function (state,
|
|
12868
|
-
var payload =
|
|
13259
|
+
builder.addCase(getGeneralstructurestatuses.fulfilled, function (state, _ref859) {
|
|
13260
|
+
var payload = _ref859.payload;
|
|
12869
13261
|
state.generalstructurestatuses = payload;
|
|
12870
13262
|
});
|
|
12871
|
-
builder.addCase(getGeneralstructurestatusesAll.fulfilled, function (state,
|
|
12872
|
-
var payload =
|
|
13263
|
+
builder.addCase(getGeneralstructurestatusesAll.fulfilled, function (state, _ref860) {
|
|
13264
|
+
var payload = _ref860.payload;
|
|
12873
13265
|
state.generalstructurestatusesAll = payload;
|
|
12874
13266
|
});
|
|
12875
|
-
builder.addCase(getWorkschedules.fulfilled, function (state,
|
|
12876
|
-
var payload =
|
|
13267
|
+
builder.addCase(getWorkschedules.fulfilled, function (state, _ref861) {
|
|
13268
|
+
var payload = _ref861.payload;
|
|
12877
13269
|
state.workschedules = payload;
|
|
12878
13270
|
});
|
|
12879
|
-
builder.addCase(getWorkschedulesAll.fulfilled, function (state,
|
|
12880
|
-
var payload =
|
|
13271
|
+
builder.addCase(getWorkschedulesAll.fulfilled, function (state, _ref862) {
|
|
13272
|
+
var payload = _ref862.payload;
|
|
12881
13273
|
state.workschedulesAll = payload;
|
|
12882
13274
|
});
|
|
12883
|
-
builder.addCase(getSpecializations.fulfilled, function (state,
|
|
12884
|
-
var payload =
|
|
13275
|
+
builder.addCase(getSpecializations.fulfilled, function (state, _ref863) {
|
|
13276
|
+
var payload = _ref863.payload;
|
|
12885
13277
|
state.specializations = payload;
|
|
12886
13278
|
});
|
|
12887
|
-
builder.addCase(getSpecializationsAll.fulfilled, function (state,
|
|
12888
|
-
var payload =
|
|
13279
|
+
builder.addCase(getSpecializationsAll.fulfilled, function (state, _ref864) {
|
|
13280
|
+
var payload = _ref864.payload;
|
|
12889
13281
|
state.specializationsAll = payload;
|
|
12890
13282
|
});
|
|
12891
|
-
builder.addCase(getWarparticipants.fulfilled, function (state,
|
|
12892
|
-
var payload =
|
|
13283
|
+
builder.addCase(getWarparticipants.fulfilled, function (state, _ref865) {
|
|
13284
|
+
var payload = _ref865.payload;
|
|
12893
13285
|
state.warparticipants = payload;
|
|
12894
13286
|
});
|
|
12895
|
-
builder.addCase(getWarparticipantsAll.fulfilled, function (state,
|
|
12896
|
-
var payload =
|
|
13287
|
+
builder.addCase(getWarparticipantsAll.fulfilled, function (state, _ref866) {
|
|
13288
|
+
var payload = _ref866.payload;
|
|
12897
13289
|
state.warparticipantsAll = payload;
|
|
12898
13290
|
});
|
|
12899
|
-
builder.addCase(getGeneralstructuretypes.fulfilled, function (state,
|
|
12900
|
-
var payload =
|
|
13291
|
+
builder.addCase(getGeneralstructuretypes.fulfilled, function (state, _ref867) {
|
|
13292
|
+
var payload = _ref867.payload;
|
|
12901
13293
|
state.generalstructuretypes = payload;
|
|
12902
13294
|
});
|
|
12903
|
-
builder.addCase(getGeneralstructuretypesAll.fulfilled, function (state,
|
|
12904
|
-
var payload =
|
|
13295
|
+
builder.addCase(getGeneralstructuretypesAll.fulfilled, function (state, _ref868) {
|
|
13296
|
+
var payload = _ref868.payload;
|
|
12905
13297
|
state.generalstructuretypesAll = payload;
|
|
12906
13298
|
});
|
|
12907
|
-
builder.addCase(getEducationinstitutions.fulfilled, function (state,
|
|
12908
|
-
var payload =
|
|
13299
|
+
builder.addCase(getEducationinstitutions.fulfilled, function (state, _ref869) {
|
|
13300
|
+
var payload = _ref869.payload;
|
|
12909
13301
|
state.educationinstitutions = payload;
|
|
12910
13302
|
});
|
|
12911
|
-
builder.addCase(getEducationinstitutionsAll.fulfilled, function (state,
|
|
12912
|
-
var payload =
|
|
13303
|
+
builder.addCase(getEducationinstitutionsAll.fulfilled, function (state, _ref870) {
|
|
13304
|
+
var payload = _ref870.payload;
|
|
12913
13305
|
state.educationinstitutionsAll = payload;
|
|
12914
13306
|
});
|
|
12915
|
-
builder.addCase(getEducationpayments.fulfilled, function (state,
|
|
12916
|
-
var payload =
|
|
13307
|
+
builder.addCase(getEducationpayments.fulfilled, function (state, _ref871) {
|
|
13308
|
+
var payload = _ref871.payload;
|
|
12917
13309
|
state.educationPayments = payload;
|
|
12918
13310
|
});
|
|
12919
|
-
builder.addCase(getEducationpaymentsAll.fulfilled, function (state,
|
|
12920
|
-
var payload =
|
|
13311
|
+
builder.addCase(getEducationpaymentsAll.fulfilled, function (state, _ref872) {
|
|
13312
|
+
var payload = _ref872.payload;
|
|
12921
13313
|
state.educationPaymentsAll = payload;
|
|
12922
13314
|
});
|
|
12923
|
-
builder.addCase(getEducationlevels.fulfilled, function (state,
|
|
12924
|
-
var payload =
|
|
13315
|
+
builder.addCase(getEducationlevels.fulfilled, function (state, _ref873) {
|
|
13316
|
+
var payload = _ref873.payload;
|
|
12925
13317
|
state.educationlevels = payload;
|
|
12926
13318
|
});
|
|
12927
|
-
builder.addCase(getEducationlevelsAll.fulfilled, function (state,
|
|
12928
|
-
var payload =
|
|
13319
|
+
builder.addCase(getEducationlevelsAll.fulfilled, function (state, _ref874) {
|
|
13320
|
+
var payload = _ref874.payload;
|
|
12929
13321
|
state.educationlevelsAll = payload;
|
|
12930
13322
|
});
|
|
12931
|
-
builder.addCase(getReprimandtypes.fulfilled, function (state,
|
|
12932
|
-
var payload =
|
|
13323
|
+
builder.addCase(getReprimandtypes.fulfilled, function (state, _ref875) {
|
|
13324
|
+
var payload = _ref875.payload;
|
|
12933
13325
|
state.reprimandTypes = payload;
|
|
12934
13326
|
});
|
|
12935
|
-
builder.addCase(getReprimandtypesAll.fulfilled, function (state,
|
|
12936
|
-
var payload =
|
|
13327
|
+
builder.addCase(getReprimandtypesAll.fulfilled, function (state, _ref876) {
|
|
13328
|
+
var payload = _ref876.payload;
|
|
12937
13329
|
state.reprimandTypesAll = payload;
|
|
12938
13330
|
});
|
|
12939
|
-
builder.addCase(getSpecialdays.fulfilled, function (state,
|
|
12940
|
-
var payload =
|
|
13331
|
+
builder.addCase(getSpecialdays.fulfilled, function (state, _ref877) {
|
|
13332
|
+
var payload = _ref877.payload;
|
|
12941
13333
|
state.specialdays = payload;
|
|
12942
13334
|
});
|
|
12943
|
-
builder.addCase(getSpecialdaysAll.fulfilled, function (state,
|
|
12944
|
-
var payload =
|
|
13335
|
+
builder.addCase(getSpecialdaysAll.fulfilled, function (state, _ref878) {
|
|
13336
|
+
var payload = _ref878.payload;
|
|
12945
13337
|
state.specialdaysAll = payload;
|
|
12946
13338
|
});
|
|
12947
|
-
builder.addCase(getCategories.fulfilled, function (state,
|
|
12948
|
-
var payload =
|
|
13339
|
+
builder.addCase(getCategories.fulfilled, function (state, _ref879) {
|
|
13340
|
+
var payload = _ref879.payload;
|
|
12949
13341
|
state.categories = payload;
|
|
12950
13342
|
});
|
|
12951
|
-
builder.addCase(getCategoriesAll.fulfilled, function (state,
|
|
12952
|
-
var payload =
|
|
13343
|
+
builder.addCase(getCategoriesAll.fulfilled, function (state, _ref880) {
|
|
13344
|
+
var payload = _ref880.payload;
|
|
12953
13345
|
state.categoriesAll = payload;
|
|
12954
13346
|
});
|
|
12955
|
-
builder.addCase(getRegions.fulfilled, function (state,
|
|
12956
|
-
var payload =
|
|
13347
|
+
builder.addCase(getRegions.fulfilled, function (state, _ref881) {
|
|
13348
|
+
var payload = _ref881.payload;
|
|
12957
13349
|
state.regions = payload;
|
|
12958
13350
|
});
|
|
12959
|
-
builder.addCase(getRegionsAll.fulfilled, function (state,
|
|
12960
|
-
var payload =
|
|
13351
|
+
builder.addCase(getRegionsAll.fulfilled, function (state, _ref882) {
|
|
13352
|
+
var payload = _ref882.payload;
|
|
12961
13353
|
state.regionsAll = payload;
|
|
12962
13354
|
});
|
|
12963
|
-
builder.addCase(getRegionsChildren.fulfilled, function (state,
|
|
12964
|
-
var payload =
|
|
13355
|
+
builder.addCase(getRegionsChildren.fulfilled, function (state, _ref883) {
|
|
13356
|
+
var payload = _ref883.payload;
|
|
12965
13357
|
state.regionChildren = payload;
|
|
12966
13358
|
});
|
|
12967
|
-
builder.addCase(getAreas.fulfilled, function (state,
|
|
12968
|
-
var payload =
|
|
13359
|
+
builder.addCase(getAreas.fulfilled, function (state, _ref884) {
|
|
13360
|
+
var payload = _ref884.payload;
|
|
12969
13361
|
state.areas = payload;
|
|
12970
13362
|
});
|
|
12971
|
-
builder.addCase(getAreasAll.fulfilled, function (state,
|
|
12972
|
-
var payload =
|
|
13363
|
+
builder.addCase(getAreasAll.fulfilled, function (state, _ref885) {
|
|
13364
|
+
var payload = _ref885.payload;
|
|
12973
13365
|
state.areasAll = payload;
|
|
12974
13366
|
});
|
|
12975
|
-
builder.addCase(getCompanies.fulfilled, function (state,
|
|
12976
|
-
var payload =
|
|
13367
|
+
builder.addCase(getCompanies.fulfilled, function (state, _ref886) {
|
|
13368
|
+
var payload = _ref886.payload;
|
|
12977
13369
|
state.companies = payload;
|
|
12978
13370
|
});
|
|
12979
|
-
builder.addCase(getCompaniesAll.fulfilled, function (state,
|
|
12980
|
-
var payload =
|
|
13371
|
+
builder.addCase(getCompaniesAll.fulfilled, function (state, _ref887) {
|
|
13372
|
+
var payload = _ref887.payload;
|
|
12981
13373
|
state.companiesAll = payload;
|
|
12982
13374
|
});
|
|
12983
|
-
builder.addCase(getPositions.fulfilled, function (state,
|
|
12984
|
-
var payload =
|
|
13375
|
+
builder.addCase(getPositions.fulfilled, function (state, _ref888) {
|
|
13376
|
+
var payload = _ref888.payload;
|
|
12985
13377
|
state.positions = payload;
|
|
12986
13378
|
});
|
|
12987
|
-
builder.addCase(getPositionsAll.fulfilled, function (state,
|
|
12988
|
-
var payload =
|
|
13379
|
+
builder.addCase(getPositionsAll.fulfilled, function (state, _ref889) {
|
|
13380
|
+
var payload = _ref889.payload;
|
|
12989
13381
|
state.positionsAll = payload;
|
|
12990
13382
|
});
|
|
12991
|
-
builder.addCase(getHalls.fulfilled, function (state,
|
|
12992
|
-
var payload =
|
|
13383
|
+
builder.addCase(getHalls.fulfilled, function (state, _ref890) {
|
|
13384
|
+
var payload = _ref890.payload;
|
|
12993
13385
|
state.halls = payload;
|
|
12994
13386
|
});
|
|
12995
|
-
builder.addCase(getHallsAll.fulfilled, function (state,
|
|
12996
|
-
var payload =
|
|
13387
|
+
builder.addCase(getHallsAll.fulfilled, function (state, _ref891) {
|
|
13388
|
+
var payload = _ref891.payload;
|
|
12997
13389
|
state.hallsAll = payload;
|
|
12998
13390
|
});
|
|
12999
|
-
builder.addCase(getEmployeeConfigurations.fulfilled, function (state,
|
|
13000
|
-
var payload =
|
|
13391
|
+
builder.addCase(getEmployeeConfigurations.fulfilled, function (state, _ref892) {
|
|
13392
|
+
var payload = _ref892.payload;
|
|
13001
13393
|
state.employeeConfigurations = payload;
|
|
13002
13394
|
});
|
|
13003
|
-
builder.addCase(getEmployeeConfigurationsAll.fulfilled, function (state,
|
|
13004
|
-
var payload =
|
|
13395
|
+
builder.addCase(getEmployeeConfigurationsAll.fulfilled, function (state, _ref893) {
|
|
13396
|
+
var payload = _ref893.payload;
|
|
13005
13397
|
state.employeeConfigurationsAll = payload;
|
|
13006
13398
|
});
|
|
13007
|
-
builder.addCase(getContragenttypes.fulfilled, function (state,
|
|
13008
|
-
var payload =
|
|
13399
|
+
builder.addCase(getContragenttypes.fulfilled, function (state, _ref894) {
|
|
13400
|
+
var payload = _ref894.payload;
|
|
13009
13401
|
state.contragenttypes = payload;
|
|
13010
13402
|
});
|
|
13011
|
-
builder.addCase(getContragenttypesAll.fulfilled, function (state,
|
|
13012
|
-
var payload =
|
|
13403
|
+
builder.addCase(getContragenttypesAll.fulfilled, function (state, _ref895) {
|
|
13404
|
+
var payload = _ref895.payload;
|
|
13013
13405
|
state.contragenttypesAll = payload;
|
|
13014
13406
|
});
|
|
13015
|
-
builder.addCase(getContracttypes.fulfilled, function (state,
|
|
13016
|
-
var payload =
|
|
13407
|
+
builder.addCase(getContracttypes.fulfilled, function (state, _ref896) {
|
|
13408
|
+
var payload = _ref896.payload;
|
|
13017
13409
|
state.contracttypes = payload;
|
|
13018
13410
|
});
|
|
13019
|
-
builder.addCase(getContracttypesAll.fulfilled, function (state,
|
|
13020
|
-
var payload =
|
|
13411
|
+
builder.addCase(getContracttypesAll.fulfilled, function (state, _ref897) {
|
|
13412
|
+
var payload = _ref897.payload;
|
|
13021
13413
|
state.contracttypesAll = payload;
|
|
13022
13414
|
});
|
|
13023
|
-
builder.addCase(getContractcurrencies.fulfilled, function (state,
|
|
13024
|
-
var payload =
|
|
13415
|
+
builder.addCase(getContractcurrencies.fulfilled, function (state, _ref898) {
|
|
13416
|
+
var payload = _ref898.payload;
|
|
13025
13417
|
state.contractcurrencies = payload;
|
|
13026
13418
|
});
|
|
13027
|
-
builder.addCase(getContractcurrenciesAll.fulfilled, function (state,
|
|
13028
|
-
var payload =
|
|
13419
|
+
builder.addCase(getContractcurrenciesAll.fulfilled, function (state, _ref899) {
|
|
13420
|
+
var payload = _ref899.payload;
|
|
13029
13421
|
state.contractcurrenciesAll = payload;
|
|
13030
13422
|
});
|
|
13031
|
-
builder.addCase(getOrders.fulfilled, function (state,
|
|
13032
|
-
var payload =
|
|
13423
|
+
builder.addCase(getOrders.fulfilled, function (state, _ref900) {
|
|
13424
|
+
var payload = _ref900.payload;
|
|
13033
13425
|
state.orders = payload;
|
|
13034
13426
|
});
|
|
13035
|
-
builder.addCase(getOrdersAll.fulfilled, function (state,
|
|
13036
|
-
var payload =
|
|
13427
|
+
builder.addCase(getOrdersAll.fulfilled, function (state, _ref901) {
|
|
13428
|
+
var payload = _ref901.payload;
|
|
13037
13429
|
state.ordersAll = payload;
|
|
13038
13430
|
});
|
|
13039
|
-
builder.addCase(getDrivingcategoriesAll.fulfilled, function (state,
|
|
13040
|
-
var payload =
|
|
13431
|
+
builder.addCase(getDrivingcategoriesAll.fulfilled, function (state, _ref902) {
|
|
13432
|
+
var payload = _ref902.payload;
|
|
13041
13433
|
state.drivingcategoriesAll = payload;
|
|
13042
13434
|
});
|
|
13043
|
-
builder.addCase(getWorkModes.fulfilled, function (state,
|
|
13044
|
-
var payload =
|
|
13435
|
+
builder.addCase(getWorkModes.fulfilled, function (state, _ref903) {
|
|
13436
|
+
var payload = _ref903.payload;
|
|
13045
13437
|
state.workModes = payload;
|
|
13046
13438
|
});
|
|
13047
|
-
builder.addCase(getWorkModesAll.fulfilled, function (state,
|
|
13048
|
-
var payload =
|
|
13439
|
+
builder.addCase(getWorkModesAll.fulfilled, function (state, _ref904) {
|
|
13440
|
+
var payload = _ref904.payload;
|
|
13049
13441
|
state.workModesAll = payload;
|
|
13050
13442
|
});
|
|
13051
|
-
builder.addCase(getVehicleCategories.fulfilled, function (state,
|
|
13052
|
-
var payload =
|
|
13443
|
+
builder.addCase(getVehicleCategories.fulfilled, function (state, _ref905) {
|
|
13444
|
+
var payload = _ref905.payload;
|
|
13053
13445
|
state.vehicleCategories = payload;
|
|
13054
13446
|
});
|
|
13055
|
-
builder.addCase(getVehicleCategoriesAll.fulfilled, function (state,
|
|
13056
|
-
var payload =
|
|
13447
|
+
builder.addCase(getVehicleCategoriesAll.fulfilled, function (state, _ref906) {
|
|
13448
|
+
var payload = _ref906.payload;
|
|
13057
13449
|
state.vehicleCategoriesAll = payload;
|
|
13058
13450
|
});
|
|
13059
|
-
builder.addCase(getChemicals.fulfilled, function (state,
|
|
13060
|
-
var payload =
|
|
13451
|
+
builder.addCase(getChemicals.fulfilled, function (state, _ref907) {
|
|
13452
|
+
var payload = _ref907.payload;
|
|
13061
13453
|
state.chemicals = payload;
|
|
13062
13454
|
});
|
|
13063
|
-
builder.addCase(getChemicalsAll.fulfilled, function (state,
|
|
13064
|
-
var payload =
|
|
13455
|
+
builder.addCase(getChemicalsAll.fulfilled, function (state, _ref908) {
|
|
13456
|
+
var payload = _ref908.payload;
|
|
13065
13457
|
state.chemicalsAll = payload;
|
|
13066
13458
|
});
|
|
13067
|
-
builder.addCase(getRepairtypes.fulfilled, function (state,
|
|
13068
|
-
var payload =
|
|
13459
|
+
builder.addCase(getRepairtypes.fulfilled, function (state, _ref909) {
|
|
13460
|
+
var payload = _ref909.payload;
|
|
13069
13461
|
state.repairtypes = payload;
|
|
13070
13462
|
});
|
|
13071
|
-
builder.addCase(getRepairtypesAll.fulfilled, function (state,
|
|
13072
|
-
var payload =
|
|
13463
|
+
builder.addCase(getRepairtypesAll.fulfilled, function (state, _ref910) {
|
|
13464
|
+
var payload = _ref910.payload;
|
|
13073
13465
|
state.repairtypesAll = payload;
|
|
13074
13466
|
});
|
|
13075
|
-
builder.addCase(getDetailparts.fulfilled, function (state,
|
|
13076
|
-
var payload =
|
|
13467
|
+
builder.addCase(getDetailparts.fulfilled, function (state, _ref911) {
|
|
13468
|
+
var payload = _ref911.payload;
|
|
13077
13469
|
state.detailparts = payload;
|
|
13078
13470
|
});
|
|
13079
|
-
builder.addCase(getDetailpartsAll.fulfilled, function (state,
|
|
13080
|
-
var payload =
|
|
13471
|
+
builder.addCase(getDetailpartsAll.fulfilled, function (state, _ref912) {
|
|
13472
|
+
var payload = _ref912.payload;
|
|
13081
13473
|
state.detailpartsAll = payload;
|
|
13082
13474
|
});
|
|
13083
|
-
builder.addCase(getMeasurementtypes.fulfilled, function (state,
|
|
13084
|
-
var payload =
|
|
13475
|
+
builder.addCase(getMeasurementtypes.fulfilled, function (state, _ref913) {
|
|
13476
|
+
var payload = _ref913.payload;
|
|
13085
13477
|
state.measurementtypes = payload;
|
|
13086
13478
|
});
|
|
13087
|
-
builder.addCase(getMeasurementtypesAll.fulfilled, function (state,
|
|
13088
|
-
var payload =
|
|
13479
|
+
builder.addCase(getMeasurementtypesAll.fulfilled, function (state, _ref914) {
|
|
13480
|
+
var payload = _ref914.payload;
|
|
13089
13481
|
state.measurementtypesAll = payload;
|
|
13090
13482
|
});
|
|
13091
|
-
builder.addCase(getRepairmentWorkTypes.fulfilled, function (state,
|
|
13092
|
-
var payload =
|
|
13483
|
+
builder.addCase(getRepairmentWorkTypes.fulfilled, function (state, _ref915) {
|
|
13484
|
+
var payload = _ref915.payload;
|
|
13093
13485
|
state.repairmentWorkTypes = payload;
|
|
13094
13486
|
});
|
|
13095
|
-
builder.addCase(getRepairmentWorkTypesAll.fulfilled, function (state,
|
|
13096
|
-
var payload =
|
|
13487
|
+
builder.addCase(getRepairmentWorkTypesAll.fulfilled, function (state, _ref916) {
|
|
13488
|
+
var payload = _ref916.payload;
|
|
13097
13489
|
state.repairmentWorkTypesAll = payload;
|
|
13098
13490
|
});
|
|
13099
|
-
builder.addCase(getPenaltyTypes.fulfilled, function (state,
|
|
13100
|
-
var payload =
|
|
13491
|
+
builder.addCase(getPenaltyTypes.fulfilled, function (state, _ref917) {
|
|
13492
|
+
var payload = _ref917.payload;
|
|
13101
13493
|
state.penaltyTypes = payload;
|
|
13102
13494
|
});
|
|
13103
|
-
builder.addCase(getPenaltyTypesAll.fulfilled, function (state,
|
|
13104
|
-
var payload =
|
|
13495
|
+
builder.addCase(getPenaltyTypesAll.fulfilled, function (state, _ref918) {
|
|
13496
|
+
var payload = _ref918.payload;
|
|
13105
13497
|
state.penaltyTypesAll = payload;
|
|
13106
13498
|
});
|
|
13107
|
-
builder.addCase(getCrushReasons.fulfilled, function (state,
|
|
13108
|
-
var payload =
|
|
13499
|
+
builder.addCase(getCrushReasons.fulfilled, function (state, _ref919) {
|
|
13500
|
+
var payload = _ref919.payload;
|
|
13109
13501
|
state.crushReasons = payload;
|
|
13110
13502
|
});
|
|
13111
|
-
builder.addCase(getCrushReasonsAll.fulfilled, function (state,
|
|
13112
|
-
var payload =
|
|
13503
|
+
builder.addCase(getCrushReasonsAll.fulfilled, function (state, _ref920) {
|
|
13504
|
+
var payload = _ref920.payload;
|
|
13113
13505
|
state.crushReasonsAll = payload;
|
|
13114
13506
|
});
|
|
13115
|
-
builder.addCase(getInsuranceTypes.fulfilled, function (state,
|
|
13116
|
-
var payload =
|
|
13507
|
+
builder.addCase(getInsuranceTypes.fulfilled, function (state, _ref921) {
|
|
13508
|
+
var payload = _ref921.payload;
|
|
13117
13509
|
state.insuranceTypes = payload;
|
|
13118
13510
|
});
|
|
13119
|
-
builder.addCase(getInsuranceTypesAll.fulfilled, function (state,
|
|
13120
|
-
var payload =
|
|
13511
|
+
builder.addCase(getInsuranceTypesAll.fulfilled, function (state, _ref922) {
|
|
13512
|
+
var payload = _ref922.payload;
|
|
13121
13513
|
state.insuranceTypesAll = payload;
|
|
13122
13514
|
});
|
|
13515
|
+
builder.addCase(getExtraServices.fulfilled, function (state, _ref923) {
|
|
13516
|
+
var payload = _ref923.payload;
|
|
13517
|
+
state.extraServices = payload;
|
|
13518
|
+
});
|
|
13519
|
+
builder.addCase(getExtraServicesAll.fulfilled, function (state, _ref924) {
|
|
13520
|
+
var payload = _ref924.payload;
|
|
13521
|
+
state.extraServicesAll = payload;
|
|
13522
|
+
});
|
|
13523
|
+
builder.addCase(getFuelTypes.fulfilled, function (state, _ref925) {
|
|
13524
|
+
var payload = _ref925.payload;
|
|
13525
|
+
state.fuelTypes = payload;
|
|
13526
|
+
});
|
|
13527
|
+
builder.addCase(getFuelTypesAll.fulfilled, function (state, _ref926) {
|
|
13528
|
+
var payload = _ref926.payload;
|
|
13529
|
+
state.fuelTypesAll = payload;
|
|
13530
|
+
});
|
|
13123
13531
|
}
|
|
13124
13532
|
});
|
|
13125
13533
|
var setPage = questionnaire.actions.setPage;
|