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
1f0cddc4
Commit
1f0cddc4
authored
13 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Add hidden option to allow negative invoices (for test purpose only,
negative invoices should be done using credit note).
parent
5f8fc301
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/compta/facture.php
+11
-9
11 additions, 9 deletions
htdocs/compta/facture.php
with
11 additions
and
9 deletions
htdocs/compta/facture.php
+
11
−
9
View file @
1f0cddc4
...
...
@@ -43,7 +43,7 @@ if ($conf->projet->enabled)
{
require_once
(
DOL_DOCUMENT_ROOT
.
'/projet/class/project.class.php'
);
require_once
(
DOL_DOCUMENT_ROOT
.
'/core/lib/project.lib.php'
);
}
}
$langs
->
load
(
'bills'
);
//print 'ee'.$langs->trans('BillsCustomer');exit;
...
...
@@ -228,7 +228,7 @@ else if ($action == 'valid')
else
{
// Si non avoir, le signe doit etre positif
if
(
$object
->
total_ht
<
0
)
if
(
empty
(
$conf
->
global
->
FACTURE_ENABLE_NEGATIVE
)
&&
$object
->
total_ht
<
0
)
{
$mesg
=
'<div class="error">'
.
$langs
->
trans
(
"ErrorInvoiceOfThisTypeMustBePositive"
)
.
'</div>'
;
$action
=
''
;
...
...
@@ -739,7 +739,7 @@ else if ($action == 'add' && $user->rights->facture->creer)
$object
->
origin
=
$_POST
[
'origin'
];
$object
->
origin_id
=
$_POST
[
'originid'
];
// Possibility to add external linked objects with hooks
$object
->
linked_objects
[
$object
->
origin
]
=
$object
->
origin_id
;
if
(
is_array
(
$_POST
[
'other_linked_objects'
])
&&
!
empty
(
$_POST
[
'other_linked_objects'
]))
...
...
@@ -2089,8 +2089,11 @@ else
//array('type' => 'checkbox', 'name' => 'update_prices', 'label' => $langs->trans("PuttingPricesUpToDate"), 'value' => 1),
array
(
'type'
=>
'other'
,
'name'
=>
'idwarehouse'
,
'label'
=>
$langs
->
trans
(
"SelectWarehouseForStockDecrease"
),
'value'
=>
$formproduct
->
selectWarehouses
(
GETPOST
(
'idwarehouse'
),
'idwarehouse'
,
''
,
1
)));
}
$formconfirm
=
$form
->
formconfirm
(
$_SERVER
[
"PHP_SELF"
]
.
'?facid='
.
$object
->
id
,
$langs
->
trans
(
'ValidateBill'
),
$text
,
'confirm_valid'
,
$formquestion
,
"yes"
,(
$conf
->
notification
->
enabled
?
0
:
2
));
if
(
$object
->
type
!=
2
&&
$object
->
total_ttc
<
0
)
// Can happen only if $conf->global->FACTURE_ENABLE_NEGATIVE is on
{
$text
.
=
'<br>'
.
img_warning
()
.
' '
.
$langs
->
trans
(
"ErrorInvoiceOfThisTypeMustBePositive"
);
}
$formconfirm
=
$form
->
formconfirm
(
$_SERVER
[
"PHP_SELF"
]
.
'?facid='
.
$object
->
id
,
$langs
->
trans
(
'ValidateBill'
),
$text
,
'confirm_valid'
,
$formquestion
,((
$object
->
type
!=
2
&&
$object
->
total_ttc
<
0
)
?
"no"
:
"yes"
),(
$conf
->
notification
->
enabled
?
0
:
2
));
}
// Confirm back to draft status
...
...
@@ -2345,7 +2348,7 @@ else
if
(
$absolute_creditnote
>
0
)
// If not, link will be added later
{
if
(
$object
->
statut
==
0
&&
$object
->
type
!=
2
&&
$object
->
type
!=
3
)
print
' ('
.
$addabsolutediscount
.
')<br>'
;
else
print
'.'
;
else
print
'.
'
;
}
else
print
'. '
;
}
...
...
@@ -2822,14 +2825,13 @@ else
// Validate
if
(
$object
->
statut
==
0
&&
count
(
$object
->
lines
)
>
0
&&
(
((
$object
->
type
==
0
||
$object
->
type
==
1
||
$object
->
type
==
3
||
$object
->
type
==
4
)
&&
$object
->
total_ttc
>=
0
)
((
$object
->
type
==
0
||
$object
->
type
==
1
||
$object
->
type
==
3
||
$object
->
type
==
4
)
&&
(
!
empty
(
$conf
->
global
->
FACTURE_ENABLE_NEGATIVE
)
||
$object
->
total_ttc
>=
0
)
)
||
(
$object
->
type
==
2
&&
$object
->
total_ttc
<=
0
))
)
{
if
(
$user
->
rights
->
facture
->
valider
)
{
print
'<a class="butAction" href="'
.
$_SERVER
[
"PHP_SELF"
]
.
'?facid='
.
$object
->
id
.
'&action=valid"'
;
print
'>'
.
$langs
->
trans
(
'Validate'
)
.
'</a>'
;
print
'<a class="butAction" href="'
.
$_SERVER
[
"PHP_SELF"
]
.
'?facid='
.
$object
->
id
.
'&action=valid">'
.
$langs
->
trans
(
'Validate'
)
.
'</a>'
;
}
}
...
...
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