feat(领料): 添加原材料领料功能接口

实现原材料领料功能,包括:
1. 在IMmRecordInboundService接口添加TakeMaterial方法
2. 新增TakeMaterialRequestDto请求参数类
3. 在MmRecordInboundController添加领料API接口
4. 实现领料业务逻辑,包括工单校验和出库单生成
This commit is contained in:
2026-01-27 15:56:10 +08:00
parent 69da20ba42
commit a43550ab28
5 changed files with 123 additions and 3 deletions

View File

@@ -25,5 +25,12 @@ namespace DOAN.Service.BZFM.IBZFMService
ImportResultDto ImportRecordinbound(IFormFile formFile, string username);
public PagedInfo<MmRecordinboundExcelDto> SelectRecordinboundList(MmRecordInboundQueryDto recordinbound, PagerInfo pager);
/// <summary>
/// 领料接口
/// </summary>
/// <param name="parm"></param>
/// <returns></returns>
string TakeMaterial(TakeMaterialRequestDto parm);
}
}