检查,资产,文件

master
20918 11 months ago
parent a080905ada
commit 088b964aaa

@ -28,15 +28,15 @@ import com.ruoyi.common.core.page.TableDataInfo;
* @date 2024-04-29
*/
@Controller
@RequestMapping("/system/propertyinfo")
@RequestMapping("/system/property/data")
public class TdPropertyInfoController extends BaseController
{
private String prefix = "system/propertyinfo";
private String prefix = "system/property/data";
@Autowired
private ITdPropertyInfoService tdPropertyInfoService;
@RequiresPermissions("system:propertyinfo:view")
@RequiresPermissions("system:property:view")
@GetMapping()
public String propertyinfo()
{
@ -46,20 +46,21 @@ public class TdPropertyInfoController extends BaseController
/**
*
*/
@RequiresPermissions("system:propertyinfo:list")
@PostMapping("/list")
@ResponseBody
public TableDataInfo list(TdPropertyInfo tdPropertyInfo)
@RequiresPermissions("system:property:list")
@GetMapping("/list/{useId}")
//@ResponseBody
public TableDataInfo list(@PathVariable("useId") String useId, TdPropertyInfo tdPropertyInfo)
{
startPage();
List<TdPropertyInfo> list = tdPropertyInfoService.selectTdPropertyInfoList(tdPropertyInfo);
return getDataTable(list);
List<TdPropertyInfo> tdPropertyInfos = tdPropertyInfoService.selectTdPropertyInfoByUseId(useId);
//List<TdPropertyInfo> list = tdPropertyInfoService.selectTdPropertyInfoList(tdPropertyInfo);
return getDataTable(tdPropertyInfos);
}
/**
*
*/
@RequiresPermissions("system:propertyinfo:export")
@RequiresPermissions("system:property:export")
@Log(title = "资产管理", businessType = BusinessType.EXPORT)
@PostMapping("/export")
@ResponseBody
@ -73,17 +74,17 @@ public class TdPropertyInfoController extends BaseController
/**
*
*/
@GetMapping("/add")
public String add()
@GetMapping("/add/{useId}")
public String add(@PathVariable("useId") String useId, ModelMap mmap)
{
mmap.put("useId", useId);
return prefix + "/add";
}
/**
*
*/
@RequiresPermissions("system:propertyinfo:add")
@RequiresPermissions("system:property:add")
@Log(title = "资产管理", businessType = BusinessType.INSERT)
@PostMapping("/add")
@ResponseBody
@ -96,7 +97,7 @@ public class TdPropertyInfoController extends BaseController
/**
*
*/
@RequiresPermissions("system:propertyinfo:edit")
@RequiresPermissions("system:property:edit")
@GetMapping("/edit/{id}")
public String edit(@PathVariable("id") String id, ModelMap mmap)
{
@ -108,7 +109,7 @@ public class TdPropertyInfoController extends BaseController
/**
*
*/
@RequiresPermissions("system:propertyinfo:edit")
@RequiresPermissions("system:property:edit")
@Log(title = "资产管理", businessType = BusinessType.UPDATE)
@PostMapping("/edit")
@ResponseBody
@ -120,7 +121,7 @@ public class TdPropertyInfoController extends BaseController
/**
*
*/
@RequiresPermissions("system:propertyinfo:remove")
@RequiresPermissions("system:property:remove")
@Log(title = "资产管理", businessType = BusinessType.DELETE)
@PostMapping( "/remove")
@ResponseBody
@ -129,9 +130,5 @@ public class TdPropertyInfoController extends BaseController
return toAjax(tdPropertyInfoService.deleteTdPropertyInfoByIds(ids));
}
/**
*
*/
}

@ -34,7 +34,7 @@ import com.ruoyi.common.core.page.TableDataInfo;
@RequestMapping("/system/property")
public class TdPropertyManagerController extends BaseController
{
private String prefix = "system/property";
private String prefix = "system/property/property";
@Autowired
private ITdPropertyManagerService tdPropertyManagerService;
@ -136,15 +136,13 @@ public class TdPropertyManagerController extends BaseController
/**
*
*/
@RequiresPermissions("system:property:addproperty")
@GetMapping("/propertyinfo/{useId}")
public String addproperty(@PathVariable("useId") String useId,ModelMap mmap)
@RequiresPermissions("system:property:list")
@GetMapping("/detail/{useId}")
public String detail(@PathVariable("useId") String useId, ModelMap mmap)
{
List<TdPropertyInfo> tdPropertyInfos = tdPropertyInfoService.listByIds(Collections.singleton(useId));
mmap.put("tdPropertyInfos", tdPropertyInfos);
return prefix + "/propertyinfo";
mmap.put("useId",useId);
// mmap.put("property", tdPropertyInfoService.selectTdPropertyInfoByUseId(useId));
return "system/property/data/propertyinfo";
}
}

@ -277,14 +277,14 @@
<th:block th:include="include :: footer" />
<th:block th:include="include :: datetimepicker-js" />
<script th:inline="javascript">
var prefix = ctx + "system/check";
var prefix = ctx + "system/checkresult";
$("#form-check-edit").validate({
focusCleanup: true
});
function submitHandler() {
if ($.validate.form()) {
$.operate.save(prefix + "/edit", $('#form-check-edit').serialize());
$.operate.save(prefix + "/checkresult", $('#form-check-edit').serialize());
}
}

@ -193,14 +193,14 @@
<th:block th:include="include :: footer" />
<th:block th:include="include :: datetimepicker-js" />
<script th:inline="javascript">
var prefix = ctx + "system/propertyinfo"
var prefix = ctx + "system/property/data"
$("#form-propertyinfo-add").validate({
focusCleanup: true
});
function submitHandler() {
if ($.validate.form()) {
$.operate.save(prefix + "/add", $('#form-propertyinfo-add').serialize());
$.operate.save(prefix + "/add/{usrId}", $('#form-propertyinfo-add').serialize());
}
}

@ -187,7 +187,7 @@
<th:block th:include="include :: footer" />
<th:block th:include="include :: datetimepicker-js" />
<script th:inline="javascript">
var prefix = ctx + "system/propertyinfo";
var prefix = ctx + "system/property/data";
$("#form-propertyinfo-edit").validate({
focusCleanup: true
});

@ -51,8 +51,8 @@
<a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="system:propertyinfo:export">
<i class="fa fa-download"></i> 导出
</a>
<a class="btn btn-primary" href="/system/property">
<i class="fa fa-backward"></i> 返回
<a class="btn btn-danger" onclick="closeItem()">
<i class="fa fa-reply-all"></i> 关闭
</a>
</div>
<div class="col-sm-12 select-table table-striped">
@ -62,20 +62,20 @@
</div>
<th:block th:include="include :: footer" />
<script th:inline="javascript">
var editFlag = [[${@permission.hasPermi('system:propertyinfo:edit')}]];
var removeFlag = [[${@permission.hasPermi('system:propertyinfo:remove')}]];
var editFlag = [[${@permission.hasPermi('system:data:edit')}]];
var removeFlag = [[${@permission.hasPermi('system:data:remove')}]];
var propertyNetstyleDatas = [[${@dict.getType('sys_file_miji')}]];
var propertyTypeDatas = [[${@dict.getType('sys_sm_property')}]];
var propertyMijiDatas = [[${@dict.getType('sys_file_miji')}]];
var isCurcialDatas = [[${@dict.getType('sys_yes_no')}]];
var isSoftwareDatas = [[${@dict.getType('sys_yes_no')}]];
var shemichengduDatas = [[${@dict.getType('sys_user_shemi')}]];
var prefix = ctx + "system/propertyinfo";
var prefix = ctx + "system/property/data";
$(function() {
var options = {
url: prefix + "/list",
createUrl: prefix + "/add",
url: prefix + "/list/{useId}",
createUrl: prefix + "/add/{useId}",
updateUrl: prefix + "/edit/{id}",
removeUrl: prefix + "/remove",
exportUrl: prefix + "/export",

@ -54,7 +54,7 @@
<script th:inline="javascript">
var editFlag = [[${@permission.hasPermi('system:property:edit')}]];
var removeFlag = [[${@permission.hasPermi('system:property:remove')}]];
var addPropertyinfoFlag = [[${@permission.hasPermi('system:property:addproperty')}]];
var listFlag = [[${@permission.hasPermi('system:property:list')}]];
var prefix = ctx + "system/property";
$(function() {
@ -64,7 +64,6 @@
updateUrl: prefix + "/edit/{id}",
removeUrl: prefix + "/remove",
exportUrl: prefix + "/export",
//addUrl: prefix + "/propertyinfo/{useId}",
modalName: "资产登记",
columns: [{
checkbox: true
@ -103,7 +102,7 @@
formatter: function(value, row, index) {
var actions = [];
actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.useId + '\')"><i class="fa fa-edit"></i>编辑</a> ');
actions.push('<a class="btn btn-success btn-xs ' + addPropertyinfoFlag + '" href= "/system/propertyinfo" "><i class="fa fa-plus"></i>添加</a> ');
actions.push('<a class="btn btn-info btn-xs ' + listFlag + '" href="javascript:void(0)" onclick="detail(\'' + row.useId + '\')"><i class="fa fa-list-ul"></i>列表</a> ');
actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="javascript:void(0)" onclick="$.operate.remove(\'' + row.useId + '\')"><i class="fa fa-remove"></i>删除</a>');
return actions.join('');
}
@ -111,6 +110,11 @@
};
$.table.init(options);
});
/*资产列表-详细*/
function detail(useId) {
var url = prefix + '/detail/' + useId;
$.modal.openTab("资产列表数据", url);
}
</script>
</body>
</html>

@ -1,10 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
</body>
</html>

@ -21,6 +21,8 @@ public interface TdPropertyInfoMapper extends BaseMapper<TdPropertyInfo>
*/
public TdPropertyInfo selectTdPropertyInfoById(String id);
public List<TdPropertyInfo> selectTdPropertyInfoByUseId(String id);
/**
*
*

@ -20,6 +20,8 @@ public interface ITdPropertyInfoService extends IService<TdPropertyInfo>
* @return
*/
public TdPropertyInfo selectTdPropertyInfoById(String id);
public List<TdPropertyInfo> selectTdPropertyInfoByUseId(String id);
/**
*

@ -34,6 +34,12 @@ public class TdPropertyInfoServiceImpl extends ServiceImpl<TdPropertyInfoMapper,
return tdPropertyInfoMapper.selectTdPropertyInfoById(id);
}
@Override
public List<TdPropertyInfo> selectTdPropertyInfoByUseId(String id)
{
return tdPropertyInfoMapper.selectTdPropertyInfoByUseId(id);
}
/**
*
*

@ -75,6 +75,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<include refid="selectTdPropertyInfoVo"/>
where id = #{id}
</select>
<select id="selectTdPropertyInfoByUseId" parameterType="String" resultMap="TdPropertyInfoResult">
<include refid="selectTdPropertyInfoVo"/>
where use_id = #{useId}
</select>
<insert id="insertTdPropertyInfo" parameterType="TdPropertyInfo">
insert into td_property_info

Loading…
Cancel
Save