diff --git a/src/views/inout/DialogSelectReceiveOrder.vue b/src/views/inout/DialogSelectReceiveOrder.vue index 98573ab0..21fc9ea1 100644 --- a/src/views/inout/DialogSelectReceiveOrder.vue +++ b/src/views/inout/DialogSelectReceiveOrder.vue @@ -283,11 +283,11 @@ export default { getList() { this.loading = true; if (this.actDateRange !== null) { - this.listQuery.startDate = this.actDateRange[0]; - this.listQuery.endDate = this.actDateRange[1]; + this.listQuery.startTime = this.actDateRange[0]; + this.listQuery.endTime = this.actDateRange[1]; } else { - this.listQuery.startDate = null; - this.listQuery.endDate = null; + this.listQuery.startTime = null; + this.listQuery.endTime = null; } this.listQuery.customerId = store.getters.customerId; getReceiveOrder(this.listQuery)