WebAPI发送消息并关联单据示例
void Main(string[] args)
{
K3CloudApiClient client = new K3CloudApiClient("http://localhost/k3cloud/");
var loginResult = client.ValidateLogin("514fb555db9a8b", "demo", "888888", 2052);
var resultType = JObject.Parse(loginResult)["LoginResultType"].Value<int>();
if (resultType == 1)
{
//FType:0-流程消息, 1-普通消息
string json = "{\"Model\":[{\"FTitle\":\"我是测试标题\",\"FContent\":\"我是测试内容\",\"FReceivers\":\"yh\",\"FType\":\"1\",\"FobjectTypeId\":\"PUR_PurchaseOrder\",\"FkeyValue\":\"100008\"}]}";
var result = client.SendMsg(json);
Console.Write(result);
}
}
FobjectTypeId: 单据标识
FkeyValue:单据内码
WebAPI发送消息并关联单据示例
void Main(string[] args) { K3CloudApiClient client = new K3CloudApiClient("http://localhost/k3c...
点击下载文档
本文2024-09-23 03:45:11发表“云星空知识”栏目。
本文链接:https://wenku.my7c.com/article/kingdee-k3cloud-160878.html
您需要登录后才可以发表评论, 登录登录 或者 注册
最新文档
热门文章