forked from brmlab/brmbar-github
disable slowdown in management for now
This commit is contained in:
parent
9afef5bce2
commit
54c687edf3
1 changed files with 4 additions and 0 deletions
|
@ -168,21 +168,25 @@ class ShopAdapter(QtCore.QObject):
|
||||||
|
|
||||||
@QtCore.Slot(result='QVariant')
|
@QtCore.Slot(result='QVariant')
|
||||||
def balance_cash(self):
|
def balance_cash(self):
|
||||||
|
return "N/A"
|
||||||
balance = shop.cash.balance_str()
|
balance = shop.cash.balance_str()
|
||||||
db.commit()
|
db.commit()
|
||||||
return balance
|
return balance
|
||||||
@QtCore.Slot(result='QVariant')
|
@QtCore.Slot(result='QVariant')
|
||||||
def balance_profit(self):
|
def balance_profit(self):
|
||||||
|
return "N/A"
|
||||||
balance = shop.profits.balance_str()
|
balance = shop.profits.balance_str()
|
||||||
db.commit()
|
db.commit()
|
||||||
return balance
|
return balance
|
||||||
@QtCore.Slot(result='QVariant')
|
@QtCore.Slot(result='QVariant')
|
||||||
def balance_inventory(self):
|
def balance_inventory(self):
|
||||||
|
return "N/A"
|
||||||
balance = shop.inventory_balance_str()
|
balance = shop.inventory_balance_str()
|
||||||
db.commit()
|
db.commit()
|
||||||
return balance
|
return balance
|
||||||
@QtCore.Slot(result='QVariant')
|
@QtCore.Slot(result='QVariant')
|
||||||
def balance_credit(self):
|
def balance_credit(self):
|
||||||
|
return "N/A"
|
||||||
balance = shop.credit_negbalance_str()
|
balance = shop.credit_negbalance_str()
|
||||||
db.commit()
|
db.commit()
|
||||||
return balance
|
return balance
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue