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.
51 lines
2.0 KiB
51 lines
2.0 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using QMAPP.BLL.Dict;
|
|
using QMAPP.MD.Entity;
|
|
|
|
namespace HTIS.BLL
|
|
{
|
|
public class DictMachineBll : 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.Basic.MachineInfoBLL machineInfoBLL = new QMAPP.FJC.BLL.Basic.MachineInfoBLL();
|
|
List<QMAPP.FJC.Entity.Basic.MachineInfo> list = new List<QMAPP.FJC.Entity.Basic.MachineInfo>();
|
|
|
|
//接收手持或车载前端传递的参数,
|
|
string userID = input.Params["userID"].GetString();
|
|
QMAPP.Entity.DataResult result = new QMAPP.Entity.DataResult();
|
|
//将用户注册到BaseBLL类中,该动作是必须动作
|
|
machineInfoBLL.RegistLoginUser(userID);
|
|
//string[] types = input.Params["workcellCode"].GetArray();
|
|
string types = input.Params["workcellCode"].GetString();
|
|
//获取类别
|
|
QMAPP.FJC.Entity.Basic.MachineInfo searchModel = new QMAPP.FJC.Entity.Basic.MachineInfo();
|
|
WorkCell workcellmodel = new WorkCell();
|
|
if (types != "")
|
|
{
|
|
workcellmodel.WORKCELL_CODE = types;
|
|
}
|
|
list = machineInfoBLL.GetMachineForOrderList(searchModel,workcellmodel);
|
|
list.Insert(0, new QMAPP.FJC.Entity.Basic.MachineInfo());
|
|
input.Returns = new Dictionary<string, NSC.ParameterStruct>();
|
|
input.Returns.Add("List", new NSC.ParameterStruct(list));
|
|
return input;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|