提交 6c67d5d2 编写于 作者: doc_wei's avatar doc_wei

feat: ERP商品条形码复制修改

上级 cf40eb92
...@@ -56,7 +56,7 @@ layui.config({ ...@@ -56,7 +56,7 @@ layui.config({
let params = { let params = {
materialId: $("#materialId").val(), materialId: $("#materialId").val(),
normsId: $("#normsId").val(), normsId: $("#normsId").val(),
inDepot: dataShowType.getData('inDepot'), inDepot: isNull(dataShowType.getData('inDepot')) ? '' : dataShowType.getData('inDepot'),
number: $("#number").val(), number: $("#number").val(),
limit: $("#number").val(), limit: $("#number").val(),
depotId: $("#depotId").val(), depotId: $("#depotId").val(),
......
...@@ -63,7 +63,7 @@ layui.config({ ...@@ -63,7 +63,7 @@ layui.config({
AjaxPostUtil.request({url: reqBasePath + "querySysRoleById", params: {id: id}, type: 'json', method: "GET", callback: function (json) { AjaxPostUtil.request({url: reqBasePath + "querySysRoleById", params: {id: id}, type: 'json', method: "GET", callback: function (json) {
$("#name").text(json.bean.name); $("#name").text(json.bean.name);
$("#remark").text(json.bean.remark); $("#remark").text(json.bean.remark);
checkeRows = json.bean.appMenuIds; checkeRows = isNull(json.bean.appMenuIds) ? [] : json.bean.appMenuIds;
tree = fsTree.render({ tree = fsTree.render({
id: "treeDemo", id: "treeDemo",
......
...@@ -45,7 +45,7 @@ layui.config({ ...@@ -45,7 +45,7 @@ layui.config({
AjaxPostUtil.request({url: reqBasePath + "querySysRoleById", params: {id: id}, type: 'json', method: "GET", callback: function (json) { AjaxPostUtil.request({url: reqBasePath + "querySysRoleById", params: {id: id}, type: 'json', method: "GET", callback: function (json) {
$("#name").text(json.bean.name); $("#name").text(json.bean.name);
$("#remark").text(json.bean.remark); $("#remark").text(json.bean.remark);
checkeRows = json.bean.menuIds; checkeRows = isNull(json.bean.menuIds) ? [] : json.bean.menuIds;
tree = fsTree.render({ tree = fsTree.render({
id: "treeDemo", id: "treeDemo",
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册