diff --git a/.env.production b/.env.production
index 118755df..95d63315 100644
--- a/.env.production
+++ b/.env.production
@@ -8,7 +8,7 @@ ENV = 'production'
#林纪裕cd
-# VUE_APP_BASE_API = 'http://www.linjiyu.lol:81/UDI_WMS_MC/'
+VUE_APP_BASE_API = 'http://www.linjiyu.lol:81/UDI_WMS_MC/'
# VUE_APP_BASE_API = 'http://www.linjiyu.lol:83/UDI_WMS_MC/'
# VUE_APP_BASE_API = 'http://127.0.0.1:9150/UDI_WMS_MC/'
@@ -30,7 +30,7 @@ ENV = 'production'
# VUE_APP_BASE_API = 'http://192.168.0.242:9150/UDI_WMS_MC/'
# 平潭正式
-VUE_APP_BASE_API = 'http://55.55.0.62:9150/UDI_WMS_MC/'
+# VUE_APP_BASE_API = 'http://55.55.0.62:9150/UDI_WMS_MC/'
# 吴总测试服务器.
diff --git a/src/api/system/invSubWarehouse.js b/src/api/system/invSubWarehouse.js
index cbaf51d3..2ba37bb2 100644
--- a/src/api/system/invSubWarehouse.js
+++ b/src/api/system/invSubWarehouse.js
@@ -49,6 +49,15 @@ export function findByUp(query) {
}
+export function findLyInv(query) {
+ return axios({
+ url: "/spms/inv/warehouse/findLyInv",
+ method: "get",
+ params: query
+ });
+}
+
+
export function filterSubByInv(query) {
return axios({
url: "/spms/inv/warehouse/findByUser",
diff --git a/src/views/inout/DialogSelectInvProduct.vue b/src/views/inout/DialogSelectInvProduct.vue
index edb361a7..eb4b8c9a 100644
--- a/src/views/inout/DialogSelectInvProduct.vue
+++ b/src/views/inout/DialogSelectInvProduct.vue
@@ -1,17 +1,17 @@
-
+
-
-
-
+
+
+
-
-
-
+
+
+
@@ -19,9 +19,36 @@
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -38,21 +65,22 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -74,6 +102,7 @@ import {addDetail} from "@/api/inout/receiveOrder";
import {addBizProduct} from "@/api/inout/orderDetailCode";
import {getInvPreInProduct, getInvPreInProductStock} from "@/api/inventory/invPreInSearch";
import {getInvPreProduct, getInvPreProductStock} from "@/api/inventory/invPreProduct";
+import {finProductSet} from "@/api/param/systemParamConfig";
export default {
@@ -130,6 +159,7 @@ export default {
idQuery: null,
showSup: false,
fromOptions: [],
+ productRemarkSet: {},
};
},
components: {},
@@ -173,7 +203,7 @@ export default {
getList() {
this.loading = true;
//寄售
- if(this.invQueryData.advanceType==3){
+ if (this.invQueryData.advanceType == 3) {
getInvPreProductStock(this.filterQuery)
.then((response) => {
this.showSup = response.data.showSup;
@@ -186,8 +216,8 @@ export default {
this.list = [];
this.total = 0;
});
- //预验收
- }else if(this.invQueryData.advanceType==2){
+ //预验收
+ } else if (this.invQueryData.advanceType == 2) {
getInvPreInProductStock(this.filterQuery)
.then((response) => {
this.showSup = response.data.showSup;
@@ -201,7 +231,7 @@ export default {
this.total = 0;
});
- }else{
+ } else {
getInvProductStock(this.filterQuery)
.then((response) => {
this.showSup = response.data.showSup;
@@ -226,16 +256,16 @@ export default {
return;
}
var idster = [];
- if(this.codeArray != null || this.codeArray!=undefined ){
- if(this.codeArray.length>0){
- for(var i=0;i 0) {
+ for (var i = 0; i < this.codeArray.length; i++) {
idster.push(this.codeArray[i].relIdFk);
}
}
- if(idster.length>0){
- for(var i=0;i 0) {
+ for (var i = 0; i < idster.length; i++) {
+ for (var j = 0; j < selection.length; j++) {
+ if (idster[i] == selection[j].relIdFk) {
this.$message.error("该产品已录入!");
return
}
@@ -293,8 +323,14 @@ export default {
this.loading = false;
});
}
+ },
-
+ findBasicProductSet() {
+ finProductSet().then((response) => {
+ if (response.code == 20000) {
+ this.productRemarkSet = response.data;
+ }
+ });
},
},
filters: {
@@ -313,6 +349,7 @@ export default {
};
},
created() {
+ this.findBasicProductSet();
this.filterQuery.invCode = this.invQueryData.targetInvCode;
// 加载表格数据
this.getList();
diff --git a/src/views/inout/DialogSelectReceiveOrder.vue b/src/views/inout/DialogSelectReceiveOrder.vue
index 3b3fec3f..1650efa6 100644
--- a/src/views/inout/DialogSelectReceiveOrder.vue
+++ b/src/views/inout/DialogSelectReceiveOrder.vue
@@ -6,48 +6,48 @@
v-show="showSearch"
label-width="100px">
-
+
-
+
-
-
-
-
- {{ item.originAction }}
- {{
- item.originName
- }}
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
@@ -112,13 +111,13 @@
-
-
+
+
-
+
diff --git a/src/views/inout/IoCreateBusOrder.vue b/src/views/inout/IoCreateBusOrder.vue
index e8eb5571..295c676e 100644
--- a/src/views/inout/IoCreateBusOrder.vue
+++ b/src/views/inout/IoCreateBusOrder.vue
@@ -175,7 +175,7 @@
>删除
-
+
diff --git a/src/views/inout/receive/DialogNewReceive.vue b/src/views/inout/receive/DialogNewReceive.vue
index 497e0726..b1f07c85 100644
--- a/src/views/inout/receive/DialogNewReceive.vue
+++ b/src/views/inout/receive/DialogNewReceive.vue
@@ -4,16 +4,16 @@
草稿保存
提交单据
@@ -29,13 +29,13 @@
@@ -50,10 +50,10 @@
:disabled="codeArray.length>0"
clearable>
+ v-for="item in invList"
+ :key="item.name"
+ :label="item.name"
+ :value="item.code">
@@ -62,14 +62,13 @@
+ v-for="item in fromOptions"
+ :key="item.code"
+ :label="item.name"
+ :value="item.code">
@@ -107,10 +106,10 @@
产品录入
@@ -140,10 +139,12 @@
- 保存
- 编辑
@@ -178,7 +179,7 @@
diff --git a/src/views/inout/receive/receiveSearch.vue b/src/views/inout/receive/receiveSearch.vue
index 114c0040..a3fe5800 100644
--- a/src/views/inout/receive/receiveSearch.vue
+++ b/src/views/inout/receive/receiveSearch.vue
@@ -10,7 +10,7 @@
- {
this.invList = response.data || [];
// if (this.invList.length > 0) {
@@ -470,6 +471,7 @@ export default {
},
created() {
this.finCurInv();
+ this.getList();
},
};
diff --git a/src/views/inventory/InvPreInProductsDetail.vue b/src/views/inventory/InvPreInProductsDetail.vue
index f0771822..e766246c 100644
--- a/src/views/inventory/InvPreInProductsDetail.vue
+++ b/src/views/inventory/InvPreInProductsDetail.vue
@@ -152,7 +152,8 @@ export default {
deptCode: null,
invCode: null,
page: 1,
- limit: 10
+ limit: 10,
+ price: null,
},
list: [],
total: 0,
@@ -167,8 +168,14 @@ export default {
});
this.invPreProductDetailQuery = {
code: null,
+ relId: null,
+ supId: null,
+ batchNo: null,
+ deptCode: null,
+ invCode: null,
page: 1,
- limit: 10
+ limit: 10,
+ price: null,
};
this.getList();
},
@@ -206,7 +213,7 @@ export default {
this.invPreProductDetailQuery.batchNo = this.inputQuery.batchNo;
this.invPreProductDetailQuery.deptCode = this.inputQuery.deptCode;
this.invPreProductDetailQuery.invCode = this.inputQuery.invCode;
- this.invProductDetailQuery.price = this.inputQuery.price;
+ this.invPreProductDetailQuery.price = this.inputQuery.price;
// this.invPreProductDetailQuery.nameCode = this.inputQuery.nameCode;
getInvPreInProductDetail(this.invPreProductDetailQuery).then((res) => {
diff --git a/src/views/inventory/InvPreProductsDetail.vue b/src/views/inventory/InvPreProductsDetail.vue
index 7e7d199e..ed73aba7 100644
--- a/src/views/inventory/InvPreProductsDetail.vue
+++ b/src/views/inventory/InvPreProductsDetail.vue
@@ -153,6 +153,7 @@ export default {
invCode: null,
page: 1,
limit: 10,
+ price:null,
defaultSort: {prop: 'orderTime', order: 'desc'},
},
list: [],
@@ -167,8 +168,15 @@ export default {
});
this.invPreProductDetailQuery = {
code: null,
+ relId: null,
+ supId: null,
+ batchNo: null,
+ deptCode: null,
+ invCode: null,
page: 1,
- limit: 10
+ limit: 10,
+ price:null,
+ defaultSort: {prop: 'orderTime', order: 'desc'},
};
this.getList();
},
@@ -205,7 +213,7 @@ export default {
this.invPreProductDetailQuery.batchNo = this.inputQuery.batchNo;
this.invPreProductDetailQuery.deptCode = this.inputQuery.deptCode;
this.invPreProductDetailQuery.invCode = this.inputQuery.invCode;
- this.invProductDetailQuery.price = this.inputQuery.price;
+ this.invPreProductDetailQuery.price = this.inputQuery.price;
// this.invPreProductDetailQuery.nameCode = this.inputQuery.nameCode;
getInvPreProductDetail(this.invPreProductDetailQuery).then((res) => {
this.loading = false;
diff --git a/src/views/inventory/InvProductsDetail.vue b/src/views/inventory/InvProductsDetail.vue
index 3b188e26..5a089fc8 100644
--- a/src/views/inventory/InvProductsDetail.vue
+++ b/src/views/inventory/InvProductsDetail.vue
@@ -149,6 +149,7 @@ export default {
batchNo: null,
deptCode: null,
invCode: null,
+ price:null,
page: 1,
limit: 10
},
@@ -165,6 +166,12 @@ export default {
});
this.invProductDetailQuery = {
code: null,
+ relId: null,
+ supId: null,
+ batchNo: null,
+ deptCode: null,
+ invCode: null,
+ price:null,
page: 1,
limit: 10
};
diff --git a/src/views/purchase/purApply/purOrderSelectProduct.vue b/src/views/purchase/purApply/purOrderSelectProduct.vue
index f7089912..55f447ed 100644
--- a/src/views/purchase/purApply/purOrderSelectProduct.vue
+++ b/src/views/purchase/purApply/purOrderSelectProduct.vue
@@ -38,14 +38,14 @@
-
+
-
-
+
diff --git a/src/views/system/dept/authDept.vue b/src/views/system/dept/authDept.vue
index 4d082a71..c5076ed1 100644
--- a/src/views/system/dept/authDept.vue
+++ b/src/views/system/dept/authDept.vue
@@ -80,7 +80,7 @@
-
+
-
+
-
+
@@ -354,11 +354,11 @@ import {
saveWarehouse,
} from "@/api/system/invWarehouse";
-import { treeList, treeSelectedList } from "@/api/system/dataStatus";
+import {treeList, treeSelectedList} from "@/api/system/dataStatus";
import Treeselect from "@riophae/vue-treeselect";
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
-import { listDeptUser, removeUser } from "@/api/system/deptUser";
-import { filterSubAll } from "@/api/system/invSubWarehouse";
+import {listDeptUser, removeUser} from "@/api/system/deptUser";
+import {filterSubAll} from "@/api/system/invSubWarehouse";
export default {
data() {
@@ -388,9 +388,9 @@ export default {
deptOptions: [],
rules: {
name: [
- { required: true, message: "部门名称不能为空", trigger: "blur" },
+ {required: true, message: "部门名称不能为空", trigger: "blur"},
],
- status: [{ required: true, message: "状态不能为空", trigger: "blur" }],
+ status: [{required: true, message: "状态不能为空", trigger: "blur"}],
},
menuExpand: false,
menuNodeAll: false,
@@ -624,7 +624,8 @@ export default {
}
});
})
- .catch(() => {});
+ .catch(() => {
+ });
},
toggleExpandAll() {
this.refreshTable = false;
@@ -662,7 +663,7 @@ export default {
});
},
getDeptStatusMenuTreeselect(deptId) {
- let query = { deptId: deptId };
+ let query = {deptId: deptId};
return treeSelectedList(query).then((response) => {
this.menuOptions = response.data.menus;
return response;
@@ -741,7 +742,8 @@ export default {
}
});
})
- .catch(() => {});
+ .catch(() => {
+ });
},
//仓库相关
@@ -762,7 +764,7 @@ export default {
this.getInvList();
},
},
- components: { Treeselect },
+ components: {Treeselect},
mounted() {
},
created() {
diff --git a/src/views/system/dept/invWarehouse.vue b/src/views/system/dept/invWarehouse.vue
index fd5d6c01..4a201c0e 100644
--- a/src/views/system/dept/invWarehouse.vue
+++ b/src/views/system/dept/invWarehouse.vue
@@ -140,7 +140,7 @@
top="5vh"
>
-
+
@@ -168,8 +168,6 @@
-
-
-
-
-->
-
@@ -216,11 +211,15 @@
-
-
-
-
-
+
+
+
+ 是
+ 否
+
+
+
+
@@ -453,7 +454,7 @@ export default {
]
},
subData: {},
- subDataType:{},
+ subDataType: {},
fromDeptOptions: [],
invOptions: [],
thirdSubQuery: {
@@ -492,7 +493,7 @@ export default {
name: "",
status: "",
};
- this.subDataType.advanceType=null;
+ this.subDataType.advanceType = null;
this.getList();
//置空用户列表和货位信息列表的参数
@@ -504,13 +505,13 @@ export default {
invName: null
};
},
- onResetintent(){
+ onResetintent() {
this.$router.push({
path: "",
});
this.thirdSubQuery = {
thirdSysFk: this.thirdSubQuery.thirdSysFk,
- page:1,
+ page: 1,
limit: 10
}
@@ -531,7 +532,7 @@ export default {
},
onSubmit() { //提交查询
- this.query.advanceType=this.subDataType.advanceType;
+ this.query.advanceType = this.subDataType.advanceType;
this.getList();
},
@@ -609,7 +610,7 @@ export default {
},
hideForm() { // 新增,编辑---取消
- this.query.advanceType=null;
+ this.query.advanceType = null;
this.formVisible = false;
this.subFormVisible = false;
this.resetForm();
diff --git a/src/views/system/menu/index.vue b/src/views/system/menu/index.vue
index 9585c8df..048f751b 100644
--- a/src/views/system/menu/index.vue
+++ b/src/views/system/menu/index.vue
@@ -23,9 +23,9 @@
重置
查询
+ >查询
- 新增
展开/折叠
@@ -79,28 +79,25 @@
-
+
{{ parseTime(scope.row.createTime) }}
-
+
编辑
新增
删除