mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-22 06:03:20 +00:00
Small fixes
This commit is contained in:
parent
b2f13e935e
commit
e61b5e7690
@ -108,6 +108,7 @@ $('.select_date').datepicker({
|
||||
$(document).keydown(function (e) {
|
||||
if ($(e.target).is('input')) { return }
|
||||
if ($(e.target).is('textarea')) { return }
|
||||
if ($(e.target).is('select')) { return }
|
||||
if (e.keyCode == 83) {
|
||||
$("#search").focus();
|
||||
return false;
|
||||
|
@ -672,7 +672,7 @@ def check_accounts():
|
||||
try:
|
||||
cust = Customer.objects.filter(user__id=r['id_utilisateur']).first()
|
||||
if int(cust.amount * 100) != r['montant_compte']:
|
||||
print("Adding %s to %s's account" % (float(cust.amount) - (r['montant_compte']/100)))
|
||||
print("Adding %s to %s's account" % (float(cust.amount) - (r['montant_compte']/100), cust.user))
|
||||
new = Selling(
|
||||
label="Ajustement migration base de donnée",
|
||||
counter=mde,
|
||||
|
Loading…
Reference in New Issue
Block a user