From 33beebf4cb42eba3e1dd868ad5e0af102de961da Mon Sep 17 00:00:00 2001 From: Mark Wells Date: Sat, 29 Sep 2012 16:36:46 -0700 Subject: update address standardization for cust_location changes --- .../Ticket/Elements/EditTransactionCustomFields | 42 +++++++++++++++------- 1 file changed, 30 insertions(+), 12 deletions(-) (limited to 'rt/share/html/Ticket/Elements/EditTransactionCustomFields') diff --git a/rt/share/html/Ticket/Elements/EditTransactionCustomFields b/rt/share/html/Ticket/Elements/EditTransactionCustomFields index a4ade8721..e9a1bbb5c 100644 --- a/rt/share/html/Ticket/Elements/EditTransactionCustomFields +++ b/rt/share/html/Ticket/Elements/EditTransactionCustomFields @@ -2,7 +2,7 @@ %# %# COPYRIGHT: %# -%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC +%# This software is Copyright (c) 1996-2012 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) @@ -46,30 +46,36 @@ %# %# END BPS TAGGED BLOCK }}} % $m->callback( CallbackName => 'BeforeTransactionCustomFields', TicketObj => $TicketObj, QueueObj => $QueueObj, NamePrefix => $NamePrefix ); +% if ( $WRAP ) { +<<% $WRAP %> class="edit-transaction-custom-fields"> +% } % if ($CustomFields->Count) { % while (my $CF = $CustomFields->Next()) { % $CF->SetContextObject($TicketObj || $QueueObj); % next unless $CF->CurrentUserHasRight('ModifyCustomField'); % next unless $CF->UILocation eq $UILocation; - - -<% loc($CF->Name) %>: - - +<<% $FIELD %>> +<<% $CELL %> class="label cflabel"> + <% loc($CF->Name) %>:
+% if ( $CF->Type ne 'TimeValue' ) { + <% $CF->FriendlyType %> +% } +> +<<% $CELL %>> <& /Elements/EditCustomField, CustomField => $CF, NamePrefix => $NamePrefix &> -% if ( $CF->Type ne 'TimeValue' ) { -<% $CF->FriendlyType %> -% } -% if (my $msg = $m->notes('InvalidField-' . $CF->Id)) { +% if (my $msg = $m->notes('InvalidField-' . $CF->Id)) {
<% $msg %> +% } +> +> % } - - % } +% if ( $WRAP ) { +> % } % $m->callback( CallbackName => 'AfterTransactionCustomFields', TicketObj => $TicketObj, QueueObj => $QueueObj, NamePrefix => $NamePrefix ); @@ -84,11 +90,23 @@ if ($TicketObj) { $m->callback( CallbackName => 'MassageTransactionCustomFields', CustomFields => $CustomFields ); +$AsTable ||= $InTable; +my $FIELD = $AsTable ? 'tr' : 'div'; +my $CELL = $AsTable ? 'td' : 'div'; +my $WRAP = ''; +if ( $AsTable ) { + $WRAP = 'table' unless $InTable; +} else { + $WRAP = 'div'; +} + <%ARGS> $NamePrefix => "Object-RT::Transaction--CustomField-" $TicketObj => undef $QueueObj => undef +$AsTable => 0 +$InTable => 0 $UILocation => '' -- cgit v1.2.1