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.
132 lines
4.8 KiB
C#
132 lines
4.8 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Web.Mvc;
|
|
using DSWeb.MvcShipping.DAL.MsAnnounce;
|
|
using DSWeb.Areas.MvcShipping.DAL.MsOpCtnFeeModelDAL;
|
|
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 MsOpCtnFeeModelController : 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 = MsOpCtnFeeModelDAL.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 = MsOpCtnFeeModelDAL.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 = MsOpCtnFeeModelDAL.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 = MsOpCtnFeeModelDAL.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 = MsOpCtnFeeModelDAL.Save(head, WMSFeeDetailsList, out outMsg, out gid);
|
|
jsonRespose.Message = outMsg;
|
|
var respHead = MsOpCtnFeeModelDAL.GetDataList(" GID='" + gid + "'");
|
|
if (respHead!=null&&respHead.Count>0)
|
|
{
|
|
jsonRespose.Data = respHead[0];
|
|
}
|
|
|
|
return new ContentResult() { Content = JsonConvert.Serialize(jsonRespose) };
|
|
}
|
|
|
|
public ContentResult Delete(string data)
|
|
{
|
|
var head = JsonConvert.Deserialize<MsOpCtnFeeModel>(data.Replace("[", "").Replace("]", ""));
|
|
|
|
List<MsOpCtnFeeModel> list = new List<MsOpCtnFeeModel>();
|
|
list.Add(head);
|
|
var jsonRespose = new JsonResponse();
|
|
|
|
bool rst = MsOpCtnFeeModelDAL.Delete(list);
|
|
string outMsg = rst ? "删除成功" : "删除失败";
|
|
jsonRespose.Success = rst;
|
|
jsonRespose.Message = outMsg;
|
|
|
|
return new ContentResult() { Content = JsonConvert.Serialize(jsonRespose) };
|
|
}
|
|
|
|
}
|
|
} |