|
@@ -33,30 +33,30 @@ func (s *operationHisService) Save(userId int64, tenantId int, handleType, handl
|
|
|
}
|
|
|
|
|
|
func (s *operationHisService) List(tenantId int, handleContent, operationType, moduleType string, current,
|
|
|
- size int) ([]model.OperationHisDetail, *common.Errors) {
|
|
|
+ size int) ([]model.OperationHisDetail, int64, *common.Errors) {
|
|
|
his := dao.OperationHistory{
|
|
|
Object: handleContent,
|
|
|
}
|
|
|
if operationType != "" {
|
|
|
operation, err := strconv.Atoi(operationType)
|
|
|
if err != nil {
|
|
|
- return nil, common.FailResponse(err.Error(), nil)
|
|
|
+ return nil, 0, common.FailResponse(err.Error(), nil)
|
|
|
}
|
|
|
his.OperationType = operation
|
|
|
}
|
|
|
if moduleType != "" {
|
|
|
module, err := strconv.Atoi(moduleType)
|
|
|
if err != nil {
|
|
|
- return nil, common.FailResponse(err.Error(), nil)
|
|
|
+ return nil, 0, common.FailResponse(err.Error(), nil)
|
|
|
}
|
|
|
his.ModuleType = module
|
|
|
}
|
|
|
|
|
|
offset := (current - 1) * size
|
|
|
limit := size
|
|
|
- list, err := his.GetHistories(offset, limit)
|
|
|
+ list, counts, err := his.GetHistories(offset, limit)
|
|
|
if err != nil {
|
|
|
- return nil, common.FailResponse(err.Error(), nil)
|
|
|
+ return nil, 0, common.FailResponse(err.Error(), nil)
|
|
|
}
|
|
|
var details []model.OperationHisDetail
|
|
|
for _, his := range list {
|
|
@@ -68,5 +68,5 @@ func (s *operationHisService) List(tenantId int, handleContent, operationType, m
|
|
|
detail.ModuleTypeName = DictService.GetModuleName(tenantId, his.ModuleType)
|
|
|
details = append(details, detail)
|
|
|
}
|
|
|
- return details, nil
|
|
|
+ return details, counts, nil
|
|
|
}
|