You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

117 lines
4.3 KiB
C#

using System;
using System.Linq;
using System.Web.Mvc;
using DSWeb.MvcShipping.DAL.MsAnnounce;
using DSWeb.Areas.MvcShipping.DAL.MsOpCtnFeeModelDuiCunDAL;
using System.Collections.Generic;
using HcUtility.Comm;
using HcUtility.Core;
using System.Web.Script.Serialization;
using DSWeb.EntityDA;
using System.Data;
using System.Text;
using DSWeb.Areas.CommMng.Models;
using Microsoft.Practices.EnterpriseLibrary.Data;
using DSWeb.Areas.MvcShipping.DAL.Message;
using DSWeb.MvcShipping.DAL.MsSysBillNoSet;
using DSWeb.MvcShipping.DAL.MsCodeFtpSet;
using DSWeb.TruckMng.Comm.Cookie;
using DSWeb.TruckMng.Helper;
using DSWeb.TruckMng.Helper.Repository;
using DSWeb.Areas.MvcShipping.Models.MsOpCtnFeeModelModel;
namespace DSWeb.MvcShipping.Controllers
{
public class MsOpCtnFeeModelDuiCunController : Controller
{
//
// GET:
public ActionResult Index ( )
{
return View();
}
//
// GET: /
public ActionResult Edit ( )
{
return View();
}
public ActionResult InEdit ( )
{
return View();
}
public ContentResult GetDataList ( int start, int limit, string sort, string condition )
{
int count = 0;
var dataList = MsOpCtnFeeModelDuiCunDAL.GetDataList(condition);
var timeStamp = DateTime.Now.ToShortDateString();
var json = JsonConvert.Serialize(new { Success = true, Message = "查询成功", totalCount = count, data = dataList.ToList(), timeStamp = timeStamp });
return new ContentResult() { Content = json };
}
public ContentResult GetDataDetailsList ( string condition )
{
int count = 0;
var dataList = MsOpCtnFeeModelDuiCunDAL.GetDataDetailsList(condition);
var timeStamp = DateTime.Now.ToShortDateString();
var json = JsonConvert.Serialize(new { Success = true, Message = "查询成功", totalCount = count, data = dataList.ToList(), timeStamp = timeStamp });
return new ContentResult() { Content = json };
}
public ContentResult GetData ( string handle, string condition )
{
MsOpCtnFeeModel head = null;
var timeStamp = DateTime.Now.ToShortDateString();
if (handle == "edit")
{
var wmsfee = MsOpCtnFeeModelDuiCunDAL.GetDataList(condition);
if (wmsfee.Count>0)
{
head = wmsfee[0];
}
}
if (head == null)
{
head = new MsOpCtnFeeModel();
}
var json = JsonConvert.Serialize(
new { Success = true, Message = "查询成功", data = head, timeStamp = timeStamp });
return new ContentResult() { Content = json };
}
public ContentResult GetCtn ( string condition )
{
int count = 0;
var dataList = MsOpCtnFeeModelDuiCunDAL.GetCtn(condition);
var timeStamp = DateTime.Now.ToShortDateString();
var json = JsonConvert.Serialize(new { Success = true, Message = "查询成功", totalCount = count, data = dataList.ToList(), timeStamp = timeStamp });
return new ContentResult() { Content = json };
}
public ContentResult Save ( string opstatus, string data, string details, string detailsDel )
{
var head = JsonConvert.Deserialize<MsOpCtnFeeModel>(data.Replace("[","").Replace("]",""));
var WMSFeeDetailsList = JsonConvert.Deserialize<List<MsOpCtnFeeDetailsModel>>(details);
var WMSFeeDetailsDelList = JsonConvert.Deserialize<List<MsOpCtnFeeDetailsModel>>(detailsDel);
var jsonRespose = new JsonResponse();
string outMsg = "";
string gid = "";
jsonRespose.Success = MsOpCtnFeeModelDuiCunDAL.Save(head, WMSFeeDetailsList, out outMsg, out gid);
jsonRespose.Message = outMsg;
var respHead = MsOpCtnFeeModelDuiCunDAL.GetDataList(" GID='" + gid + "'");
if (respHead!=null&&respHead.Count>0)
{
jsonRespose.Data = respHead[0];
}
return new ContentResult() { Content = JsonConvert.Serialize(jsonRespose) };
}
}
}