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
ef86d8e2
Commit
ef86d8e2
authored
12 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Plain Diff
Merge branch 'develop' of git@github.com:Dolibarr/dolibarr.git into develop
parents
9392cf28
e3a3dd04
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
htdocs/product/fournisseurs.php
+19
-18
19 additions, 18 deletions
htdocs/product/fournisseurs.php
with
19 additions
and
18 deletions
htdocs/product/fournisseurs.php
+
19
−
18
View file @
ef86d8e2
...
...
@@ -37,6 +37,7 @@ $langs->load("bills");
$id
=
GETPOST
(
'id'
,
'int'
);
$ref
=
GETPOST
(
'ref'
,
'alpha'
);
$rowid
=
GETPOST
(
'rowid'
,
'int'
);
$action
=
GETPOST
(
'action'
,
'alpha'
);
$socid
=
GETPOST
(
'socid'
,
'int'
);
$error
=
0
;
$mesg
=
''
;
...
...
@@ -77,16 +78,16 @@ if ($action == 'remove_pf')
$product
=
new
ProductFournisseur
(
$db
);
if
(
$product
->
fetch
(
$id
)
>
0
)
{
if
(
$
_GET
[
"
rowid
"
]
)
if
(
$rowid
)
{
$result
=
$product
->
remove_product_fournisseur_price
(
$
_GET
[
"
rowid
"
]
);
$result
=
$product
->
remove_product_fournisseur_price
(
$rowid
);
$action
=
''
;
$mesg
=
'<div class="ok">'
.
$langs
->
trans
(
"PriceRemoved"
)
.
'.</div>'
;
}
}
}
if
(
$action
==
'updateprice'
&&
$_
POST
[
"
cancel
"
]
<>
$langs
->
trans
(
"Cancel"
))
if
(
$action
==
'updateprice'
&&
GET
POST
(
'
cancel
'
)
<>
$langs
->
trans
(
"Cancel"
))
{
$id_fourn
=
GETPOST
(
"id_fourn"
);
if
(
empty
(
$id_fourn
))
$id_fourn
=
GETPOST
(
"search_id_fourn"
);
...
...
@@ -255,9 +256,9 @@ if ($id || $ref)
{
$langs
->
load
(
"suppliers"
);
if
(
$
_GET
[
"
rowid
"
]
)
if
(
$rowid
)
{
$product
->
fetch_product_fournisseur_price
(
$
_GET
[
"
rowid
"
]
);
$product
->
fetch_product_fournisseur_price
(
$rowid
);
print_fiche_titre
(
$langs
->
trans
(
"ChangeSupplierPrice"
));
}
else
...
...
@@ -272,14 +273,14 @@ if ($id || $ref)
print
'<table class="border" width="100%">'
;
print
'<tr><td class="fieldrequired">'
.
$langs
->
trans
(
"Supplier"
)
.
'</td><td colspan="5">'
;
if
(
$
_GET
[
"
rowid
"
]
)
if
(
$rowid
)
{
$supplier
=
new
Fournisseur
(
$db
);
$supplier
->
fetch
(
$socid
);
print
$supplier
->
getNomUrl
(
1
);
print
'<input type="hidden" name="id_fourn" value="'
.
$socid
.
'">'
;
print
'<input type="hidden" name="ref_fourn" value="'
.
$product
->
fourn_ref
.
'">'
;
print
'<input type="hidden" name="ref_fourn_price_id" value="'
.
$
_GET
[
"
rowid
"
]
.
'">'
;
print
'<input type="hidden" name="ref_fourn_price_id" value="'
.
$rowid
.
'">'
;
}
else
{
...
...
@@ -297,7 +298,7 @@ if ($id || $ref)
// Ref supplier
print
'<tr><td class="fieldrequired">'
.
$langs
->
trans
(
"SupplierRef"
)
.
'</td><td colspan="5">'
;
if
(
$
_GET
[
"
rowid
"
]
)
if
(
$rowid
)
{
print
$product
->
fourn_ref
;
}
...
...
@@ -328,8 +329,8 @@ if ($id || $ref)
print
'<tr>'
;
print
'<td class="fieldrequired">'
.
$langs
->
trans
(
"QtyMin"
)
.
'</td>'
;
print
'<td>'
;
$quantity
=
$_REQUEST
[
"
qty
"
]
?
$_REQUEST
[
"
qty
"
]
:
"1"
;
if
(
$
_GET
[
"
rowid
"
]
)
$quantity
=
GETPOST
(
'
qty
'
)
?
GETPOST
(
'
qty
'
)
:
"1"
;
if
(
$rowid
)
{
print
'<input type="hidden" name="qty" value="'
.
$product
->
fourn_qty
.
'">'
;
print
$product
->
fourn_qty
;
...
...
@@ -342,18 +343,18 @@ if ($id || $ref)
// Price qty min
print
'<td class="fieldrequired">'
.
$langs
->
trans
(
"PriceQtyMin"
)
.
'</td>'
;
print
'<td><input class="flat" name="price" size="8" value="'
.
(
$_
POST
[
"
price
"
]
?
$_
POST
[
"
price
"
]
:
(
isset
(
$product
->
fourn_price
)
?
price
(
$product
->
fourn_price
)
:
''
))
.
'">'
;
print
'<td><input class="flat" name="price" size="8" value="'
.
(
GET
POST
(
'
price
'
)
?
price
(
GET
POST
(
'
price
'
))
:
(
isset
(
$product
->
fourn_price
)
?
price
(
$product
->
fourn_price
)
:
''
))
.
'">'
;
print
' '
;
print
$form
->
select_PriceBaseType
((
$_
POST
[
"
price_base_type
"
]
?
$_
POST
[
"
price_base_type
"
]
:
$product
->
price_base_type
),
"price_base_type"
);
print
$form
->
select_PriceBaseType
((
GET
POST
(
'
price_base_type
'
)
?
GET
POST
(
'
price_base_type
'
)
:
$product
->
price_base_type
),
"price_base_type"
);
print
'</td>'
;
print
'</tr>'
;
// Charges ????
if
(
!
empty
(
$conf
->
global
->
PRODUCT_LOAD
))
if
(
!
empty
(
$conf
->
margin
->
enabled
))
{
print
'<tr>'
;
print
'<td>'
.
$langs
->
trans
(
"Charges"
)
.
'</td>'
;
print
'<td colspan="3"><input class="flat" name="charges" size="8" value="'
.
(
$_
POST
[
"
charges
"
]
?
$_
POST
[
"
charges
"
]
:
price
(
$product
->
fourn_charges
))
.
'">'
;
print
'<td colspan="3"><input class="flat" name="charges" size="8" value="'
.
(
GET
POST
(
'
charges
'
)
?
price
(
GET
POST
(
'
charges
'
))
:
(
isset
(
$product
->
fourn_charges
)
?
price
(
$product
->
fourn_charges
)
:
''
)
)
.
'">'
;
print
'</td>'
;
print
'</tr>'
;
}
...
...
@@ -404,10 +405,10 @@ if ($id || $ref)
print
'<td class="liste_titre" align="right">'
.
$langs
->
trans
(
"VATRate"
)
.
'</td>'
;
print
'<td class="liste_titre" align="right">'
.
$langs
->
trans
(
"PriceQtyMinHT"
)
.
'</td>'
;
// Charges ????
if
(
!
empty
(
$conf
->
global
->
PRODUCT_LOAD
))
print
'<td align="right">'
.
$langs
->
trans
(
"Charges"
)
.
'</td>'
;
if
(
!
empty
(
$conf
->
margin
->
enabled
))
print
'<td align="right">'
.
$langs
->
trans
(
"Charges"
)
.
'</td>'
;
print_liste_field_titre
(
$langs
->
trans
(
"UnitPriceHT"
),
$_SERVER
[
"PHP_SELF"
],
"pfp.unitprice"
,
""
,
$param
,
'align="right"'
,
$sortfield
,
$sortorder
);
// Charges ????
if
(
!
empty
(
$conf
->
global
->
PRODUCT_LOAD
))
print
'<td align="right">'
.
$langs
->
trans
(
"UnitCharges"
)
.
'</td>'
;
if
(
!
empty
(
$conf
->
margin
->
enabled
))
print
'<td align="right">'
.
$langs
->
trans
(
"UnitCharges"
)
.
'</td>'
;
print
'<td class="liste_titre"></td>'
;
print
"</tr>
\n
"
;
...
...
@@ -453,7 +454,7 @@ if ($id || $ref)
print
'</td>'
;
// Charges ????
if
(
!
empty
(
$conf
->
global
->
PRODUCT_LOAD
))
if
(
!
empty
(
$conf
->
margin
->
enabled
))
{
print
'<td align="right">'
;
print
$productfourn
->
fourn_charges
?
price
(
$productfourn
->
fourn_charges
)
:
""
;
...
...
@@ -467,7 +468,7 @@ if ($id || $ref)
print
'</td>'
;
// Unit Charges ???
if
(
!
empty
(
$conf
->
global
->
PRODUCT_LOAD
))
if
(
!
empty
(
$conf
->
margin
->
enabled
))
{
print
'<td align="right">'
;
print
$productfourn
->
fourn_unitcharges
?
price
(
$productfourn
->
fourn_unitcharges
)
:
(
$productfourn
->
fourn_qty
?
price
(
$productfourn
->
fourn_charges
/
$productfourn
->
fourn_qty
)
:
" "
);
...
...
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