This commit is contained in:
parent
1093d29fb6
commit
273c06a210
|
@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- (Entradas -> Correo) Al cambiar el tipo de cambio enviará un correo a las personas designadas
|
- (Entradas -> Correo) Al cambiar el tipo de cambio enviará un correo a las personas designadas
|
||||||
- (General -> Históricos) Botón para ver el estado del registro en cada punto
|
- (General -> Históricos) Botón para ver el estado del registro en cada punto
|
||||||
- (General -> Históricos) Al filtar por registro se muestra todo el histórial desde que fue creado
|
- (General -> Históricos) Al filtar por registro se muestra todo el histórial desde que fue creado
|
||||||
|
- (Tickets -> Índice) Permite enviar varios albaranes a Docuware
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- (General -> Históricos) Los registros se muestran agrupados por usuario y entidad
|
- (General -> Históricos) Los registros se muestran agrupados por usuario y entidad
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
INSERT INTO salix.ACL (model,property,accessType,permission,principalType,principalId)
|
INSERT INTO `salix`.`ACL` (model,property,accessType,permission,principalType,principalId)
|
||||||
VALUES
|
VALUES
|
||||||
('InvoiceOut','makePdfAndNotify','WRITE','ALLOW','ROLE','invoicing'),
|
('InvoiceOut','makePdfAndNotify','WRITE','ALLOW','ROLE','invoicing'),
|
||||||
('InvoiceOutConfig','*','READ','ALLOW','ROLE','invoicing');
|
('InvoiceOutConfig','*','READ','ALLOW','ROLE','invoicing');
|
||||||
|
|
||||||
CREATE OR REPLACE TABLE vn.invoiceOutConfig (
|
CREATE OR REPLACE TABLE `vn`.`invoiceOutConfig` (
|
||||||
id INT UNSIGNED auto_increment NOT NULL,
|
id INT UNSIGNED auto_increment NOT NULL,
|
||||||
parallelism int UNSIGNED DEFAULT 1 NOT NULL,
|
parallelism int UNSIGNED DEFAULT 1 NOT NULL,
|
||||||
PRIMARY KEY (id)
|
PRIMARY KEY (id)
|
||||||
|
|
|
@ -176,5 +176,6 @@
|
||||||
"Can't transfer claimed sales": "Can't transfer claimed sales",
|
"Can't transfer claimed sales": "Can't transfer claimed sales",
|
||||||
"Invalid quantity": "Invalid quantity",
|
"Invalid quantity": "Invalid quantity",
|
||||||
"Failed to upload delivery note": "Error to upload delivery note {{id}}",
|
"Failed to upload delivery note": "Error to upload delivery note {{id}}",
|
||||||
"Mail not sent": "There has been an error sending the invoice to the client [{{clientId}}]({{{clientUrl}}}), please check the email address"
|
"Mail not sent": "There has been an error sending the invoice to the client [{{clientId}}]({{{clientUrl}}}), please check the email address",
|
||||||
|
"The renew period has not been exceeded": "The renew period has not been exceeded"
|
||||||
}
|
}
|
Loading…
Reference in New Issue