天津投入产出系统后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

53 lines
1.9 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HTIS.BLL
{
/// <summary>
/// 获取盘点统计表
/// </summary>
public class GetCountingSheetOfPlan : NSC.IService
{
/// <summary>
/// 盘点计划
/// </summary>
/// <param name="userAuth"></param>
/// <param name="input"></param>
/// <returns></returns>
public NSC.NetServiceStruct ServiceFunction(Common.Data.UserAuthority userAuth, NSC.NetServiceStruct input)
{
try
{
QMAPP.FJC.BLL.Stocktaking.StocktakingBLL bll = new QMAPP.FJC.BLL.Stocktaking.StocktakingBLL();
List<QMAPP.FJC.Entity.Stocktaking.Countingplaninfo> list = new List<QMAPP.FJC.Entity.Stocktaking.Countingplaninfo>();
//接收手持或车载前端传递的参数,
string userID = input.Params["userID"].GetString();
QMAPP.Entity.DataResult result = new QMAPP.Entity.DataResult();
//将用户注册到BaseBLL类中,该动作是必须动作
bll.RegistLoginUser(userID);
string type = input.Params["stockPlanState"].GetString();
//获取类别
QMAPP.FJC.Entity.Stocktaking.Countingplaninfo searchModel = new QMAPP.FJC.Entity.Stocktaking.Countingplaninfo();
if (!string.IsNullOrEmpty(type))
{
searchModel.PLAN_STATE = type;
}
list = bll.GetAllList(searchModel);
list.Insert(0, new QMAPP.FJC.Entity.Stocktaking.Countingplaninfo());
input.Returns = new Dictionary<string, NSC.ParameterStruct>();
input.Returns.Add("List", new NSC.ParameterStruct(list));
return input;
}
catch (Exception ex)
{
throw ex;
}
}
}
}