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