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

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

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

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

Loading…
Cancel
Save