...
|
...
|
@@ -428,6 +428,7 @@ func (ptr *CooperationStatisticsService) DividendsStatistics(queryOptions map[st |
|
|
"companyId": request.CompanyId,
|
|
|
"orgId": request.OrgId,
|
|
|
"userBaseId": request.UserBaseId,
|
|
|
"cooperationContractNumbers": contractNumbers,
|
|
|
}, allDividends); err != nil {
|
|
|
return nil, err
|
|
|
}
|
...
|
...
|
@@ -444,6 +445,7 @@ func (ptr *CooperationStatisticsService) DividendsStatistics(queryOptions map[st |
|
|
"userBaseId": request.UserBaseId,
|
|
|
"paymentBeginTime": queryOptions["beginTime"],
|
|
|
"paymentEndTime": queryOptions["endTime"],
|
|
|
"cooperationContractNumbers": contractNumbers,
|
|
|
}, annualDividends); err != nil {
|
|
|
return nil, err
|
|
|
}
|
...
|
...
|
@@ -459,6 +461,7 @@ func (ptr *CooperationStatisticsService) DividendsStatistics(queryOptions map[st |
|
|
"userBaseId": request.UserBaseId,
|
|
|
"paymentBeginTime": queryOptions["beginTime"],
|
|
|
"paymentEndTime": queryOptions["endTime"],
|
|
|
"cooperationContractNumbers": contractNumbers,
|
|
|
}, quarterDividends); err != nil {
|
|
|
return nil, err
|
|
|
}
|
...
|
...
|
|