...
|
...
|
@@ -9,37 +9,6 @@ import ( |
|
|
"gitlab.fjmaimaimai.com/allied-creation/allied-creation-gateway/pkg/log"
|
|
|
)
|
|
|
|
|
|
// 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)
|
|
|
// }
|
|
|
|
|
|
// 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) {
|
|
|
url := gateway.baseUrL + "/dividends-estimates/search-dividends-incentives"
|
...
|
...
|
@@ -195,157 +164,64 @@ func (gateway HttplibAlliedCreationCooperation) DividendsEstimatesEstimateMoneys |
|
|
return &data, err
|
|
|
}
|
|
|
|
|
|
// DividendsEstimateListDividend 返回业绩激励分红详情
|
|
|
func (gateway HttplibAlliedCreationCooperation) DividendsEstimateListDividend(param ReqDividendsEstimateListDividend) (*DataDividendsEstimateListDividend, error) {
|
|
|
url := gateway.baseUrL + "/dividends-estimates/list-dividends-incentives"
|
|
|
method := "GET"
|
|
|
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 DataDividendsEstimateListDividend
|
|
|
err = gateway.GetResponseData(result, &data)
|
|
|
return &data, err
|
|
|
}
|
|
|
|
|
|
// DividendsEstimateList 返回分红预算列表
|
|
|
func (gateway HttplibAlliedCreationCooperation) DividendsEstimateList(param ReqDividendsEstimateList) (*DataDividendsEstimateList, error) {
|
|
|
url := gateway.baseUrL + "/dividends-estimates"
|
|
|
method := "GET"
|
|
|
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 DataDividendsEstimateList
|
|
|
err = gateway.GetResponseData(result, &data)
|
|
|
return &data, err
|
|
|
}
|
|
|
|
|
|
//DividendsEstimateGet 返回分红预算详情
|
|
|
func (gateway HttplibAlliedCreationCooperation) DividendsEstimateGet(param ReqDividendsEstimateGet) (*DataDividendsEstimateGet, error) {
|
|
|
url := gateway.baseUrL + "/dividends-estimates/" + strconv.Itoa(param.DividendsEstimateId)
|
|
|
method := "GET"
|
|
|
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 DataDividendsEstimateGet
|
|
|
err = gateway.GetResponseData(result, &data)
|
|
|
return &data, err
|
|
|
}
|
|
|
|
|
|
// DividendsEstimatesListMoney 返回金额激励分红列表
|
|
|
func (gateway HttplibAlliedCreationCooperation) DividendsEstimatesListMoney(param ReqDividendsEstimatesListMoney) (*DataDividendsEstimatesListMoney, error) {
|
|
|
url := gateway.baseUrL + "/dividends-estimates/list-money-incentives"
|
|
|
method := "GET"
|
|
|
// 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{}{
|
|
|
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)
|
|
|
return nil, fmt.Errorf("请求批量取消分红预算失败:%w", err)
|
|
|
}
|
|
|
|
|
|
byteResult, err := req.Bytes()
|
|
|
if err != nil {
|
|
|
return nil, fmt.Errorf("获取返回金额激励分红列表失败:%w", err)
|
|
|
return nil, fmt.Errorf("获取批量取消分红预算失败:%w", err)
|
|
|
}
|
|
|
log.Logger.Debug("获取业务模块请求数据:返回金额激励分红列表。", map[string]interface{}{
|
|
|
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)
|
|
|
return nil, fmt.Errorf("解析批量取消分红预算:%w", err)
|
|
|
}
|
|
|
var data DataDividendsEstimatesListMoney
|
|
|
var data DataDividendsEstimateBatchCancel
|
|
|
err = gateway.GetResponseData(result, &data)
|
|
|
return &data, err
|
|
|
}
|
|
|
|
|
|
// DividendsEstimatesBatchCancel 批量取消分红预算
|
|
|
func (gateway HttplibAlliedCreationCooperation) DividendsEstimatesBatchCancel(param ReqDividendsEstimateBatchCancel) (*DataDividendsEstimateBatchCancel, error) {
|
|
|
url := gateway.baseUrL + "/dividends-estimates/batch-cancel"
|
|
|
// DividendsEstimatesEstimateMoneys 确定业绩分红激励
|
|
|
func (gateway HttplibAlliedCreationCooperation) DividendsEstimateDividendsIncentives(param ReqDividendsEstimateDividendsIncentives) (*DataDividendsEstimateDividendsIncentives, error) {
|
|
|
url := gateway.baseUrL + "/dividends-estimates/estimate-dividends-incentives"
|
|
|
method := "POST"
|
|
|
req := gateway.CreateRequest(url, method)
|
|
|
log.Logger.Debug("向业务模块请求数据:批量取消分红预算。", map[string]interface{}{
|
|
|
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)
|
|
|
return nil, fmt.Errorf("请求确定预算分红激励失败:%w", err)
|
|
|
}
|
|
|
|
|
|
byteResult, err := req.Bytes()
|
|
|
if err != nil {
|
|
|
return nil, fmt.Errorf("获取批量取消分红预算失败:%w", err)
|
|
|
return nil, fmt.Errorf("获取确定预算分红激励失败:%w", err)
|
|
|
}
|
|
|
log.Logger.Debug("获取业务模块请求数据:批量取消分红预算。", map[string]interface{}{
|
|
|
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)
|
|
|
return nil, fmt.Errorf("解析确定预算分红激励:%w", err)
|
|
|
}
|
|
|
var data DataDividendsEstimateBatchCancel
|
|
|
var data DataDividendsEstimateDividendsIncentives
|
|
|
err = gateway.GetResponseData(result, &data)
|
|
|
return &data, err
|
|
|
} |
...
|
...
|
|