iptdevs-design-system 3.1.57 → 3.1.58
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/esm2020/lib/cod/steps/cod-form-step-five/cod-form-step-five.component.mjs +6 -4
- package/fesm2015/iptdevs-design-system.mjs +5 -3
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +5 -3
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -4028,9 +4028,11 @@ class CodFormStepFiveComponent extends CodFormSteps {
|
|
|
4028
4028
|
if (!this.termsCheckboxStatus)
|
|
4029
4029
|
this.errorMessage = 'Debe marcar la casilla de términos y condiciones.';
|
|
4030
4030
|
});
|
|
4031
|
-
if (this.userRole === 30 || this.userRole === 31 || this.userRole === 32)
|
|
4032
|
-
|
|
4033
|
-
|
|
4031
|
+
// if (this.userRole === 30 || this.userRole === 31 || this.userRole === 32) this.sendFormMsg = 'Editar COD'; // Roles Administrativos
|
|
4032
|
+
if (this.userRole === 30 || this.userRole === 31 || this.userRole === 32 ||
|
|
4033
|
+
this.userRole === 40 || this.userRole === 41 || this.userRole === 42 ||
|
|
4034
|
+
this.userRole === 50 || this.userRole === 51 || this.userRole === 52 ||
|
|
4035
|
+
this.userRole === 1)
|
|
4034
4036
|
this.sendFormMsg = 'Crear COD'; // Roles comerciales
|
|
4035
4037
|
if (changes['initialData']) {
|
|
4036
4038
|
if (this.initialData != null) {
|