Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
40f5911f
Commit
40f5911f
authored
10 years ago
by
Florian Henry
Browse files
Options
Downloads
Patches
Plain Diff
Fix: [ bug #1254 ] Error when using "Enter" on qty input box of a
product (on supplier order part)
parent
06451894
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ChangeLog
+1
-0
1 addition, 0 deletions
ChangeLog
htdocs/fourn/commande/fiche.php
+53
-11
53 additions, 11 deletions
htdocs/fourn/commande/fiche.php
with
54 additions
and
11 deletions
ChangeLog
+
1
−
0
View file @
40f5911f
...
...
@@ -22,6 +22,7 @@ Fix: Link element from element project pages
Fix: [ bug #1349 ] AJAX contact selector does not work fine in Project card
Fix: [ bug #1452 ] variable used but not defined
Fix: If multiprice level is used the VAT on addline is not correct
Fix: [ bug #1254 ] Error when using "Enter" on qty input box of a product (on supplier order part)
***** ChangeLog for 3.5.3 compared to 3.5.2 *****
Fix: Error on field accountancy code for export profile of invoices.
...
...
This diff is collapsed.
Click to expand it.
htdocs/fourn/commande/fiche.php
+
53
−
11
View file @
40f5911f
...
...
@@ -1731,6 +1731,30 @@ elseif (! empty($object->id))
// TODO Use the predefinedproductline_create.tpl.php file
// Add free products/services form
//Fix Bug [ bug #1254 ] Error when using "Enter" on qty input box of a product
//this Fix Will be obsolete in 3.6 because 3.6 get one form to do every things
if
(
!
empty
(
$conf
->
use_javascript_ajax
))
{
print
'<script type="text/javascript">
jQuery(document).ready(function() {
$("#qty").bind("keypress", {}, keypressInBox);
$("#remise_percent").bind("keypress", {}, keypressInBox);
$("#pu").bind("keypress", {}, keypressInBox);
});
function keypressInBox(e) {
var code = (e.keyCode ? e.keyCode : e.which);
if (code == 13) { //Enter keycode
e.preventDefault();
$(\'#addFreeProductButton\').click();
}
};
</script>'
;
}
$var
=
true
;
print
'<tr '
.
$bc
[
$var
]
.
'>'
;
print
'<td>'
;
...
...
@@ -1755,22 +1779,40 @@ elseif (! empty($object->id))
print
'<td align="center">'
;
print
$form
->
load_tva
(
'tva_tx'
,(
GETPOST
(
'tva_tx'
)
?
GETPOST
(
'tva_tx'
)
:-
1
),
$object
->
thirdparty
,
$mysoc
);
print
'</td>'
;
print
'<td align="right"><input type="text" name="pu" size="5" value="'
.
GETPOST
(
'pu'
)
.
'"></td>'
;
print
'<td align="right"><input type="text" name="qty" value="'
.
(
GETPOST
(
'qty'
)
?
GETPOST
(
'qty'
)
:
'1'
)
.
'" size="2"></td>'
;
print
'<td align="right" class="nowrap"><input type="text" name="remise_percent" size="1" value="'
.
(
GETPOST
(
'remise_percent'
)
?
GETPOST
(
'remise_percent'
)
:
$object
->
thirdparty
->
remise_percent
)
.
'"><span class="hideonsmartphone">%</span></td>'
;
print
'<td align="center" colspan="4"><input type="submit" class="button" value="'
.
$langs
->
trans
(
'Add'
)
.
'" name="addline_libre"></td>'
;
print
'<td align="right"><input type="text"
id="pu"
name="pu" size="5" value="'
.
GETPOST
(
'pu'
)
.
'"></td>'
;
print
'<td align="right"><input type="text"
id="qty"
name="qty" value="'
.
(
GETPOST
(
'qty'
)
?
GETPOST
(
'qty'
)
:
'1'
)
.
'" size="2"></td>'
;
print
'<td align="right" class="nowrap"><input type="text"
id="remise_percent"
name="remise_percent" size="1" value="'
.
(
GETPOST
(
'remise_percent'
)
?
GETPOST
(
'remise_percent'
)
:
$object
->
thirdparty
->
remise_percent
)
.
'"><span class="hideonsmartphone">%</span></td>'
;
print
'<td align="center" colspan="4"><input type="submit" class="button" value="'
.
$langs
->
trans
(
'Add'
)
.
'" name="addline_libre"
id="addFreeProductButton"
></td>'
;
print
'</tr>'
;
// Ajout de produits/services predefinis
if
(
!
empty
(
$conf
->
product
->
enabled
)
||
!
empty
(
$conf
->
service
->
enabled
))
{
print
'<script type="text/javascript">
jQuery(document).ready(function() {
jQuery(\'#idprodfournprice\').change(function() {
if (jQuery(\'#idprodfournprice\').val() > 0) jQuery(\'#np_desc\').focus();
});
});
</script>'
;
if
(
!
empty
(
$conf
->
use_javascript_ajax
))
{
print
'<script type="text/javascript">
jQuery(document).ready(function() {
jQuery(\'#idprodfournprice\').change(function() {
if (jQuery(\'#idprodfournprice\').val() > 0) jQuery(\'#np_desc\').focus();
});
//Fix Bug [ bug #1254 ] Error when using "Enter" on qty input box of a product
//this Fix Will be obsolete in 3.6 because 3.6 get one form to do every things
$("#qty_predef").bind("keypress", {}, keypressInBox);
$("#remise_percent_predef").bind("keypress", {}, keypressInBox);
});
function keypressInBox(e) {
var code = (e.keyCode ? e.keyCode : e.which);
if (code == 13) { //Enter keycode
e.preventDefault();
$(\'#addPredefinedProductButton\').click();
}
};
</script>'
;
}
print
'<tr class="liste_titre">'
;
print
'<td colspan="3">'
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment