23 lines
716 B
C#
23 lines
716 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using YLErp.Configuration;
|
|
using YLErp.Modules.EodModule.SettlementModule;
|
|
|
|
namespace YLErp.Modules.EodModule
|
|
{
|
|
[TestClass]
|
|
public class EodClientBalanceCalcBSTest
|
|
{
|
|
[TestMethod("客户买卖权结算")]
|
|
public void CalcTest()
|
|
{
|
|
var service = new EodClientBalanceCalcBS(OptUserInfo.UnitTestUser);
|
|
List<Client> clients = new List<Client>() { new Client() { id=131,Number= "SDX0010",Name= "山西分形供应链数据管理有限公司" } };
|
|
service.ClientBalanceByDay(DateTime.Parse("2021-11-15"), clients);
|
|
}
|
|
}
|
|
}
|