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
6e27bf0b
Commit
6e27bf0b
authored
13 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Numbering module for invoice use same number for invoice and credit note if mask is same.
parent
9052a83f
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
-0
2 additions, 0 deletions
ChangeLog
htdocs/includes/modules/facture/mod_facture_mercure.php
+3
-3
3 additions, 3 deletions
htdocs/includes/modules/facture/mod_facture_mercure.php
with
5 additions
and
3 deletions
ChangeLog
+
2
−
0
View file @
6e27bf0b
...
...
@@ -33,6 +33,8 @@ For users:
- New: Add region/country statistics for member module.
- New: Can define a proxy for external web access.
- New: task #11003: checkbox on checks to deposit
- New: Numbering module for invoice use same number for invoice
and credit note if mask is same.
- Fix: Better Postgresql compatibility.
For developers:
...
...
This diff is collapsed.
Click to expand it.
htdocs/includes/modules/facture/mod_facture_mercure.php
+
3
−
3
View file @
6e27bf0b
<?php
/* Copyright (C) 2003-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004-20
07
Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2004-20
11
Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2005-2007 Regis Houssin <regis@dolibarr.fr>
* Copyright (C) 2008 Raphael Bertrand (Resultic) <raphael.bertrand@resultic.fr>
*
...
...
@@ -128,8 +128,8 @@ class mod_facture_mercure extends ModeleNumRefFactures
}
$where
=
''
;
if
(
$facture
->
type
==
2
)
$where
.
=
" AND type = 2"
;
else
$where
.
=
" AND type != 2"
;
//
if ($facture->type == 2) $where.= " AND type = 2";
//
else $where.=" AND type != 2";
$numFinal
=
get_next_value
(
$db
,
$mask
,
'facture'
,
'facnumber'
,
$where
,
$objsoc
,
$facture
->
date
,
$mode
);
if
(
!
preg_match
(
'/([0-9])+/'
,
$numFinal
))
$this
->
error
=
$numFinal
;
...
...
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