资产报废

pg_adapter
20918 8 months ago
parent d28b2cbbdd
commit 07cae683ee

@ -0,0 +1,69 @@
package com.ruoyi.web.controller.system.property;
import com.ruoyi.common.annotation.Log;
import com.ruoyi.common.core.controller.BaseController;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.common.core.page.TableDataInfo;
import com.ruoyi.common.enums.BusinessType;
import com.ruoyi.system.domain.TdPropertyInfo;
import com.ruoyi.system.service.ITdPropertyInfoService;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.*;
import java.util.List;
@Controller
@RequestMapping("/system/propertyDestory")
public class TdPropertyDestoryController extends BaseController {
private String prefix = "system/property/propertydestory";
@Autowired
private ITdPropertyInfoService tdPropertyInfoService;
@RequiresPermissions("system:destoryproperty:view")
@GetMapping()
public String destoryProperty()
{
return prefix + "/destoryproperty";
}
/**
*
*/
@RequiresPermissions("system:destoryproperty:list")
@PostMapping("/list")
@ResponseBody
public TableDataInfo list(TdPropertyInfo tdPropertyInfo)
{
startPage();
List<TdPropertyInfo> tdPropertyInfos = tdPropertyInfoService.selectTdPropertyInfoList(tdPropertyInfo);
return getDataTable(tdPropertyInfos);
}
/**
*
*/
@RequiresPermissions("system:destoryproperty:destory")
@GetMapping("/destory/{id}")
public String destory(@PathVariable("id") String id, ModelMap mmap)
{
TdPropertyInfo tdPropertyInfo = tdPropertyInfoService.selectTdPropertyInfoById(id);
mmap.put("tdPropertyInfo", tdPropertyInfo);
return prefix + "/destory";
}
/**
*
*/
@RequiresPermissions("system:destoryproperty:destory")
@Log(title = "资产变更", businessType = BusinessType.UPDATE)
@PostMapping("/destory")
@ResponseBody
public AjaxResult destorySave(TdPropertyInfo tdPropertyInfo)
{
return toAjax(tdPropertyInfoService.updateTdPropertyInfo(tdPropertyInfo));
}
}

@ -0,0 +1,65 @@
package com.ruoyi.web.controller.system.property;
import com.ruoyi.common.core.controller.BaseController;
import com.ruoyi.common.core.page.TableDataInfo;
import com.ruoyi.system.domain.TdPropertyManager;
import com.ruoyi.system.service.ITdPropertyManagerService;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.*;
import java.util.List;
/**
* packageName com.ruoyi.web.controller.system.property
*
* @author luoluo
* @version JDK 8
* @className TdPropertyDestoryListController
* @date 2024/6/24
* @description
*/
@Controller
@RequestMapping("/system/propertyDestory/list")
public class TdPropertyDestoryListController extends BaseController {
private String prefix = "system/property/propertydestory/list";
@Autowired
private ITdPropertyManagerService tdPropertyManagerService;
@RequiresPermissions("system:propertyDestory:view")
@GetMapping()
public String property()
{
return prefix + "/property";
}
/**
*
*/
@RequiresPermissions("system:destory:list")
@PostMapping("/list")
@ResponseBody
public TableDataInfo list(TdPropertyManager tdPropertyManager)
{
startPage();
List<TdPropertyManager> list = tdPropertyManagerService.selectTdPropertyManagerList(tdPropertyManager);
return getDataTable(list);
}
/**
*
*/
@RequiresPermissions("system:destory:detail")
@GetMapping("/detail/{useId}")
public String detail(@PathVariable("useId") String useId, ModelMap mmap)
{
mmap.put("useId",useId);
return "system/property/propertydestory/destoryproperty";
}
}

@ -47,6 +47,7 @@
var destoryFlag = [[${@permission.hasPermi('system:changeproperty:destory')}]]; var destoryFlag = [[${@permission.hasPermi('system:changeproperty:destory')}]];
var removeFlag = [[${@permission.hasPermi('system:changeproperty:remove')}]]; var removeFlag = [[${@permission.hasPermi('system:changeproperty:remove')}]];
var propertyTypeDatas = [[${@dict.getType('sys_sm_property')}]]; var propertyTypeDatas = [[${@dict.getType('sys_sm_property')}]];
var destoryTypeDatas = [[${@dict.getType('sys_baofei_type')}]];
var prefix = ctx + "system/propertychange"; var prefix = ctx + "system/propertychange";
$(function() { $(function() {
@ -80,6 +81,13 @@
field: 'propertySn', field: 'propertySn',
title: '资产SN码' title: '资产SN码'
}, },
{
field: 'destoryType',
title: '报废状态',
formatter: function(value, row, index) {
return $.table.selectDictLabel(destoryTypeDatas, value);
}
},
{ {
title: '操作', title: '操作',
align: 'center', align: 'center',
@ -103,7 +111,7 @@
function destory(id) { function destory(id) {
var url = prefix + '/destory/' + id; var url = prefix + '/destory/' + id;
$.modal.open("销毁资产", url); $.modal.open("资产报废", url);
} }
</script> </script>
</body> </body>

@ -48,32 +48,29 @@
</div> </div>
</div> </div>
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label">使用人员</label> <label class="col-sm-3 control-label">报废类型</label>
<div class="col-sm-8"> <div class="col-sm-8">
<input name="username" disabled th:field="*{username}" class="form-control" type="text"> <select name="destoryType" class="form-control m-b" th:with="type=${@dict.getType('sys_baofei_type')}">
</div> <option value="">---请选择---</option>
</div> <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{destoryType}"></option>
<div class="form-group"> </select>
<label class="col-sm-3 control-label">使用部门:</label>
<div class="col-sm-8">
<input name="part" disabled th:field="*{part}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label is-required">销毁日期:</label>
<div class="col-sm-8">
<div class="input-group date">
<input name="destoryDate" required th:value="${#dates.format(tdPropertyInfo.destoryDate, 'yyyy-MM-dd')}" class="form-control" placeholder="yyyy-MM-dd" type="text">
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
</div>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label is-required">销毁描述:</label>
<div class="col-sm-8">
<input name="propertyRefer" required th:field="*{propertyRefer}" class="form-control" type="text">
</div> </div>
</div> </div>
<!-- <div class="form-group">-->
<!-- <label class="col-sm-3 control-label is-required">报废日期:</label>-->
<!-- <div class="col-sm-8">-->
<!-- <div class="input-group date">-->
<!-- <input name="destoryDate" required th:value="${#dates.format(tdPropertyInfo.destoryDate, 'yyyy-MM-dd')}" class="form-control" placeholder="yyyy-MM-dd" type="text">-->
<!-- <span class="input-group-addon"><i class="fa fa-calendar"></i></span>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="form-group">-->
<!-- <label class="col-sm-3 control-label is-required">报废描述:</label>-->
<!-- <div class="col-sm-8">-->
<!-- <input name="propertyRefer" required th:field="*{propertyRefer}" class="form-control" type="text">-->
<!-- </div>-->
<!-- </div>-->
</form> </form>
</div> </div>
<th:block th:include="include :: footer" /> <th:block th:include="include :: footer" />

@ -0,0 +1,103 @@
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
<head>
<th:block th:include="include :: header('更改设备登记')" />
<th:block th:include="include :: datetimepicker-css" />
</head>
<body class="white-bg">
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
<form class="form-horizontal m" id="form-info-edit" th:object="${tdPropertyInfo}">
<input name="id" th:field="*{id}" type="hidden">
<div class="form-group">
<label class="col-sm-3 control-label">登记编号:</label>
<div class="col-sm-8">
<input name="id" disabled th:field="*{id}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">资产编号:</label>
<div class="col-sm-8">
<input name="useId" disabled th:field="*{useId}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">设备品牌:</label>
<div class="col-sm-8">
<input name="propertyBrand" disabled th:field="*{propertyBrand}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">资产种类:</label>
<div class="col-sm-8">
<select name="propertyType" disabled class="form-control m-b" th:with="type=${@dict.getType('sys_sm_property')}">
<option value="">---请选择---</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{propertyType}"></option>
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">资产型号:</label>
<div class="col-sm-8">
<input name="propertyNo" disabled th:field="*{propertyNo}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">资产SN码</label>
<div class="col-sm-8">
<input name="propertySn" disabled th:field="*{propertySn}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label is-required">销毁日期:</label>
<div class="col-sm-8">
<div class="input-group date">
<input name="destoryDate" required th:value="${#dates.format(tdPropertyInfo.destoryDate, 'yyyy-MM-dd')}" class="form-control" placeholder="yyyy-MM-dd" type="text">
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
</div>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label is-required">销毁描述:</label>
<div class="col-sm-8">
<input name="propertyRefer" required th:field="*{propertyRefer}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">销毁状态:</label>
<div class="col-sm-8">
<select name="destoryState" class="form-control m-b" th:with="type=${@dict.getType('sys_destory_state')}">
<option value="">---请选择---</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{destoryState}"></option>
</select>
</div>
</div>
</form>
</div>
<th:block th:include="include :: footer" />
<th:block th:include="include :: datetimepicker-js" />
<script th:inline="javascript">
var prefix = ctx + "system/propertyDestory";
$("#form-info-edit").validate({
focusCleanup: true
});
function submitHandler() {
if ($.validate.form()) {
$.operate.save(prefix + "/destory", $('#form-info-edit').serialize());
}
}
$("input[name='maintainDate']").datetimepicker({
format: "yyyy-mm-dd",
minView: "month",
autoclose: true
});
$("input[name='destoryDate']").datetimepicker({
format: "yyyy-mm-dd",
minView: "month",
autoclose: true
});
</script>
</body>
</html>

@ -0,0 +1,117 @@
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
<head>
<th:block th:include="include :: header('设备登记列表')" />
</head>
<body class="gray-bg">
<div class="container-div">
<div class="row">
<div class="col-sm-12 search-collapse">
<form id="formId">
<div class="select-list">
<ul>
<li>
<label>登记编号:</label>
<input type="text" name="id"/>
</li>
<li>
<label>设备品牌:</label>
<input type="text" name="propertyBrand"/>
</li>
<li>
<label>资产型号:</label>
<input type="text" name="propertyNo"/>
</li>
<li>
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i>&nbsp;搜索</a>
<a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i>&nbsp;重置</a>
</li>
</ul>
</div>
</form>
</div>
<div class="btn-group-sm" id="toolbar" role="group">
<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">
<table id="bootstrap-table"></table>
</div>
</div>
</div>
<th:block th:include="include :: footer" />
<script th:inline="javascript">
var editFlag = [[${@permission.hasPermi('system:destoryproperty:change')}]];
var destoryFlag = [[${@permission.hasPermi('system:destoryproperty:destory')}]];
var removeFlag = [[${@permission.hasPermi('system:destoryproperty:remove')}]];
var propertyTypeDatas = [[${@dict.getType('sys_sm_property')}]];
var destoryTypeDatas = [[${@dict.getType('sys_baofei_type')}]];
var prefix = ctx + "system/propertyDestory";
$(function() {
var options = {
url: prefix + "/list",
updateUrl: prefix + "/edit/{id}",
destoryUrl: prefix + "/destory/{id}",
queryParams: queryParams,
modalName: "设备登记",
columns: [
{
field: 'id',
title: '登记编号'
},
{
field: 'propertyBrand',
title: '设备品牌'
},
{
field: 'propertyType',
title: '资产种类',
formatter: function(value, row, index) {
return $.table.selectDictLabel(propertyTypeDatas, value);
}
},
{
field: 'propertyNo',
title: '资产型号'
},
{
field: 'propertySn',
title: '资产SN码'
},
{
field: 'destoryType',
title: '报废状态',
formatter: function(value, row, index) {
return $.table.selectDictLabel(destoryTypeDatas, value);
}
},
{
title: '操作',
align: 'center',
formatter: function(value, row, index) {
var actions = [];
actions.push('<a class="btn btn-danger btn-xs ' + destoryFlag + '" href="javascript:void(0)" onclick="destory(\'' + row.id + '\')"><i class="fa fa-remove"></i>销毁</a>');
return actions.join('');
}
}]
};
$.table.init(options);
});
function queryParams(params) {
var search = $.table.queryParams(params);
search.useId = [[${useId}]];
return search;
}
function destory(id) {
var url = prefix + '/destory/' + id;
$.modal.open("资产报废", url);
}
</script>
</body>
</html>

@ -0,0 +1,164 @@
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
<head>
<th:block th:include="include :: header('资产登记列表')" />
</head>
<body class="gray-bg">
<div class="container-div" id="app">
<div class="row">
<div class="col-sm-12 search-collapse">
<form id="formId">
<div class="select-list">
<ul>
<li>
<label>单位名称:</label>
<input type="text" name="frameworkId"/>
</li>
<li>
<label>资产编号:</label>
<input type="text" name="useId"/>
</li>
<li>
<label>所属市州:</label>
<select id="City" name="part" @change="getAreaList()" v-model="City">
<option value="">---请选择---</option>
<option v-for="option in CityList" :value="option.id" :key="option.id">
{{ option.name }}
</option>
</select>
</li>
<li>
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i>&nbsp;搜索</a>
<a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i>&nbsp;重置</a>
</li>
</ul>
</div>
</form>
</div>
<div class="btn-group-sm" id="toolbar" role="group">
</div>
<div class="col-sm-12 select-table table-striped">
<table id="bootstrap-table"></table>
</div>
</div>
</div>
<th:block th:include="include :: footer" />
<script th:inline="javascript">
var listFlag = [[${@permission.hasPermi('system:destory:detail')}]];
var prefix = ctx + "system/propertyDestory/list";
let datas = []
$.ajax({
url: ctx + "system/area/getAllList",
type: 'GET',
data:{parentId:''} ,
success:((res)=>{
datas = res.data
}) ,
});
$(function() {
var options = {
url: prefix + "/list",
createUrl: prefix + "/add",
updateUrl: prefix + "/edit/{id}",
removeUrl: prefix + "/remove",
exportUrl: prefix + "/export",
modalName: "资产登记",
columns: [
{
field: 'useId',
title: '资产编号'
},
{
field: 'part',
title: '所属市州',
formatter: function(value, row, index) {
return getCity(datas, value)
}
},
{
field: 'areaId',
title: '所属区县',
formatter: function(value, row, index) {
return getCity(datas, value)
}
},
{
field: 'useDepart',
title: '使用部门'
},
{
field: 'userName',
title: '使用人员'
},
{
field: 'recoverName',
title: '登记人员'
},
{
field: 'recoverDate',
title: '配发日期'
},
{
title: '操作',
align: 'center',
formatter: function(value, row, index) {
var actions = [];
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> ');
return actions.join('');
}
}]
};
$.table.init(options);
});
var app = new Vue({
el: '#app',
data: {
CityList: [],
AreaList:[],
City:'',
Area:'',
params:{
parentId:'',
}
},
mounted(){
// 初始化地市列表
this.getCityList();
if (this.City){
this.getAreaList()
}
},
methods:{
getCityList(){
$.ajax({
url: ctx + "system/area/getSysAreaList",
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
}) ,
});
},
getAreaList(){
this.params.parentId = this.City
$.ajax({
url: ctx + "system/area/getSysAreaList",
type: 'GET',
data:this.params,
success:((res)=>{
this.AreaList = res.data
}) ,
});
}
}
})
/*资产列表-详细*/
function detail(useId) {
var url = prefix + '/detail/' + useId;
$.modal.openTab("资产列表数据", url);
}
</script>
</body>
</html>
Loading…
Cancel
Save