using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using BO.BO.BaseInfo;
using BWP.WinFormControl;
using Forks.EnterpriseServices.DomainObjects2.DQuery;
using Forks.JsonRpc.Client;
using Newtonsoft.Json;
namespace BO.Utils.BillRpc
{
public class CustomerRpc
{
///
/// 获取客户档案 在线则在线查询 同时更新本地数据库 ,不在线则从本地数据查
///
/// 查询用的
/// 是否更新本地数据库,如果更新则尽量减少使用该方法的次数, 因为客户会有很多
///
public static List SyncList(string input="", bool updateLocalDb=true)
{
if (LoginRpcUtil.TestConnection(100))
{
//在线
var json = RpcFacade.Call("/MainSystem/B3ClientService/Rpcs/BillRpc/BaseInfoRpc/SyncCustomer",input);
var list = JsonConvert.DeserializeObject>(json);
if (updateLocalDb)
{
using (var session = LocalDmoSession.New())
{
var sql1 = @"truncate table [Customer];";
session.ExecuteSqlNonQuery(sql1);
foreach (Customer dmo in list)
{
session.Insert(dmo);
}
session.Commit();
}
}
return list;
}
var dmoquery = new DmoQuery(typeof(Customer));
if (!string.IsNullOrWhiteSpace(input))
{
dmoquery.Where.Conditions.Add(DQCondition.Or(DQCondition.Like("Name", input), DQCondition.Like("Spell", input)));
}
using (var session = LocalDmoSession.New())
{
return session.ExecuteList(dmoquery).Cast().ToList();
}
}
public static List SyncListForDropDown(string input = "", bool updateLocalDb = true)
{
var list = SyncList(input, updateLocalDb);
return list.Select(x => new WordPair(x.Name, x.ID.ToString())).ToList();
}
}
}