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
1e28904d
Commit
1e28904d
authored
12 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
New: task #185 : Can input amount when correcting stock to recalculate
PMP.
parent
0ad8f318
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
+2
-1
2 additions, 1 deletion
ChangeLog
htdocs/product/stock/product.php
+9
-8
9 additions, 8 deletions
htdocs/product/stock/product.php
with
11 additions
and
9 deletions
ChangeLog
+
2
−
1
View file @
1e28904d
...
...
@@ -26,11 +26,12 @@ For users:
- New: Suggest a method to generate a backup file for user with no access
to mysqldump binary.
- New: Can correct stock of a warehouse from warehouse card.
- New: task #185 : Can input amount when correcting stock to recalculate PMP.
- New: [ task #454 ] Add "No category" into filters on category.
- New: Update language files (de, tr, pt).
- New: Auto check box on page to edit interface options of user.
- New: Add great britain provinces.
- New: Update libs/tools for DoliWamp.
- New: Update libs/tools
/logo
for DoliWamp.
- Fix: No images into product description lines as PDF generation does
not work with this.
...
...
This diff is collapsed.
Click to expand it.
htdocs/product/stock/product.php
+
9
−
8
View file @
1e28904d
...
...
@@ -74,8 +74,9 @@ if ($action == 'setstocklimit')
// Correct stock
if
(
$action
==
"correct_stock"
&&
!
$_POST
[
"cancel"
])
{
if
(
$_POST
[
"price"
]
==
''
)
$_POST
[
"price"
]
=
0
;
if
(
is_numeric
(
$_POST
[
"nbpiece"
])
&&
$id
&&
is_numeric
(
$_POST
[
"price"
]))
//if ($_POST["price"] == '') $_POST["price"] = 0;
if
(
isset
(
$_POST
[
"price"
]))
$priceunit
=
price2num
(
$_POST
[
"price"
]);
if
(
is_numeric
(
$_POST
[
"nbpiece"
])
&&
$id
)
{
$product
=
new
Product
(
$db
);
$result
=
$product
->
fetch
(
$id
);
...
...
@@ -86,7 +87,7 @@ if ($action == "correct_stock" && ! $_POST["cancel"])
$_POST
[
"nbpiece"
],
$_POST
[
"mouvement"
],
$_POST
[
"label"
],
$
_POST
[
"
price
"
]
$price
unit
);
// We do not change value of stock for a correction
if
(
$result
>
0
)
...
...
@@ -336,7 +337,7 @@ if ($_GET["id"] || $_GET["ref"])
// Warehouse
print
'<tr>'
;
print
'<td width="20%">'
.
$langs
->
trans
(
"Warehouse"
)
.
'</td>'
;
print
'<td width="20%"
class="fieldrequired"
>'
.
$langs
->
trans
(
"Warehouse"
)
.
'</td>'
;
print
'<td width="20%">'
;
print
$formproduct
->
selectWarehouses
(
$_GET
[
"dwid"
],
'id_entrepot'
,
''
,
1
);
print
'</td>'
;
...
...
@@ -345,7 +346,7 @@ if ($_GET["id"] || $_GET["ref"])
print
'<option value="0">'
.
$langs
->
trans
(
"Add"
)
.
'</option>'
;
print
'<option value="1">'
.
$langs
->
trans
(
"Delete"
)
.
'</option>'
;
print
'</select></td>'
;
print
'<td width="20%">'
.
$langs
->
trans
(
"NumberOfUnit"
)
.
'</td><td width="20%"><input class="flat" name="nbpiece" size="10" value=""></td>'
;
print
'<td width="20%"
class="fieldrequired"
>'
.
$langs
->
trans
(
"NumberOfUnit"
)
.
'</td><td width="20%"><input class="flat" name="nbpiece" size="10" value=""></td>'
;
print
'</tr>'
;
// Label
...
...
@@ -376,13 +377,13 @@ if ($_GET["id"] || $_GET["ref"])
print
'<table class="border" width="100%">'
;
print
'<tr>'
;
print
'<td width="20%">'
.
$langs
->
trans
(
"WarehouseSource"
)
.
'</td><td width="20%">'
;
print
'<td width="20%"
class="fieldrequired"
>'
.
$langs
->
trans
(
"WarehouseSource"
)
.
'</td><td width="20%">'
;
print
$formproduct
->
selectWarehouses
(
$_GET
[
"dwid"
],
'id_entrepot_source'
,
''
,
1
);
print
'</td>'
;
print
'<td width="20%">'
.
$langs
->
trans
(
"WarehouseTarget"
)
.
'</td><td width="20%">'
;
print
'<td width="20%"
class="fieldrequired"
>'
.
$langs
->
trans
(
"WarehouseTarget"
)
.
'</td><td width="20%">'
;
print
$formproduct
->
selectWarehouses
(
''
,
'id_entrepot_destination'
,
''
,
1
);
print
'</td>'
;
print
'<td width="20%">'
.
$langs
->
trans
(
"NumberOfUnit"
)
.
'</td><td width="20%"><input name="nbpiece" size="10" value=""></td>'
;
print
'<td width="20%"
class="fieldrequired"
>'
.
$langs
->
trans
(
"NumberOfUnit"
)
.
'</td><td width="20%"><input name="nbpiece" size="10" value=""></td>'
;
print
'</tr>'
;
// Label
...
...
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