oxpi-nglib 2.0.42 → 2.0.44
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/esm2022/lib/models/entidades/permissoes.mjs +1 -1
- package/esm2022/lib/providers/auth-data.service.mjs +2 -1
- package/fesm2022/oxpi-nglib.mjs +1 -0
- package/fesm2022/oxpi-nglib.mjs.map +1 -1
- package/lib/models/entidades/permissoes.d.ts +1 -0
- package/package.json +1 -1
- package/styles/cadastros-listagens-form.scss +23 -1
|
@@ -79,6 +79,7 @@ export interface Permissoes {
|
|
|
79
79
|
gerencialLimpezasStatus: boolean;
|
|
80
80
|
gerencialVendasPorRecepcionistas: boolean;
|
|
81
81
|
gerencialPedidos: boolean;
|
|
82
|
+
gerencialConferenciaCheckout: boolean;
|
|
82
83
|
estoqueLogin: boolean;
|
|
83
84
|
estoqueListaCompras: boolean;
|
|
84
85
|
estoqueListaProdutoGrupo: boolean;
|
package/package.json
CHANGED
|
@@ -510,4 +510,26 @@
|
|
|
510
510
|
content: "Estoque Web";
|
|
511
511
|
}
|
|
512
512
|
}
|
|
513
|
-
//FIM HISTORICO
|
|
513
|
+
//FIM HISTORICO
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
.form-section {
|
|
518
|
+
|
|
519
|
+
h4 {
|
|
520
|
+
margin: 0 0 8px;
|
|
521
|
+
//margin-top: 16px;
|
|
522
|
+
font-weight: 500;
|
|
523
|
+
font-size: small;
|
|
524
|
+
text-transform: uppercase;
|
|
525
|
+
color: #666;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
display: flex;
|
|
529
|
+
flex-direction: column;
|
|
530
|
+
gap: 16px;
|
|
531
|
+
padding: 24px 16px;
|
|
532
|
+
background: white;
|
|
533
|
+
border-radius: 13px;
|
|
534
|
+
box-shadow: 0 0 8px rgb(0 0 0 / 3%);
|
|
535
|
+
}
|