Compare commits
3 Commits
Author | SHA1 | Date |
---|---|---|
|
877a9e10d3 | |
|
84ae733098 | |
|
cc5b1464a4 |
23
config.go
23
config.go
|
@ -31,7 +31,7 @@ type (
|
||||||
}
|
}
|
||||||
|
|
||||||
FormsData struct {
|
FormsData struct {
|
||||||
FormBase
|
formBase
|
||||||
FormComponentValues []FormComponentValues `json:"form_component_values"` // 审批表单数据
|
FormComponentValues []FormComponentValues `json:"form_component_values"` // 审批表单数据
|
||||||
Finance *Finance `json:"finance"` // 财务模块调用
|
Finance *Finance `json:"finance"` // 财务模块调用
|
||||||
}
|
}
|
||||||
|
@ -44,17 +44,18 @@ type (
|
||||||
}
|
}
|
||||||
|
|
||||||
Finance struct {
|
Finance struct {
|
||||||
CheckUserId string `json:"checkUserId"` //审核人
|
CheckUserId string `json:"checkUserId"` //审核人
|
||||||
Sync int64 `json:"sync"` //是否是异步,如果为异步,付款申请和业务申请是同时进行
|
Sync int64 `json:"sync"` //是否是异步,如果为异步,付款申请和业务申请是同时进行
|
||||||
Amount string `json:"amount"` //金额
|
Amount string `json:"amount"` //金额
|
||||||
GoodsInfo string `json:"goodsInfo"` //商品信息
|
GoodsInfo string `json:"goodsInfo"` //商品信息
|
||||||
PaymentAccount string `json:"payment_account"` //付款方账户
|
PaymentAccount string `json:"paymentAccount"` //付款方账户
|
||||||
TaxAmount string `json:"tax_amount"` //税率
|
TaxAmount string `json:"taxAmount"` //税率
|
||||||
CallbackUrl string `json:"callback_url"` //回调地址
|
CallbackUrl string `json:"callbackUrl"` //回调地址
|
||||||
Remark string `json:"remark"` //备注
|
Remark string `json:"remark"`
|
||||||
|
SystemName string `json:"systemName"` //业务系统名称
|
||||||
|
SubjectName string `json:"subjectName"` //户名
|
||||||
BankInfo BankInfo `json:"bankInfo"`
|
BankInfo BankInfo `json:"bankInfo"`
|
||||||
}
|
}
|
||||||
|
|
||||||
BankInfo struct {
|
BankInfo struct {
|
||||||
ResellerName string `json:"resellerName"` //供应商名称
|
ResellerName string `json:"resellerName"` //供应商名称
|
||||||
BankName string `json:"bankName"` //银行名称
|
BankName string `json:"bankName"` //银行名称
|
||||||
|
@ -64,7 +65,7 @@ type (
|
||||||
}
|
}
|
||||||
|
|
||||||
// 创建OA基础数据
|
// 创建OA基础数据
|
||||||
FormBase struct {
|
formBase struct {
|
||||||
OutTradeNo string `json:"out_trade_no"` // 流水号
|
OutTradeNo string `json:"out_trade_no"` // 流水号
|
||||||
OriginatorUserId string `json:"originator_user_id"` // 钉钉申请人id
|
OriginatorUserId string `json:"originator_user_id"` // 钉钉申请人id
|
||||||
}
|
}
|
||||||
|
|
6
msg.go
6
msg.go
|
@ -31,8 +31,10 @@ func NewMessageCenter(host, clientKey, clientSecret, serverIndex, tempIndex stri
|
||||||
|
|
||||||
// OACreate 发起OA审批
|
// OACreate 发起OA审批
|
||||||
func (m *MessageCenter) OACreate(dTalkUserId, treadNo string, formModel *FormsData) (data OAResponse, err error) {
|
func (m *MessageCenter) OACreate(dTalkUserId, treadNo string, formModel *FormsData) (data OAResponse, err error) {
|
||||||
formModel.FormBase.OutTradeNo = treadNo
|
formModel.FormBase = FormBase{
|
||||||
formModel.FormBase.OriginatorUserId = dTalkUserId
|
OutTradeNo: treadNo,
|
||||||
|
OriginatorUserId: dTalkUserId,
|
||||||
|
}
|
||||||
err = m.post(oaCreat, m.parseOACreateParam(formModel), &data)
|
err = m.post(oaCreat, m.parseOACreateParam(formModel), &data)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return
|
return
|
||||||
|
|
|
@ -10,7 +10,8 @@ import (
|
||||||
const (
|
const (
|
||||||
ClientKey = "ymt"
|
ClientKey = "ymt"
|
||||||
ClientSecret = "ymt"
|
ClientSecret = "ymt"
|
||||||
serverHost = "http://127.0.0.1:8001"
|
serverHost = "http://120.55.12.245:8200"
|
||||||
|
local = "http://127.0.0.1:8001"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestSms(t *testing.T) {
|
func TestSms(t *testing.T) {
|
||||||
|
@ -25,7 +26,7 @@ func TestSms(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestOaCreate(t *testing.T) {
|
func TestOaCreate(t *testing.T) {
|
||||||
msg, err := l_msg_api.NewMessageCenter(serverHost, ClientKey, ClientSecret, "sw_oa", "sw_oa_purchase")
|
msg, err := l_msg_api.NewMessageCenter(local, ClientKey, ClientSecret, "sw_oa", "sw_oa_purchase")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
@ -37,7 +38,7 @@ func TestOaCreate(t *testing.T) {
|
||||||
{Name: "采购总金额", Value: "11.22"},
|
{Name: "采购总金额", Value: "11.22"},
|
||||||
{Name: "预计到货时间", Value: "2025-03-21"},
|
{Name: "预计到货时间", Value: "2025-03-21"},
|
||||||
}
|
}
|
||||||
res, err := msg.OACreate("17101201090101570", "123456789123bgff", &l_msg_api.FormsData{
|
res, err := msg.OACreate("17101201090101570", "cxvxvxcgfgfvxvxv", &l_msg_api.FormsData{
|
||||||
FormComponentValues: form,
|
FormComponentValues: form,
|
||||||
Finance: &l_msg_api.Finance{
|
Finance: &l_msg_api.Finance{
|
||||||
Amount: "11.22",
|
Amount: "11.22",
|
||||||
|
@ -48,6 +49,8 @@ func TestOaCreate(t *testing.T) {
|
||||||
CallbackUrl: "www.baidu.com",
|
CallbackUrl: "www.baidu.com",
|
||||||
Remark: "测试备注",
|
Remark: "测试备注",
|
||||||
Sync: 1,
|
Sync: 1,
|
||||||
|
SystemName: "货易通",
|
||||||
|
SubjectName: "成都蓝色兄弟网络科技有限公司(0802)",
|
||||||
BankInfo: l_msg_api.BankInfo{
|
BankInfo: l_msg_api.BankInfo{
|
||||||
BankName: "中国银行",
|
BankName: "中国银行",
|
||||||
BankAccount: "43243243434",
|
BankAccount: "43243243434",
|
||||||
|
|
Loading…
Reference in New Issue