...
|
...
|
@@ -9,67 +9,36 @@ import ( |
|
|
"gitlab.fjmaimaimai.com/allied-creation/allied-creation-gateway/pkg/log"
|
|
|
)
|
|
|
|
|
|
// DividendsEstimateIncentive 确定预算分红激励
|
|
|
func (gateway HttplibAlliedCreationCooperation) DividendsEstimateIncentive(param ReqDividendsEstimateIncentive) (*DataDividendsEstimateIncentive, error) {
|
|
|
url := gateway.baseUrL + "/dividends-estimates/estimate-dividends-incentives"
|
|
|
method := "POST"
|
|
|
req := gateway.CreateRequest(url, method)
|
|
|
log.Logger.Debug("向业务模块请求数据:确定预算分红激励。", map[string]interface{}{
|
|
|
"api": method + ":" + url,
|
|
|
"param": param,
|
|
|
})
|
|
|
req, err := req.JSONBody(param)
|
|
|
if err != nil {
|
|
|
return nil, fmt.Errorf("请求确定预算分红激励失败:%w", err)
|
|
|
}
|
|
|
|
|
|
byteResult, err := req.Bytes()
|
|
|
if err != nil {
|
|
|
return nil, fmt.Errorf("获取确定预算分红激励失败:%w", err)
|
|
|
}
|
|
|
log.Logger.Debug("获取业务模块请求数据:确定预算分红激励。", map[string]interface{}{
|
|
|
"result": string(byteResult),
|
|
|
})
|
|
|
var result service_gateway.GatewayResponse
|
|
|
err = json.Unmarshal(byteResult, &result)
|
|
|
if err != nil {
|
|
|
return nil, fmt.Errorf("解析确定预算分红激励:%w", err)
|
|
|
}
|
|
|
var data DataDividendsEstimateIncentive
|
|
|
err = gateway.GetResponseData(result, &data)
|
|
|
return &data, err
|
|
|
}
|
|
|
|
|
|
// DividendsEstimateUpdate 更新分红预算
|
|
|
func (gateway HttplibAlliedCreationCooperation) DividendsEstimateUpdate(param ReqDividendsEstimateUpdate) (*DataDividendsEstimateUpdate, error) {
|
|
|
url := gateway.baseUrL + "/dividends-estimates/{dividendsEstimateId}"
|
|
|
method := "PUT"
|
|
|
req := gateway.CreateRequest(url, method)
|
|
|
log.Logger.Debug("向业务模块请求数据:更新分红预算。", map[string]interface{}{
|
|
|
"api": method + ":" + url,
|
|
|
"param": param,
|
|
|
})
|
|
|
req, err := req.JSONBody(param)
|
|
|
if err != nil {
|
|
|
return nil, fmt.Errorf("请求更新分红预算失败:%w", err)
|
|
|
}
|
|
|
// func (gateway HttplibAlliedCreationCooperation) DividendsEstimateUpdate(param ReqDividendsEstimateUpdate) (*DataDividendsEstimateUpdate, error) {
|
|
|
// url := gateway.baseUrL + "/dividends-estimates/{dividendsEstimateId}"
|
|
|
// method := "PUT"
|
|
|
// req := gateway.CreateRequest(url, method)
|
|
|
// log.Logger.Debug("向业务模块请求数据:更新分红预算。", map[string]interface{}{
|
|
|
// "api": method + ":" + url,
|
|
|
// "param": param,
|
|
|
// })
|
|
|
// req, err := req.JSONBody(param)
|
|
|
// if err != nil {
|
|
|
// return nil, fmt.Errorf("请求更新分红预算失败:%w", err)
|
|
|
// }
|
|
|
|
|
|
byteResult, err := req.Bytes()
|
|
|
if err != nil {
|
|
|
return nil, fmt.Errorf("获取更新分红预算失败:%w", err)
|
|
|
}
|
|
|
log.Logger.Debug("获取业务模块请求数据:更新分红预算。", map[string]interface{}{
|
|
|
"result": string(byteResult),
|
|
|
})
|
|
|
var result service_gateway.GatewayResponse
|
|
|
err = json.Unmarshal(byteResult, &result)
|
|
|
if err != nil {
|
|
|
return nil, fmt.Errorf("解析更新分红预算:%w", err)
|
|
|
}
|
|
|
var data DataDividendsEstimateUpdate
|
|
|
err = gateway.GetResponseData(result, &data)
|
|
|
return &data, err
|
|
|
}
|
|
|
// byteResult, err := req.Bytes()
|
|
|
// if err != nil {
|
|
|
// return nil, fmt.Errorf("获取更新分红预算失败:%w", err)
|
|
|
// }
|
|
|
// log.Logger.Debug("获取业务模块请求数据:更新分红预算。", map[string]interface{}{
|
|
|
// "result": string(byteResult),
|
|
|
// })
|
|
|
// var result service_gateway.GatewayResponse
|
|
|
// err = json.Unmarshal(byteResult, &result)
|
|
|
// if err != nil {
|
|
|
// return nil, fmt.Errorf("解析更新分红预算:%w", err)
|
|
|
// }
|
|
|
// var data DataDividendsEstimateUpdate
|
|
|
// err = gateway.GetResponseData(result, &data)
|
|
|
// return &data, err
|
|
|
// }
|
|
|
|
|
|
// Dividends-estimatesSearch-dividends-incentives 查询业绩分红
|
|
|
func (gateway HttplibAlliedCreationCooperation) DividendsEstimateSearchDividends(param ReqDividendsEstimateSearchDividend) (*DataDividendsEstimateSearchDividend, error) {
|
...
|
...
|
@@ -381,3 +350,34 @@ func (gateway HttplibAlliedCreationCooperation) DividendsEstimatesListMoney(para |
|
|
err = gateway.GetResponseData(result, &data)
|
|
|
return &data, err
|
|
|
}
|
|
|
|
|
|
// DividendsEstimatesBatchCancel 取消分红预算
|
|
|
func (gateway HttplibAlliedCreationCooperation) DividendsEstimatesBatchCancel(param ReqDividendsEstimateBatchCancel) (*DataDividendsEstimateBatchCancel, error) {
|
|
|
url := gateway.baseUrL + "/dividends-estimates/batch-cancel"
|
|
|
method := "POST"
|
|
|
req := gateway.CreateRequest(url, method)
|
|
|
log.Logger.Debug("向业务模块请求数据:批量取消分红预算。", map[string]interface{}{
|
|
|
"api": method + ":" + url,
|
|
|
"param": param,
|
|
|
})
|
|
|
req, err := req.JSONBody(param)
|
|
|
if err != nil {
|
|
|
return nil, fmt.Errorf("请求批量取消分红预算失败:%w", err)
|
|
|
}
|
|
|
|
|
|
byteResult, err := req.Bytes()
|
|
|
if err != nil {
|
|
|
return nil, fmt.Errorf("获取批量取消分红预算失败:%w", err)
|
|
|
}
|
|
|
log.Logger.Debug("获取业务模块请求数据:批量取消分红预算。", map[string]interface{}{
|
|
|
"result": string(byteResult),
|
|
|
})
|
|
|
var result service_gateway.GatewayResponse
|
|
|
err = json.Unmarshal(byteResult, &result)
|
|
|
if err != nil {
|
|
|
return nil, fmt.Errorf("解析批量取消分红预算:%w", err)
|
|
|
}
|
|
|
var data DataDividendsEstimateBatchCancel
|
|
|
err = gateway.GetResponseData(result, &data)
|
|
|
return &data, err
|
|
|
} |
...
|
...
|
|