1.修复领用单据库存产品查询未携带仓库码问题

2.修复同步任务查询时间未重置问题
purchase
x_z 3 years ago
parent ba7d382cc0
commit 93fae82509

@ -14,11 +14,7 @@
</el-form-item>
<el-form-item>
<el-button-group>
<el-button
type="primary"
icon="el-icon-refresh"
@click="onReset"
></el-button>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="search" @click="onSubmit"
>查询
</el-button
@ -119,13 +115,7 @@ export default {
supId: null,
unitFk: null,
invStorageCode: null,
invWarehouseCode: null,
},
detailQuery: {
code: null,
productIdFk: null,
page: 1,
limit: 20,
invWarehouseCode: null
},
list: [],
codeDetailVisible: false,
@ -159,6 +149,8 @@ export default {
customerId: null,
unitFk: null,
supId: null,
invStorageCode: this.invQueryData.locStorageCode,
invWarehouseCode: this.invQueryData.invWarehouseCode,
page: 1,
limit: 10,
};

@ -19,7 +19,7 @@
</el-form-item>
<el-form-item class="query-form-item">
<el-date-picker
v-model="syncTime"
v-model="filterQuery.syncTime"
type="datetime"
format="yyyy-MM-dd HH:mm:ss"
value-format="yyyy-MM-dd HH:mm:ss"
@ -202,7 +202,6 @@ export default {
},
templateDlUrl: null,
checked: false,
syncTime: null,
configParms: {},
syncInfo: null,
syncVisible: false
@ -289,8 +288,8 @@ export default {
createScheduleDialog(type) {
if (this.$isNotBlank(this.syncTime)) {
this.$confirm("此操作将从" + this.syncTime + "开始同步最新数据,是否继续", "提示", {
if (this.$isNotBlank(this.filterQuery.syncTime)) {
this.$confirm("此操作将从" + this.filterQuery.syncTime + "开始同步最新数据,是否继续", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
@ -309,7 +308,7 @@ export default {
createSchedule(type) {
let query = {
createType: type,
syncTime: this.syncTime,
syncTime: this.filterQuery.syncTime,
}
createSchedule(query)

Loading…
Cancel
Save