入库单和出库单

This commit is contained in:
2025-11-05 18:19:40 +08:00
parent cd93b84014
commit dfde366b8e
12 changed files with 243 additions and 16 deletions

View File

@@ -1,6 +1,7 @@
using MyCode.Project.Infrastructure.JackYun;
using System.Collections.Generic;
using System;
using MyCode.Project.Domain.Message.Response.JackYun;
namespace MyCode.Project.Services
{
@@ -38,5 +39,13 @@ namespace MyCode.Project.Services
/// <returns></returns>
/// <exception cref="BaseException"></exception>
List<BusiOrderGoodsDocInResponse> GetPurchaseInboundData(DateTime now);
/// <summary>
/// 获取吉客云采购出库单
/// </summary>
/// <param name="now">截止日期</param>
/// <returns></returns>
/// <exception cref="BaseException"></exception>
List<ErpStorageGoodsDocOutV2ResponseBizData> GetStorageGoodsDocOutV2(DateTime now);
}
}