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

43 lines
1.1 KiB

using NFine.Application.WMS;
using System;
using System.Collections.Generic;
using System.Data;
using System.IO;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using NFine.Code;
using System.Data.SqlClient;
using NFine.Data.Extensions;
using System.Data.OleDb;
using System.Configuration;
using ICS.Application.Entity;
namespace NFine.Web.Areas.WMS.Controllers
{
public class ICSToSAPController : ControllerBase
{
ICSToSAPApp App = new ICSToSAPApp();
// GET: WMS/ICSMTDOC
/// <summary>
/// 销售出库单过账SAP
/// </summary>
/// <param name="keyValue"></param>
/// <returns></returns>
[HttpPost]
[HandlerAjaxOnly]
public ActionResult DisPatchToSAP(string DisPatchCodeList,string WorkPoint)
{
string msg = App.DisPatchToSAP(DisPatchCodeList, WorkPoint);
if (!string.IsNullOrEmpty(msg))
{
return Error(msg);
}
else
{
return Success("过账成功!");
}
}
}
}