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
1065645f
Commit
1065645f
authored
11 years ago
by
Marcos García de La Fuente
Browse files
Options
Downloads
Patches
Plain Diff
Fix: [ bug #857 ] Invoice created from shipment does not have the order discount
parent
b1cf0b9a
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/expedition/class/expedition.class.php
+1
-1
1 addition, 1 deletion
htdocs/expedition/class/expedition.class.php
with
2 additions
and
1 deletion
ChangeLog
+
1
−
0
View file @
1065645f
...
...
@@ -25,6 +25,7 @@ English Dolibarr ChangeLog
- Fix: [ bug #810 ] Cannot update ODT template path
- Fix: [ bug #824 ] MAIN_DB_PREFIX not use into dictionnary
- Fix: [ bug #828 ] Error when code_region is not a number in llx_c_regions (with postgres)
- Fix: [ bug #857 ] Invoice created from shipment does not have the order discount
***** ChangeLog for 3.3.1 compared to 3.3 *****
...
...
This diff is collapsed.
Click to expand it.
htdocs/expedition/class/expedition.class.php
+
1
−
1
View file @
1065645f
...
...
@@ -857,7 +857,7 @@ class Expedition extends CommonObject
$sql
=
"SELECT cd.rowid, cd.fk_product, cd.label as custom_label, cd.description, cd.qty as qty_asked"
;
$sql
.
=
", cd.total_ht, cd.total_localtax1, cd.total_localtax2, cd.total_ttc, cd.total_tva"
;
$sql
.
=
", cd.tva_tx, cd.localtax1_tx, cd.localtax2_tx, cd.price, cd.subprice"
;
$sql
.
=
", cd.tva_tx, cd.localtax1_tx, cd.localtax2_tx, cd.price, cd.subprice
, cd.remise_percent
"
;
$sql
.
=
", ed.qty as qty_shipped, ed.fk_origin_line, ed.fk_entrepot"
;
$sql
.
=
", p.ref as product_ref, p.label as product_label, p.fk_product_type"
;
$sql
.
=
", p.weight, p.weight_units, p.length, p.length_units, p.surface, p.surface_units, p.volume, p.volume_units"
;
...
...
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