* [Update] 修改发送command日志

* [Update] 修复用户树显示资产数量不对的bug
This commit is contained in:
老广
2019-09-25 16:31:58 +08:00
committed by GitHub
parent 9f56ac8a21
commit 118fc8c42f
7 changed files with 19 additions and 8 deletions

View File

@@ -36,7 +36,7 @@ class UserNodeTreeMixin:
assets_amount = self.tree.assets_amount(node.key)
if assets_amount == 0 and node.key != Node.empty_key:
continue
node._assets_amount = assets_amount
node.assets_amount = assets_amount
data = ParserNode.parse_node_to_tree_node(node)
_queryset.append(data)
return _queryset