ldj/WcfServiceErp/T_ERP_SALE_D.svc.cs

138 lines
4.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/// <summary>
///WCF service
///FOR TABLE t_erp_sale_d
///By wm
///on 05/10/2023
/// </summary>
using System.Collections.Generic;
using System.Data;
using DeiNiu.wms.Data.Model.Wcf ;
using DeiNiu.wms.Data.Model;
using System.Transactions;
using DeiNiu.Utils;
using System;
using DeiNiu.Wcf.erp.wcfData;
namespace DeiNiu.Wcf
{
// 注意: 使用“重构”菜单上的“重命名”命令可以同时更改代码、svc 和配置文件中的类名 。
public class T_ERP_SALE_D : IErp_sale_d
{
#region options
/*: basicService,
private static lErp_sale_d _lErp_sale_d ;
lErp_sale_d lErp_sale_dObj
{
get
{
if ( _lErp_sale_d == null || _lErp_sale_d.operId != getOperId())
{
_lErp_sale_d= new lErp_sale_d(getOperId());
}
return _lErp_sale_d;
}
}
*/
#endregion
public enumDbResult add(WcfErp_sale_d obj)
{
return obj.getDbObject().Add()>0? enumDbResult.: enumDbResult.;
}
public enumDbResult update(WcfErp_sale_d obj)
{
return obj.getDbObject().Update()>0? enumDbResult.: enumDbResult.;
}
public enumDbResult delete(WcfErp_sale_d obj)
{
return obj.getDbObject().Delete()>0? enumDbResult.: enumDbResult.;
}
#region options
/*
public List<Result> updateList(List<WcfErp_sale_d> objs)
{
List<Result> results = new List<Result>();
// using (TransactionScope scope = new TransactionScope())
{
foreach (WcfErp_sale_d obj in objs)
{
Result rs = new Result(obj.id, obj.getDbObject().Update());
results.Add(rs);
}
// scope.Complete();
}
return results;
}
public List<Result> addList(List<WcfErp_sale_d> objs)
{
List<Result> results = new List<Result>();
// using (TransactionScope scope = new TransactionScope())
{
foreach (WcfErp_sale_d obj in objs)
{
Result rs = new Result( obj.getDbObject().Add(),1);
results.Add(rs);
}
// scope.Complete();
}
return results;
}
public List<Result> deleteList(List<WcfErp_sale_d> objs)
{
List<Result> results = new List<Result>();
// using (TransactionScope scope = new TransactionScope())
{
foreach (WcfErp_sale_d obj in objs)
{
Result rs = new Result(obj.id, obj.getDbObject().Delete());
results.Add(rs);
}
// scope.Complete();
}
return results;
}*/
#endregion
public WcfErp_sale_d getObj(int Id)
{
WcfErp_sale_d wcfObj = new WcfErp_sale_d ();
Erp_sale_d dbObj = new Erp_sale_d(Id);
return wcfObj.getWcfObject(dbObj);
}
public WcfErp_sale_dList query(string condition, int pageno)
{
condition = string.IsNullOrEmpty(condition) ? "" : condition;
WcfErp_sale_dList objLst = new WcfErp_sale_dList();
List<WcfErp_sale_d> lst = new List<WcfErp_sale_d>();
Erp_sale_d dbObj = new Erp_sale_d();
dbObj.rownumStart =(Convert.ToInt16( pageno)-1)* WmsConstants.PAGER_SIZE;
dbObj.rownumEnd = dbObj.rownumStart + DeiNiu.Utils.WmsConstants.PAGER_SIZE;
DataSet ds = dbObj.Query(condition);
DataTable dt = ds.Tables[0];
foreach(DataRow dr in dt.Rows)
{
lst.Add(new WcfErp_sale_d(dr));
}
objLst.list =lst;
objLst.page = Convert.ToInt16(pageno);
objLst.pageSize = WmsConstants.PAGER_SIZE;
objLst.rows = Convert.ToInt32(ds.Tables[1].Rows[0][0].ToString());
objLst.pageCnt = objLst.rows / WmsConstants.PAGER_SIZE;
return objLst;
}
}
}