|
|
@@ -35,7 +35,6 @@ import com.itextpdf.text.pdf.PdfPCell;
|
|
|
import com.itextpdf.text.pdf.PdfPRow;
|
|
|
import com.itextpdf.text.pdf.PdfPTable;
|
|
|
import com.itextpdf.text.pdf.PdfWriter;
|
|
|
-import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.cache.annotation.CacheEvict;
|
|
|
import org.springframework.cache.annotation.Cacheable;
|
|
|
@@ -1522,7 +1521,9 @@ public class ExpenseAccountServiceImpl extends BaseMybatisDao<ExpenseAccountMapp
|
|
|
sb.append("[").append(user.getNickname()).append("]未归集:").append(countAmount.stripTrailingZeros().toPlainString()).append("元,");
|
|
|
}
|
|
|
}
|
|
|
- orderList.add(sb.substring(0,sb.length()-1));
|
|
|
+ if (sb.length()>1){
|
|
|
+ orderList.add(sb.substring(0,sb.length()-1));
|
|
|
+ }
|
|
|
}
|
|
|
res.setStrList(orderList);
|
|
|
}
|