This is a collection of business interfaces for Yonyou ERP U9 interface customization
After compilation in Visual Studio, copy the DLL file to C:\yonyou\U9V60\Portal\ApplicationServer\Libs\CustDLL
var u9Webapi = new ServiceU9WEBAPIFactoryProxy();
u9Webapi.Action = "KK1000BP";
u9Webapi.JsonStr = JsonConvert.SerializeObject(listInDto);
var ret = u9Webapi.Do();
if (ret.IsSuccess)
{
LoadMainGrid();
ShowWindowStatus("产生退料单:"+ret.Message, true,false);
}
else
{
Model.ErrorMessage.Message = ret.Message;
}
目录 | 功能 | 官方接口 | 项目 | 说明 |
---|---|---|---|---|
UFIDA.U9.Cust.ItemMasterCreate | 新增料品 | UFIDA.U9.ISV.Item.BatchCreateItemByDTOSRV | 上海湃睿PLM | 支持批量 |
UFIDA.U9.Cust.ItemMasterUpdate | 修改料品 | UFIDA.U9.ISV.Item.BatchModifyItemByDTOSRV | 上海湃睿PLM | 支持批量 |
UFIDA.U9.Cust.BOMCreate | 新增BOM | UFIDA.U9.ISV.MFG.BOM.Proxy.CreateBOMSvProxy | 上海湃睿PLM | 支持批量 |
UFIDA.U9.Cust.BOMUpdate | 修改BOM | UFIDA.U9.ISV.MFG.BOM.Proxy.QueryBOMSvProxy | 上海湃睿PLM | 支持批量 |
This project is licensed under the Apache-2.0 license