This commit is contained in:
Juan Ferrer 2019-02-05 09:47:45 +01:00
commit 1355fb80e4
4 changed files with 7 additions and 4 deletions

View File

@ -65,5 +65,6 @@
"INVALID_USER_NAME": "El nombre de usuario solo debe contener letras minúsculas o, a partir del segundo carácter, números o subguiones, no esta permitido el uso de la letra ñ", "INVALID_USER_NAME": "El nombre de usuario solo debe contener letras minúsculas o, a partir del segundo carácter, números o subguiones, no esta permitido el uso de la letra ñ",
"You can't create a ticket for a frozen client": "No puedes crear un ticket para un cliente congelado", "You can't create a ticket for a frozen client": "No puedes crear un ticket para un cliente congelado",
"You can't create a ticket for a inactive client": "No puedes crear un ticket para un cliente inactivo", "You can't create a ticket for a inactive client": "No puedes crear un ticket para un cliente inactivo",
"Tag value cannot be blank": "El valor del tag no puede quedar en blanco" "Tag value cannot be blank": "El valor del tag no puede quedar en blanco",
"ORDER_EMPTY": "Cesta vacía"
} }

View File

@ -70,7 +70,7 @@
</vn-card> </vn-card>
<vn-button-bar ng-if="!$ctrl.order.isConfirmed"> <vn-button-bar ng-if="!$ctrl.order.isConfirmed">
<vn-button <vn-button
label="Save" label="Confirm"
ng-click="$ctrl.save()"> ng-click="$ctrl.save()">
</vn-button> </vn-button>
</vn-button-bar> </vn-button-bar>

View File

@ -92,6 +92,7 @@ class Controller {
this.$http.post(query).then(() => { this.$http.post(query).then(() => {
this.vnApp.showSuccess(this.$translate.instant('Order confirmed')); this.vnApp.showSuccess(this.$translate.instant('Order confirmed'));
this.$state.go(`ticket.index`, {clientFk: this.order.clientFk});
}); });
} }
} }

View File

@ -1,2 +1,3 @@
Remove item: Eliminar articulo Delete row: Eliminar linea
Order confirmed: Pedido confirmado Order confirmed: Pedido confirmado
Are you sure you want to delete this row?: ¿Estas seguro de que quieres borrar esta línea?