添加库存管理,入库、出库,收款、回款接口

This commit is contained in:
橙子
2023-01-08 21:52:18 +08:00
parent 8077450be0
commit 27ca377762
28 changed files with 1285 additions and 10 deletions

View File

@@ -79,5 +79,25 @@ namespace Yi.Framework.ApiMicroservice.Controllers.ERP
await _purchaseService.DeleteAsync(ids);
return Result.Success();
}
/// <summary>
/// 收获
/// </summary>
/// <returns></returns>
[HttpPost]
public async Task<Result> Receipt(ReceiptInput input)
{
throw new NotImplementedException();
}
/// <summary>
/// 回款?????甲方主动给乙方钱,乙方给货物。应该不叫回款。。。。想想叫啥优雅的名字
/// </summary>
/// <returns></returns>
[HttpPost]
public async Task<Result> Collection(CollectionInput input)
{
throw new NotImplementedException();
}
}
}