using System;
|
using System.Collections.Generic;
|
using System.Data;
|
using System.Linq;
|
using System.Net;
|
using System.Net.Http;
|
using System.Web.Http;
|
using WebAPI.Models;
|
|
namespace WebAPI.Controllers.仓存管理.委外用料
|
{
|
public class WW_PPBomBillController : ApiController
|
{
|
public DBUtility.ClsPub.Enum_BillStatus BillStatus;//单据状态(新增,修改,浏览,更新单价,变更)
|
private json objJsonResult = new json();
|
public DataSet ds = new DataSet();
|
public SQLHelper.ClsCN oCn = new SQLHelper.ClsCN();
|
public DLL.ClsWW_PPBomBill BillNew0 = new DLL.ClsWW_PPBomBill();
|
public DLL.ClsWW_PPBomBill BillOld0 = new DLL.ClsWW_PPBomBill();
|
|
#region 委外用料列表
|
|
[Route("WW_PPBomBillController/Get_WW_PPBomBillList")]
|
[HttpGet]
|
public object Get_WW_PPBomBillList(string sWhere,string user)
|
{
|
try
|
{
|
//判断是否有查询权限
|
if (!DBUtility.ClsPub.Security_Log("WW_PPBomBill_Query", 1, false, user))
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "无查询权限!";
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
|
ds = WW_PPBomBillList(sWhere);
|
if (ds == null)
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "查询数据异常,请与管理员联系!";
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
else
|
{
|
objJsonResult.code = "1";
|
objJsonResult.count = 1;
|
objJsonResult.Message = "返回记录成功!";
|
objJsonResult.data = ds.Tables[0];
|
return objJsonResult;
|
}
|
}
|
catch (Exception ex)
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "查询数据异常,请与管理员联系!" + ex.ToString();
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
}
|
|
public static DataSet WW_PPBomBillList(string sWhere)
|
{
|
string sql1 = string.Format(@"select * from h_v_WW_PPBomBillList where 1=1 ");
|
if (sWhere == null || sWhere.Equals(""))
|
{
|
return new SQLHelper.ClsCN().RunProcReturn(sql1 + sWhere + "order by 日期 desc", "h_v_WW_PPBomBillList");
|
}
|
else
|
{
|
string sql = sql1 + sWhere + "order by 日期 desc";
|
return new SQLHelper.ClsCN().RunProcReturn(sql, "h_v_WW_PPBomBillList");
|
}
|
}
|
|
#endregion
|
}
|
}
|