提交 05a7bf02 编写于 作者: doc_wei's avatar doc_wei

资产申领页面修改

上级 af71cb25
......@@ -2,6 +2,8 @@
## 历史更新资讯
- 2022年
- [2022-08-22 智能制造云办公 v3.7.27 发布,ERP更新](https://www.oschina.net/news/207442)
- [2022-08-15 智能制造云办公 v3.7.26 发布,ERP更新](https://www.oschina.net/news/206538)
- [2022-08-08 智能制造云办公 v3.7.25 发布,微服务拆分](https://www.bilibili.com/read/cv17978946)
- [2022-08-01 智能制造云办公 v3.7.24 发布,手机端功能](https://www.oschina.net/news/204845)
- [2022-07-25 智能制造云办公 v3.7.23 发布 数据权限](https://www.oschina.net/news/204027)
......
......@@ -5,7 +5,7 @@
智能制造云办公软件,后端采用Springboot框架,前端采用基于layui封装的winUI,打造一款不同风格的办公软件。适用于中型企业等机构的管理。包含30多个应用模块、50多种电子流程,CRM客户、PM项目、ERP采购、库存、ADM行政、HR人事、笔记、知识库、多门店、商城、财务、考勤、HCM薪资、云盘等全面管理,打造全业务覆盖、全流程驱动的云办公。实现一体化智能制造行业的管理,实现管理流程“客户关系->线上/线下报价->销售报价->销售合同->生产计划->产品设计->采购->加工制造->入库->发货->售后服务”的高效运作,同时实现企业员工的管理以及内部运作的流程操作,完善了员工从“入职->培训->转正->办公->离职”等多项功能。
- 最新资讯:[2022-08-08 智能制造云办公 v3.7.25 发布,微服务拆分](https://www.bilibili.com/read/cv17978946)
- 最新资讯:[2022-08-22 智能制造云办公 v3.7.27 发布,ERP更新](https://www.oschina.net/news/207442)
- [软件更新资讯](https://gitee.com/doc_wei01/skyeye/blob/company_server/HISTORY_UPDATE.md)
- 开源版请下载`master`分支
- [项目功能结构](https://docs.qq.com/flowchart/DYUFQQnlCUm9Ua2FI)
......@@ -13,6 +13,7 @@
- [开源版项目文档](https://gitee.com/doc_wei01/skyeye/blob/master/%E9%A1%B9%E7%9B%AE%E6%96%87%E6%A1%A3.md)
- `企业版所有功能部署包`以及`设计思路`获取方式:扫码进入知识星球
- **最低1.8W即可获得企业版所有源代码**
- **五人团已凑钱两人,差三人开团**
- 作者本人承诺,知识星球人数达到1000人,即开放所有功能模块源代码(仅供星球内部成员使用)
### 演示视频
......
......@@ -22,60 +22,58 @@ layui.config({
$("#useTitle").html("资产领用申请单-" + getYMDFormatDate() + '-' + data.bean.userName);
$("#useName").html(data.bean.userName);
});
initTypeHtml();
function initTypeHtml() {
// 资产类型
sysDictDataUtil.queryDictDataListByDictTypeCode(sysDictData["admAssetType"]["key"], function (data) {
typeHtml = getDataUseHandlebars(selOption, data);
});
matchingLanguage();
//渲染
form.render();
//类型加载变化事件
form.on('select(selectTypeProperty)', function(data) {
var thisRowNum = data.elem.id.replace("typeId", "");
var thisRowValue = data.value;
if (!isNull(thisRowValue) && thisRowValue != '请选择') {
if(inPointArray(thisRowValue, assetList)) {
//类型对应的资产存在js对象中
var list = getListPointArray(thisRowValue, assetList);
resetAssetList(thisRowNum, list); //重置选择行的资产列表
} else {
//类型对应的资产不存在js对象中
AjaxPostUtil.request({url: flowableBasePath + "asset011", params: {typeId: thisRowValue}, type: 'json', callback: function(json) {
assetList.push({
id: thisRowValue,
list: json.rows
});
resetAssetList(thisRowNum, json.rows); //重置选择行的资产列表
}});
}
}
});
// 资产类型
sysDictDataUtil.queryDictDataListByDictTypeCode(sysDictData["admAssetType"]["key"], function (data) {
typeHtml = getDataUseHandlebars(selOption, data);
});
//商品加载变化事件
form.on('select(selectAssetarProperty)', function(data) {
var thisRowNum = data.elem.id.replace("assetId", "");
var thisRowValue = data.value;
var thisRowTypeChooseId = $("#typeId" + thisRowNum).val();
if (!isNull(thisRowValue) && thisRowValue != '请选择') {
var list = getListPointArray(thisRowTypeChooseId, assetList);
$.each(list, function(i, item) {
if(item.id === thisRowValue) {
$("#specificationsName" + thisRowNum).html(item.specificationsName);
$("#assetNum" + thisRowNum).html(item.assetNum);
return false;
}
});
matchingLanguage();
form.render();
//类型加载变化事件
form.on('select(selectTypeProperty)', function(data) {
var thisRowNum = data.elem.id.replace("typeId", "");
var thisRowValue = data.value;
if (!isNull(thisRowValue) && thisRowValue != '请选择') {
if(inPointArray(thisRowValue, assetList)) {
//类型对应的资产存在js对象中
var list = getListPointArray(thisRowValue, assetList);
resetAssetList(thisRowNum, list); //重置选择行的资产列表
} else {
$("#specificationsName" + thisRowNum).html(""); //重置规格为空
$("#assetNum" + thisRowNum).html(""); //重置编号为空
//类型对应的资产不存在js对象中
AjaxPostUtil.request({url: flowableBasePath + "asset011", params: {typeId: thisRowValue}, type: 'json', callback: function(json) {
assetList.push({
id: thisRowValue,
list: json.rows
});
resetAssetList(thisRowNum, json.rows); //重置选择行的资产列表
}});
}
});
//初始化一行数据
addRow();
}
}
});
//商品加载变化事件
form.on('select(selectAssetarProperty)', function(data) {
var thisRowNum = data.elem.id.replace("assetId", "");
var thisRowValue = data.value;
var thisRowTypeChooseId = $("#typeId" + thisRowNum).val();
if (!isNull(thisRowValue) && thisRowValue != '请选择') {
var list = getListPointArray(thisRowTypeChooseId, assetList);
$.each(list, function(i, item) {
if(item.id === thisRowValue) {
$("#specificationsName" + thisRowNum).html(item.specificationsName);
$("#assetNum" + thisRowNum).html(item.assetNum);
return false;
}
});
} else {
$("#specificationsName" + thisRowNum).html(""); //重置规格为空
$("#assetNum" + thisRowNum).html(""); //重置编号为空
}
});
// 初始化一行数据
addRow();
skyeyeEnclosure.init('enclosureUpload');
// 保存为草稿
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册