using Newtonsoft.Json.Linq;
|
using Pub_Class;
|
using System;
|
using System.Collections;
|
using System.Collections.Generic;
|
using System.Data;
|
using System.Data.SqlClient;
|
using System.Web.Http;
|
using WebAPI.Models;
|
|
namespace WebAPI.Controllers
|
{
|
//组托单Controller
|
public class Sc_GroupOrderBillController : ApiController
|
{
|
public DBUtility.ClsPub.Enum_BillStatus BillStatus;
|
|
private json objJsonResult = new json();
|
SQLHelper.ClsCN oCN = new SQLHelper.ClsCN();
|
DataSet ds;
|
string HBillType = "2601";
|
|
/// <summary>
|
/// 返回列表
|
/// 产线组托单列表
|
/// </summary>
|
/// <param name="sWhere">拼接的SQL</param>
|
/// <returns>object</returns>
|
[Route("GroupOrderBill/List")]
|
[HttpGet]
|
public object List(string sWhere,string user)
|
{
|
DataSet ds;
|
try
|
{
|
//判断是否有查询权限
|
//if (!DBUtility.ClsPub.Security_Log("Sc_GroupOrderBillList_Query", 1, false, user))
|
//{
|
// objJsonResult.code = "0";
|
// objJsonResult.count = 0;
|
// objJsonResult.Message = "无查询权限!";
|
// objJsonResult.data = null;
|
// return objJsonResult;
|
//}
|
|
SQLHelper.ClsCN oCN = new SQLHelper.ClsCN();
|
if (sWhere == null || sWhere.Equals(""))
|
{
|
ds = oCN.RunProcReturn("select * from h_v_GroupOrderBillList order by 制单时间 desc", "h_v_GroupOrderBillList");
|
}
|
else
|
{
|
string sql1 = "select * from h_v_GroupOrderBillList where 1 = 1 ";
|
string sql = sql1 + sWhere;
|
string sql2 = " order by 制单时间 desc";
|
sql += sql2;
|
ds = oCN.RunProcReturn(sql, "h_v_GroupOrderBillList");
|
}
|
|
//if (ds.Tables[0].Rows.Count != 0 || ds != null)
|
//{
|
objJsonResult.code = "1";
|
objJsonResult.count = 1;
|
objJsonResult.Message = "Sucess!";
|
objJsonResult.data = ds.Tables[0];
|
return objJsonResult;
|
//}
|
//else
|
//{
|
//objJsonResult.code = "0";
|
//objJsonResult.count = 0;
|
//objJsonResult.Message = "无数据";
|
//objJsonResult.data = null;
|
//return objJsonResult;
|
//}
|
|
}
|
catch (Exception e)
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "Exception!" + e.ToString();
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
}
|
|
|
//
|
}
|
}
|