You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.0 KiB
35 lines
1.0 KiB
using System.ComponentModel.DataAnnotations;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.Extensions.Logging;
|
|
using WTA.Application.Identity.Entities.SystemManagement;
|
|
using WTA.Shared.Attributes;
|
|
using WTA.Shared.Controllers;
|
|
using WTA.Shared.Data;
|
|
|
|
namespace WTA.Application.Identity.Controllers;
|
|
|
|
public class JIT_DN_DETAILController : GenericController<JIT_DN_DETAIL, JIT_DN_DETAIL, JIT_DN_DETAIL, JIT_DN_DETAIL, JIT_DN_DETAIL, JIT_DN_DETAIL>
|
|
{
|
|
public JIT_DN_DETAILController(ILogger<JIT_DN_DETAIL> logger, IRepository<JIT_DN_DETAIL> repository) : base(logger, repository)
|
|
{
|
|
}
|
|
|
|
[NonAction]
|
|
public override IActionResult Import(IFormFile importexcelfile)
|
|
{
|
|
return base.Import(importexcelfile);
|
|
}
|
|
|
|
[NonAction]
|
|
public override IActionResult Create([FromBody] JIT_DN_DETAIL model)
|
|
{
|
|
return base.Create(model);
|
|
}
|
|
|
|
[HttpPost, Display(Name = "取消出库单"), Multiple]
|
|
public IActionResult? CancelOutbound()
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|