Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
AE UTBM
Sith
Commits
e61b5e76
Commit
e61b5e76
authored
Aug 29, 2016
by
Skia
🤘
Browse files
Small fixes
parent
b2f13e93
Pipeline
#146
failed with stage
in 2 minutes and 5 seconds
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
core/templates/core/base.jinja
View file @
e61b5e76
...
...
@@ -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
;
...
...
migrate.py
View file @
e61b5e76
...
...
@@ -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
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment