cr changes
This commit is contained in:
parent
7d6ac265b4
commit
b2e3ebc262
|
@ -177,7 +177,6 @@ module.exports = Self => {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// stmt.merge(conn.makeSuffix(filter));
|
|
||||||
stmt.merge(conn.makeWhere(filter.where));
|
stmt.merge(conn.makeWhere(filter.where));
|
||||||
stmt.merge({
|
stmt.merge({
|
||||||
sql: `GROUP BY o.id`
|
sql: `GROUP BY o.id`
|
||||||
|
|
|
@ -23,7 +23,7 @@ class Controller extends Section {
|
||||||
}
|
}
|
||||||
|
|
||||||
save() {
|
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.vnApp.showSuccess(this.$t('Order confirmed'));
|
||||||
this.$state.go(`ticket.index`, {
|
this.$state.go(`ticket.index`, {
|
||||||
q: JSON.stringify({clientFk: this.order.clientFk})
|
q: JSON.stringify({clientFk: this.order.clientFk})
|
||||||
|
|
Loading…
Reference in New Issue