|
|
|
@ -7,6 +7,7 @@ import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
|
|
import com.ruoyi.common.utils.uuid.Seq;
|
|
|
|
|
import com.ruoyi.system.domain.TdPropertyInfo;
|
|
|
|
|
import com.ruoyi.system.service.ITdPropertyInfoService;
|
|
|
|
|
import com.ruoyi.system.service.TdPropertyEmentService;
|
|
|
|
|
import com.ruoyi.web.controller.manager.SysAreaManager;
|
|
|
|
|
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
@ -36,8 +37,7 @@ import javax.annotation.Resource;
|
|
|
|
|
*/
|
|
|
|
|
@Controller
|
|
|
|
|
@RequestMapping("/system/property")
|
|
|
|
|
public class TdPropertyManagerController extends BaseController
|
|
|
|
|
{
|
|
|
|
|
public class TdPropertyManagerController extends BaseController {
|
|
|
|
|
private String prefix = "system/property/property";
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
@ -45,13 +45,15 @@ public class TdPropertyManagerController extends BaseController
|
|
|
|
|
@Autowired
|
|
|
|
|
private ITdPropertyInfoService tdPropertyInfoService;
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
private TdPropertyEmentService tdPropertyEmentService;
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
private SysAreaManager sysAreaManager;
|
|
|
|
|
|
|
|
|
|
@RequiresPermissions("system:property:view")
|
|
|
|
|
@GetMapping()
|
|
|
|
|
public String property()
|
|
|
|
|
{
|
|
|
|
|
public String property() {
|
|
|
|
|
return prefix + "/property";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -61,8 +63,7 @@ public class TdPropertyManagerController extends BaseController
|
|
|
|
|
@RequiresPermissions("system:property:list")
|
|
|
|
|
@PostMapping("/list")
|
|
|
|
|
@ResponseBody
|
|
|
|
|
public TableDataInfo list(TdPropertyManager tdPropertyManager)
|
|
|
|
|
{
|
|
|
|
|
public TableDataInfo list(TdPropertyManager tdPropertyManager) {
|
|
|
|
|
startPage();
|
|
|
|
|
List<TdPropertyManager> list = tdPropertyManagerService.selectTdPropertyManagerList(tdPropertyManager);
|
|
|
|
|
return getDataTable(list);
|
|
|
|
@ -75,8 +76,7 @@ public class TdPropertyManagerController extends BaseController
|
|
|
|
|
@Log(title = "密品登记", businessType = BusinessType.EXPORT)
|
|
|
|
|
@PostMapping("/export")
|
|
|
|
|
@ResponseBody
|
|
|
|
|
public AjaxResult export(TdPropertyManager tdPropertyManager)
|
|
|
|
|
{
|
|
|
|
|
public AjaxResult export(TdPropertyManager tdPropertyManager) {
|
|
|
|
|
List<TdPropertyManager> list = tdPropertyManagerService.selectTdPropertyManagerList(tdPropertyManager);
|
|
|
|
|
list.forEach(tdPropertyManager1 -> {
|
|
|
|
|
tdPropertyManager1.setPart(sysAreaManager.getAreaName(tdPropertyManager1.getPart()));
|
|
|
|
@ -90,8 +90,7 @@ public class TdPropertyManagerController extends BaseController
|
|
|
|
|
* 新增密品登记
|
|
|
|
|
*/
|
|
|
|
|
@GetMapping("/add")
|
|
|
|
|
public String add(ModelMap mmap)
|
|
|
|
|
{
|
|
|
|
|
public String add(ModelMap mmap) {
|
|
|
|
|
mmap.put("sysuser", getSysUser());
|
|
|
|
|
return prefix + "/add";
|
|
|
|
|
}
|
|
|
|
@ -103,8 +102,7 @@ public class TdPropertyManagerController extends BaseController
|
|
|
|
|
@Log(title = "密品登记", businessType = BusinessType.INSERT)
|
|
|
|
|
@PostMapping("/add")
|
|
|
|
|
@ResponseBody
|
|
|
|
|
public AjaxResult addSave(TdPropertyManager tdPropertyManager)
|
|
|
|
|
{
|
|
|
|
|
public AjaxResult addSave(TdPropertyManager tdPropertyManager) {
|
|
|
|
|
tdPropertyManager.setUseId("Property_" + Seq.getId(Seq.commSeqType));
|
|
|
|
|
return toAjax(tdPropertyManagerService.insertTdPropertyManager(tdPropertyManager));
|
|
|
|
|
}
|
|
|
|
@ -114,8 +112,7 @@ public class TdPropertyManagerController extends BaseController
|
|
|
|
|
*/
|
|
|
|
|
@RequiresPermissions("system:property:edit")
|
|
|
|
|
@GetMapping("/edit/{useId}")
|
|
|
|
|
public String edit(@PathVariable("useId") String useId, ModelMap mmap)
|
|
|
|
|
{
|
|
|
|
|
public String edit(@PathVariable("useId") String useId, ModelMap mmap) {
|
|
|
|
|
TdPropertyManager tdPropertyManager = tdPropertyManagerService.selectTdPropertyManagerByUseId(useId);
|
|
|
|
|
mmap.put("tdPropertyManager", tdPropertyManager);
|
|
|
|
|
return prefix + "/edit";
|
|
|
|
@ -128,8 +125,7 @@ public class TdPropertyManagerController extends BaseController
|
|
|
|
|
@Log(title = "密品登记", businessType = BusinessType.UPDATE)
|
|
|
|
|
@PostMapping("/edit")
|
|
|
|
|
@ResponseBody
|
|
|
|
|
public AjaxResult editSave(TdPropertyManager tdPropertyManager)
|
|
|
|
|
{
|
|
|
|
|
public AjaxResult editSave(TdPropertyManager tdPropertyManager) {
|
|
|
|
|
return toAjax(tdPropertyManagerService.updateTdPropertyManager(tdPropertyManager));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -140,11 +136,11 @@ public class TdPropertyManagerController extends BaseController
|
|
|
|
|
@Log(title = "密品登记", businessType = BusinessType.DELETE)
|
|
|
|
|
@PostMapping("/remove")
|
|
|
|
|
@ResponseBody
|
|
|
|
|
public AjaxResult remove(String ids)
|
|
|
|
|
{
|
|
|
|
|
public AjaxResult remove(String ids) {
|
|
|
|
|
QueryWrapper queryWrapper = new QueryWrapper();
|
|
|
|
|
queryWrapper.in("use_id", ids.split(","));
|
|
|
|
|
tdPropertyInfoService.remove(queryWrapper);
|
|
|
|
|
tdPropertyEmentService.remove(queryWrapper);
|
|
|
|
|
return toAjax(tdPropertyManagerService.deleteTdPropertyManagerByUseIds(ids));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -153,8 +149,7 @@ public class TdPropertyManagerController extends BaseController
|
|
|
|
|
*/
|
|
|
|
|
@RequiresPermissions("system:property:list")
|
|
|
|
|
@GetMapping("/detail/{useId}")
|
|
|
|
|
public String detail(@PathVariable("useId") String useId, ModelMap mmap)
|
|
|
|
|
{
|
|
|
|
|
public String detail(@PathVariable("useId") String useId, ModelMap mmap) {
|
|
|
|
|
mmap.put("useId", useId);
|
|
|
|
|
return "system/property/data/propertyinfo";
|
|
|
|
|
}
|
|
|
|
|