Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
VMSone
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Designerscripte
VMSone
Commits
3fcaa6c2
There was an error fetching the commit references. Please try again later.
Commit
3fcaa6c2
authored
5 years ago
by
Joel Kuder
Browse files
Options
Downloads
Plain Diff
Merge branch 'patch-4' into 'dev-3.0'
Update buchungen.php See merge request
!7
parents
2e880244
dedc0dea
2 merge requests
!46
Release 3.0
,
!7
Update buchungen.php
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
adminforce/content/usersystem/buchungen.php
+7
-5
7 additions, 5 deletions
adminforce/content/usersystem/buchungen.php
with
7 additions
and
5 deletions
adminforce/content/usersystem/buchungen.php
+
7
−
5
View file @
3fcaa6c2
...
...
@@ -4,14 +4,16 @@
<td
align=
"center"
><b>
Buchungs Id
</b></td>
<td
align=
"center"
><b>
Datum
</b></td>
<td
align=
"center"
><b>
Zeit
</b></td>
<td
align=
"center"
><b>
FuCos
</b></td>
<td
align=
"center"
><b>
<?php
echo
$system
[
'waehrung'
];
?>
</b></td>
<td
align=
"center"
><b>
Verwendungszweck
</b></td>
</tr>
<?php
$buchungen_lesen
=
db_query
(
"SELECT * FROM "
.
$db_prefix
.
"_buchungen WHERE uid="
.
$_GET
[
'uid'
]
.
" ORDER BY buchungszeit DESC LIMIT 250"
);
while
(
$buchung_schreiben
=
mysql_fetch_array
(
$buchungen_lesen
))
{
$buchcolor
=
'#000000'
;
if
(
$buchung_schreiben
[
'buchungsmenge'
]
<
0
)
$buchcolor
=
'#cc0000'
;
$buchungen_lesen
=
sql
::
$db
->
prepare
(
"SELECT * FROM "
.
_VMS_
.
"_buchungen WHERE uid=:uid ORDER BY buchungszeit DESC LIMIT 250"
);
$buchungen_lesen
->
bindParam
(
':uid'
,
$_GET
[
'uid'
],
PDO
::
PARAM_INT
);
$buchungen_lesen
->
execute
();
while
(
$buchung_schreiben
=
$buchungen_lesen
->
fetch
()
)
{
$buchcolor
=
$system
[
'positiv_farbe'
];
if
(
$buchung_schreiben
[
'buchungsmenge'
]
<
0
)
$buchcolor
=
$system
[
'negativ_farbe'
];
echo
'<tr bgcolor="#fafafa">
<td align="left"> '
.
$buchung_schreiben
[
'buchungs_id'
]
.
'</td>
<td align="center"> '
.
date
(
"d.m.Y"
,
$buchung_schreiben
[
'buchungszeit'
])
.
' </td>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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