119 lines
3.9 KiB
C#
119 lines
3.9 KiB
C#
using Microsoft.AspNetCore.Mvc;
|
||
using DOAN.Model.PBL.Dto;
|
||
using DOAN.Model.PBL;
|
||
using DOAN.Service.PBL.IService;
|
||
using DOAN.Admin.WebApi.Filters;
|
||
using System.Collections.Generic;
|
||
|
||
//创建时间:2024-09-23
|
||
namespace DOAN.Admin.WebApi.Controllers.PBL
|
||
{
|
||
/// <summary>
|
||
/// 库存日志
|
||
/// </summary>
|
||
[Verify]
|
||
[Route("PBL/Inventorylog")]
|
||
public class InventorylogController : BaseController
|
||
{
|
||
/// <summary>
|
||
/// 库存日志接口
|
||
/// </summary>
|
||
private readonly IInventorylogService _InventorylogService;
|
||
|
||
public InventorylogController(IInventorylogService InventorylogService)
|
||
{
|
||
_InventorylogService = InventorylogService;
|
||
}
|
||
|
||
/// <summary>
|
||
/// 查询库存日志列表
|
||
/// </summary>
|
||
/// <param name="parm"></param>
|
||
/// <returns></returns>
|
||
[HttpGet("list")]
|
||
[ActionPermissionFilter(Permission = "inventorylog:list")]
|
||
public IActionResult QueryInventorylog([FromQuery] InventorylogQueryDto parm)
|
||
{
|
||
var response = _InventorylogService.GetList(parm);
|
||
return SUCCESS(response);
|
||
}
|
||
|
||
|
||
/// <summary>
|
||
/// 查询库存日志详情
|
||
/// </summary>
|
||
/// <param name="Id"></param>
|
||
/// <returns></returns>
|
||
[HttpGet("{Id}")]
|
||
[ActionPermissionFilter(Permission = "inventorylog:query")]
|
||
public IActionResult GetInventorylog(string Id)
|
||
{
|
||
var response = _InventorylogService.GetInfo(Id);
|
||
|
||
var info = response.Adapt<InventorylogDto>();
|
||
return SUCCESS(info);
|
||
}
|
||
|
||
/// <summary>
|
||
/// 添加库存日志
|
||
/// </summary>
|
||
/// <returns></returns>
|
||
[HttpPost]
|
||
[ActionPermissionFilter(Permission = "inventorylog:add")]
|
||
[Log(Title = "库存日志", BusinessType = BusinessType.INSERT)]
|
||
public IActionResult AddInventorylog([FromBody] InventorylogDto parm)
|
||
{
|
||
var modal = parm.Adapt<Inventorylog>().ToCreate(HttpContext);
|
||
|
||
var response = _InventorylogService.AddInventorylog(modal);
|
||
|
||
return SUCCESS(response);
|
||
}
|
||
|
||
/// <summary>
|
||
/// 更新库存日志
|
||
/// </summary>
|
||
/// <returns></returns>
|
||
[HttpPut]
|
||
[ActionPermissionFilter(Permission = "inventorylog:edit")]
|
||
[Log(Title = "库存日志", BusinessType = BusinessType.UPDATE)]
|
||
public IActionResult UpdateInventorylog([FromBody] InventorylogDto parm)
|
||
{
|
||
var modal = parm.Adapt<Inventorylog>().ToUpdate(HttpContext);
|
||
var response = _InventorylogService.UpdateInventorylog(modal);
|
||
|
||
return ToResponse(response);
|
||
}
|
||
|
||
/// <summary>
|
||
/// 删除库存日志
|
||
/// </summary>
|
||
/// <returns></returns>
|
||
[HttpPost("delete/{ids}")]
|
||
[ActionPermissionFilter(Permission = "inventorylog:delete")]
|
||
[Log(Title = "库存日志", BusinessType = BusinessType.DELETE)]
|
||
public IActionResult DeleteInventorylog([FromRoute]string ids)
|
||
{
|
||
var idArr = Tools.SplitAndConvert<string>(ids);
|
||
|
||
return ToResponse(_InventorylogService.Delete(idArr));
|
||
}
|
||
|
||
/// <summary>
|
||
/// 导出库存日志
|
||
/// </summary>
|
||
/// <returns></returns>
|
||
[HttpGet("export")]
|
||
[AllowAnonymous]
|
||
[Log(Title = "库存日志", BusinessType = BusinessType.EXPORT)]
|
||
public IActionResult AddInventorylog([FromQuery] InventorylogExportDto parm)
|
||
{
|
||
var list = _InventorylogService.ExportInventorylog(parm);
|
||
// 添加调试日志
|
||
Console.WriteLine($"导出的库存日志数量: {list.Count}");
|
||
var result = ExportExcelMini(list, "Inventorylog", "库存日志");
|
||
return ExportExcel(result.Item2, result.Item1);
|
||
}
|
||
|
||
}
|
||
} |