cr changes

This commit is contained in:
Bernat Exposito Domenech 2020-07-09 11:21:06 +02:00
parent 7d6ac265b4
commit b2e3ebc262
2 changed files with 1 additions and 2 deletions

View File

@ -177,7 +177,6 @@ module.exports = Self => {
});
}
// stmt.merge(conn.makeSuffix(filter));
stmt.merge(conn.makeWhere(filter.where));
stmt.merge({
sql: `GROUP BY o.id`

View File

@ -23,7 +23,7 @@ class Controller extends Section {
}
save() {
this.$http.post(`Orders/${this.$params.id}/confirm`).then(() => {
this.$http.post(`Orders/${this.order.id}/confirm`).then(() => {
this.vnApp.showSuccess(this.$t('Order confirmed'));
this.$state.go(`ticket.index`, {
q: JSON.stringify({clientFk: this.order.clientFk})