This commit is contained in:
parent
8e8ee39302
commit
30069ded15
|
@ -16,7 +16,7 @@ class Controller extends Section {
|
|||
this.filter = {
|
||||
where: {
|
||||
itemFk: this.$params.id,
|
||||
shipped: {
|
||||
landed: {
|
||||
between: [from, to]
|
||||
}
|
||||
}
|
||||
|
@ -36,7 +36,7 @@ class Controller extends Section {
|
|||
const to = new Date(this._dateTo);
|
||||
to.setHours(23, 59, 59, 59);
|
||||
|
||||
this.filter.where.shipped = {
|
||||
this.filter.where.landed = {
|
||||
between: [from, to]
|
||||
};
|
||||
this.$.model.refresh();
|
||||
|
@ -53,7 +53,7 @@ class Controller extends Section {
|
|||
const to = new Date(value);
|
||||
to.setHours(23, 59, 59, 59);
|
||||
|
||||
this.filter.where.shipped = {
|
||||
this.filter.where.landed = {
|
||||
between: [from, to]
|
||||
};
|
||||
this.$.model.refresh();
|
||||
|
|
Loading…
Reference in New Issue