python脚本实现应付单提交时实时推送给接口原创
12人赞赏了该文章
1,343次浏览
编辑于2021年04月22日 08:38:46
from clr import AddReference
AddReference('System.Net.Http')
AddReference('Newtonsoft.Json')
from System.Net.Http import HttpClient, StringContent
from Newtonsoft.Json import JsonConvert
def BarItemClick(e):
if e.BarItemKey=='tbSplitSubmit':
bill_no = this.Model.GetValue('FBillNo')
data = {
'bill_no': bill_no
}
json_obj_string = JsonConvert.SerializeObject(data)
http_content = StringContent(json_obj_string)
client = HttpClient()
url = 'http://127.0.0.1:9000/PushAPPayable'
response = client.PostAsync(url, http_content).Result.Content.ReadAsStringAsync().Result.ToString()
this.View.ShowMessage(response)
赞 12
12人点赞
还没有人点赞,快来当第一个点赞的人吧!
打赏
0人打赏
还没有人打赏,快来当第一个打赏的人吧!