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
f674b249
Commit
f674b249
authored
8 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Fix look and feel
parent
82b14e30
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/payment_sc/card.php
+7
-7
7 additions, 7 deletions
htdocs/compta/payment_sc/card.php
with
7 additions
and
7 deletions
htdocs/compta/payment_sc/card.php
+
7
−
7
View file @
f674b249
...
...
@@ -162,25 +162,25 @@ if ($action == 'valide')
print
'<table class="border" width="100%">'
;
// Ref
print
'<tr><td
valign="top" width="140
">'
.
$langs
->
trans
(
'Ref'
)
.
'</td>'
;
print
'<tr><td
class="titlefield
">'
.
$langs
->
trans
(
'Ref'
)
.
'</td>'
;
print
'<td colspan="3">'
;
print
$form
->
showrefnav
(
$paiement
,
'id'
,
''
,
1
,
'rowid'
,
'id'
);
print
'</td></tr>'
;
// Date
print
'<tr><td
valign="top"
width="120">'
.
$langs
->
trans
(
'Date'
)
.
'</td><td colspan="3">'
.
dol_print_date
(
$paiement
->
datep
,
'day'
)
.
'</td></tr>'
;
print
'<tr><td width="120">'
.
$langs
->
trans
(
'Date'
)
.
'</td><td colspan="3">'
.
dol_print_date
(
$paiement
->
datep
,
'day'
)
.
'</td></tr>'
;
// Mode
print
'<tr><td
valign="top"
>'
.
$langs
->
trans
(
'Mode'
)
.
'</td><td colspan="3">'
.
$langs
->
trans
(
"PaymentType"
.
$paiement
->
type_code
)
.
'</td></tr>'
;
print
'<tr><td>'
.
$langs
->
trans
(
'Mode'
)
.
'</td><td colspan="3">'
.
$langs
->
trans
(
"PaymentType"
.
$paiement
->
type_code
)
.
'</td></tr>'
;
// Numero
print
'<tr><td
valign="top"
>'
.
$langs
->
trans
(
'Numero'
)
.
'</td><td colspan="3">'
.
$paiement
->
num_paiement
.
'</td></tr>'
;
print
'<tr><td>'
.
$langs
->
trans
(
'Numero'
)
.
'</td><td colspan="3">'
.
$paiement
->
num_paiement
.
'</td></tr>'
;
// Montant
print
'<tr><td
valign="top"
>'
.
$langs
->
trans
(
'Amount'
)
.
'</td><td colspan="3">'
.
price
(
$paiement
->
amount
,
0
,
$outputlangs
,
1
,
-
1
,
-
1
,
$conf
->
currency
)
.
'</td></tr>'
;
print
'<tr><td>'
.
$langs
->
trans
(
'Amount'
)
.
'</td><td colspan="3">'
.
price
(
$paiement
->
amount
,
0
,
$outputlangs
,
1
,
-
1
,
-
1
,
$conf
->
currency
)
.
'</td></tr>'
;
// Note
print
'<tr><td
valign="top"
>'
.
$langs
->
trans
(
'Note'
)
.
'</td><td colspan="3">'
.
nl2br
(
$paiement
->
note
)
.
'</td></tr>'
;
print
'<tr><td>'
.
$langs
->
trans
(
'Note'
)
.
'</td><td colspan="3">'
.
nl2br
(
$paiement
->
note
)
.
'</td></tr>'
;
// Bank account
if
(
!
empty
(
$conf
->
banque
->
enabled
))
...
...
@@ -278,7 +278,7 @@ else
dol_print_error
(
$db
);
}
print
'</div>'
;
dol_fiche_end
()
;
/*
...
...
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