using System;
|
using System.Collections.Generic;
|
using System.Data;
|
using System.Linq;
|
using System.Web;
|
using System.Web.Http;
|
using WebAPI.Models;
|
|
namespace WebAPI.Controllers.SCGL.日计划管理
|
{
|
public class JIT_DayPlanPlatFormImportController : ApiController
|
{
|
private json objJsonResult = new json();
|
public DataSet ds = new DataSet();
|
public WebServer webserver = new WebServer();
|
SQLHelper.ClsCN oCN = new SQLHelper.ClsCN();
|
|
#region 生产日计划导入
|
[Route("JIT_DayPlanPlatFormImport/JIT_DayPlanPlatFormImport_DR")]
|
[HttpPost]
|
public object JIT_DayPlanPlatFormImport_DR(HttpPostedFileBase file)
|
{
|
try
|
{
|
if (file != null)
|
{
|
NpoiHelper np = new NpoiHelper();
|
DataSet ds = np.ReadExcel(@"C:\Users\Harold\Desktop\新建XLS工作表.xls", 1);
|
DataTable dt = ds.Tables[0];
|
}
|
|
objJsonResult.code = "1";
|
objJsonResult.count = 1;
|
objJsonResult.Message = "Sucess!";
|
objJsonResult.data = ds.Tables[0];
|
return objJsonResult;
|
}
|
catch (Exception e)
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "Exception!" + e.ToString();
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
}
|
#endregion
|
}
|
}
|