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
744e5375
Commit
744e5375
authored
9 years ago
by
Juanjo Menent
Browse files
Options
Downloads
Patches
Plain Diff
Fix #3514 Bug: Error when trying to add a product to a non-existing object
parent
1deb7789
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
htdocs/langs/en_US/products.lang
+1
-0
1 addition, 0 deletions
htdocs/langs/en_US/products.lang
htdocs/product/card.php
+144
-153
144 additions, 153 deletions
htdocs/product/card.php
with
145 additions
and
153 deletions
htdocs/langs/en_US/products.lang
+
1
−
0
View file @
744e5375
...
...
@@ -296,3 +296,4 @@ PropalMergePdfProductActualFile=Files use to add into PDF Azur are/is
PropalMergePdfProductChooseFile=Select PDF files
IncludingProductWithTag=Including product with tag
DefaultPriceRealPriceMayDependOnCustomer=Default price, real price may depend on customer
WarningSelectOneDocument=Please select at least one document
This diff is collapsed.
Click to expand it.
htdocs/product/card.php
+
144
−
153
View file @
744e5375
...
...
@@ -5,7 +5,7 @@
* Copyright (C) 2005-2015 Regis Houssin <regis.houssin@capnetworks.com>
* Copyright (C) 2006 Andre Cianfarani <acianfa@free.fr>
* Copyright (C) 2006 Auguria SARL <info@auguria.org>
* Copyright (C) 2010-201
4
Juanjo Menent <jmenent@2byte.es>
* Copyright (C) 2010-201
5
Juanjo Menent <jmenent@2byte.es>
* Copyright (C) 2013-2014 Marcos García <marcosgdf@gmail.com>
* Copyright (C) 2012-2013 Cédric Salvador <csalvador@gpcsolutions.fr>
* Copyright (C) 2011-2015 Alexandre Spangaro <aspangaro.dolibarr@gmail.com>
...
...
@@ -563,171 +563,162 @@ if (empty($reshook))
$thirpdartyid
=
$facture
->
socid
;
}
$soc
=
new
Soci
et
e
(
$
db
);
$result
=
$soc
->
fetch
(
$thirpdartyid
);
if
(
$result
<
=
0
)
{
dol_print_error
(
$db
,
$soc
->
error
);
exit
;
}
if
(
iss
et
(
$
thirpdartyid
))
{
$soc
=
new
Societe
(
$db
);
$result
=
$soc
->
fetch
(
$thirpdartyid
);
if
(
$result
<=
0
)
{
dol_print_error
(
$db
,
$soc
->
error
);
exit
;
}
$desc
=
$object
->
description
;
$desc
=
$object
->
description
;
$tva_tx
=
get_default_tva
(
$mysoc
,
$soc
,
$object
->
id
);
$localtax1_tx
=
get_localtax
(
$tva_tx
,
1
,
$soc
);
$localtax2_tx
=
get_localtax
(
$tva_tx
,
2
,
$soc
);
$tva_tx
=
get_default_tva
(
$mysoc
,
$soc
,
$object
->
id
);
$localtax1_tx
=
get_localtax
(
$tva_tx
,
1
,
$soc
);
$localtax2_tx
=
get_localtax
(
$tva_tx
,
2
,
$soc
);
$pu_ht
=
$object
->
price
;
$pu_ttc
=
$object
->
price_ttc
;
$price_base_type
=
$object
->
price_base_type
;
$pu_ht
=
$object
->
price
;
$pu_ttc
=
$object
->
price_ttc
;
$price_base_type
=
$object
->
price_base_type
;
// If multiprice
if
(
$conf
->
global
->
PRODUIT_MULTIPRICES
&&
$soc
->
price_level
)
{
$pu_ht
=
$object
->
multiprices
[
$soc
->
price_level
];
$pu_ttc
=
$object
->
multiprices_ttc
[
$soc
->
price_level
];
$price_base_type
=
$object
->
multiprices_base_type
[
$soc
->
price_level
];
}
elseif
(
!
empty
(
$conf
->
global
->
PRODUIT_CUSTOMER_PRICES
))
{
require_once
DOL_DOCUMENT_ROOT
.
'/product/class/productcustomerprice.class.php'
;
// If multiprice
if
(
$conf
->
global
->
PRODUIT_MULTIPRICES
&&
$soc
->
price_level
)
{
$pu_ht
=
$object
->
multiprices
[
$soc
->
price_level
];
$pu_ttc
=
$object
->
multiprices_ttc
[
$soc
->
price_level
];
$price_base_type
=
$object
->
multiprices_base_type
[
$soc
->
price_level
];
}
elseif
(
!
empty
(
$conf
->
global
->
PRODUIT_CUSTOMER_PRICES
))
{
require_once
DOL_DOCUMENT_ROOT
.
'/product/class/productcustomerprice.class.php'
;
$prodcustprice
=
new
Productcustomerprice
(
$db
);
$prodcustprice
=
new
Productcustomerprice
(
$db
);
$filter
=
array
(
't.fk_product'
=>
$object
->
id
,
't.fk_soc'
=>
$soc
->
id
);
$filter
=
array
(
't.fk_product'
=>
$object
->
id
,
't.fk_soc'
=>
$soc
->
id
);
$result
=
$prodcustprice
->
fetch_all
(
''
,
''
,
0
,
0
,
$filter
);
if
(
$result
)
{
if
(
count
(
$prodcustprice
->
lines
)
>
0
)
{
$pu_ht
=
price
(
$prodcustprice
->
lines
[
0
]
->
price
);
$pu_ttc
=
price
(
$prodcustprice
->
lines
[
0
]
->
price_ttc
);
$price_base_type
=
$prodcustprice
->
lines
[
0
]
->
price_base_type
;
$prod
->
tva_tx
=
$prodcustprice
->
lines
[
0
]
->
tva_tx
;
}
}
}
// On reevalue prix selon taux tva car taux tva transaction peut etre different
// de ceux du produit par defaut (par exemple si pays different entre vendeur et acheteur).
if
(
$tva_tx
!=
$object
->
tva_tx
)
{
if
(
$price_base_type
!=
'HT'
)
{
$pu_ht
=
price2num
(
$pu_ttc
/
(
1
+
(
$tva_tx
/
100
)),
'MU'
);
$result
=
$prodcustprice
->
fetch_all
(
''
,
''
,
0
,
0
,
$filter
);
if
(
$result
)
{
if
(
count
(
$prodcustprice
->
lines
)
>
0
)
{
$pu_ht
=
price
(
$prodcustprice
->
lines
[
0
]
->
price
);
$pu_ttc
=
price
(
$prodcustprice
->
lines
[
0
]
->
price_ttc
);
$price_base_type
=
$prodcustprice
->
lines
[
0
]
->
price_base_type
;
$prod
->
tva_tx
=
$prodcustprice
->
lines
[
0
]
->
tva_tx
;
}
}
}
else
{
$pu_ttc
=
price2num
(
$pu_ht
*
(
1
+
(
$tva_tx
/
100
)),
'MU'
);
// On reevalue prix selon taux tva car taux tva transaction peut etre different
// de ceux du produit par defaut (par exemple si pays different entre vendeur et acheteur).
if
(
$tva_tx
!=
$object
->
tva_tx
)
{
if
(
$price_base_type
!=
'HT'
)
{
$pu_ht
=
price2num
(
$pu_ttc
/
(
1
+
(
$tva_tx
/
100
)),
'MU'
);
}
else
{
$pu_ttc
=
price2num
(
$pu_ht
*
(
1
+
(
$tva_tx
/
100
)),
'MU'
);
}
}
}
if
(
GETPOST
(
'propalid'
)
>
0
)
{
$result
=
$propal
->
addline
(
$desc
,
$pu_ht
,
GETPOST
(
'qty'
),
$tva_tx
,
$localtax1_tx
,
// localtax1
$localtax2_tx
,
// localtax2
$object
->
id
,
GETPOST
(
'remise_percent'
),
$price_base_type
,
$pu_ttc
,
0
,
0
,
-
1
,
0
,
0
,
0
,
0
,
''
,
''
,
''
,
0
,
$object
->
fk_unit
);
if
(
$result
>
0
)
{
header
(
"Location: "
.
DOL_URL_ROOT
.
"/comm/propal.php?id="
.
$propal
->
id
);
return
;
}
if
(
GETPOST
(
'propalid'
)
>
0
)
{
$result
=
$propal
->
addline
(
$desc
,
$pu_ht
,
GETPOST
(
'qty'
),
$tva_tx
,
$localtax1_tx
,
// localtax1
$localtax2_tx
,
// localtax2
$object
->
id
,
GETPOST
(
'remise_percent'
),
$price_base_type
,
$pu_ttc
,
0
,
0
,
-
1
,
0
,
0
,
0
,
0
,
''
,
''
,
''
,
0
,
$object
->
fk_unit
);
if
(
$result
>
0
)
{
header
(
"Location: "
.
DOL_URL_ROOT
.
"/comm/propal.php?id="
.
$propal
->
id
);
return
;
}
setEventMessage
(
$langs
->
trans
(
"ErrorUnknown"
)
.
":
$result
"
,
'errors'
);
setEventMessage
(
$langs
->
trans
(
"ErrorUnknown"
)
.
":
$result
"
,
'errors'
);
}
elseif
(
GETPOST
(
'commandeid'
)
>
0
)
{
$result
=
$commande
->
addline
(
$desc
,
$pu_ht
,
GETPOST
(
'qty'
),
$tva_tx
,
$localtax1_tx
,
// localtax1
$localtax2_tx
,
// localtax2
$object
->
id
,
GETPOST
(
'remise_percent'
),
''
,
''
,
$price_base_type
,
$pu_ttc
,
''
,
''
,
0
,
-
1
,
0
,
0
,
null
,
0
,
''
,
0
,
$object
->
fk_unit
);
if
(
$result
>
0
)
{
header
(
"Location: "
.
DOL_URL_ROOT
.
"/commande/card.php?id="
.
$commande
->
id
);
exit
;
}
}
elseif
(
GETPOST
(
'factureid'
)
>
0
)
{
$result
=
$facture
->
addline
(
$desc
,
$pu_ht
,
GETPOST
(
'qty'
),
$tva_tx
,
$localtax1_tx
,
$localtax2_tx
,
$object
->
id
,
GETPOST
(
'remise_percent'
),
''
,
''
,
''
,
''
,
''
,
$price_base_type
,
$pu_ttc
,
Facture
::
TYPE_STANDARD
,
-
1
,
0
,
''
,
0
,
0
,
null
,
0
,
''
,
0
,
100
,
''
,
$object
->
fk_unit
);
if
(
$result
>
0
)
{
header
(
"Location: "
.
DOL_URL_ROOT
.
"/compta/facture.php?facid="
.
$facture
->
id
);
exit
;
}
}
}
elseif
(
GETPOST
(
'commandeid'
)
>
0
)
{
$result
=
$commande
->
addline
(
$desc
,
$pu_ht
,
GETPOST
(
'qty'
),
$tva_tx
,
$localtax1_tx
,
// localtax1
$localtax2_tx
,
// localtax2
$object
->
id
,
GETPOST
(
'remise_percent'
),
''
,
''
,
$price_base_type
,
$pu_ttc
,
''
,
''
,
0
,
-
1
,
0
,
0
,
null
,
0
,
''
,
0
,
$object
->
fk_unit
);
if
(
$result
>
0
)
{
header
(
"Location: "
.
DOL_URL_ROOT
.
"/commande/card.php?id="
.
$commande
->
id
);
exit
;
}
else
{
$action
=
""
;
setEventMessage
(
$langs
->
trans
(
"WarningSelectOneDocument"
),
'warnings'
);
}
elseif
(
GETPOST
(
'factureid'
)
>
0
)
{
$result
=
$facture
->
addline
(
$desc
,
$pu_ht
,
GETPOST
(
'qty'
),
$tva_tx
,
$localtax1_tx
,
$localtax2_tx
,
$object
->
id
,
GETPOST
(
'remise_percent'
),
''
,
''
,
''
,
''
,
''
,
$price_base_type
,
$pu_ttc
,
Facture
::
TYPE_STANDARD
,
-
1
,
0
,
''
,
0
,
0
,
null
,
0
,
''
,
0
,
100
,
''
,
$object
->
fk_unit
);
if
(
$result
>
0
)
{
header
(
"Location: "
.
DOL_URL_ROOT
.
"/compta/facture.php?facid="
.
$facture
->
id
);
exit
;
}
}
}
}
...
...
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