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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
889483f3
Commit
889483f3
authored
Mar 1, 2005
by
Rodolphe Quiedeville
Browse files
Options
Downloads
Patches
Plain Diff
Modif structure des prelevements
parent
8cc88bd3
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
htdocs/compta/prelevement/index.php
+4
-1
4 additions, 1 deletion
htdocs/compta/prelevement/index.php
with
4 additions
and
1 deletion
htdocs/compta/prelevement/index.php
+
4
−
1
View file @
889483f3
...
...
@@ -49,7 +49,8 @@ print '<tr><td valign="top" width="30%">';
*
*/
$sql
=
"SELECT p.rowid, p.ref, p.amount,"
.
$db
->
pdate
(
"p.datec"
)
.
" as datec"
;
$sql
.
=
" FROM "
.
MAIN_DB_PREFIX
.
"prelevement as p"
;
$sql
.
=
" ,p.statut "
;
$sql
.
=
" FROM "
.
MAIN_DB_PREFIX
.
"prelevement_bons as p"
;
$sql
.
=
" ORDER BY datec DESC LIMIT 5"
;
$result
=
$db
->
query
(
$sql
);
...
...
@@ -72,6 +73,8 @@ if ($result)
print
"<tr
$bc[$var]
><td>"
;
print
'<img border="0" src="./statut'
.
$obj
->
statut
.
'.png"></a> '
;
print
'<a href="fiche.php?id='
.
$obj
->
rowid
.
'">'
.
$obj
->
ref
.
"</a></td>
\n
"
;
print
'<td>'
.
strftime
(
"%d/%m/%Y %H:%M"
,
$obj
->
datec
)
.
"</td>
\n
"
;
...
...
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