client-barcode: Fix constant reference
This commit is contained in:
parent
c70ec751b1
commit
3402393fe4
|
@ -17,7 +17,7 @@ class DepositCommand(Command):
|
|||
self._difference = amount
|
||||
|
||||
def run(self, user_name):
|
||||
net.deposit(self._difference, DEPOSIT_CASH, user_name)
|
||||
net.deposit(self._difference, net.DEPOSIT_CASH, user_name)
|
||||
|
||||
def label(self):
|
||||
return '%.2f Euro einzahlen' % self._difference
|
||||
|
|
Loading…
Reference in New Issue