Revision 28ec4b9d
Von Tamino Steinert vor mehr als 1 Jahr hinzugefügt
| SL/Controller/EmailJournal.pm | ||
|---|---|---|
|
sent_on => t8('Sent on'),
|
||
|
status => t8('Status'),
|
||
|
extended_status => t8('Extended status'),
|
||
|
linked => t8('Linked'),
|
||
|
linked_to => t8('Linked to'),
|
||
|
},
|
||
|
);
|
||
|
}
|
||
| SL/DB/Manager/EmailJournal.pm | ||
|---|---|---|
|
columns => {
|
||
|
SIMPLE => 'ALL',
|
||
|
sender => 'sender.name',
|
||
|
linked => "(
|
||
|
linked_to => qq{(
|
||
|
SELECT count(*) from record_links where
|
||
|
( record_links.from_table = 'email_journal'::varchar(50)
|
||
|
AND record_links.from_id = email_journal.id
|
||
| ... | ... | |
|
record_links.to_table = 'email_journal'::varchar(50)
|
||
|
AND record_links.to_id = email_journal.id
|
||
|
)
|
||
|
) > 0"
|
||
|
)}
|
||
|
},
|
||
|
);
|
||
|
}
|
||
| locale/de/all | ||
|---|---|---|
|
'Link to' => 'Verknüpfen mit',
|
||
|
'Link to invoice' => 'Beleglink',
|
||
|
'Link to the following project:' => 'Mit dem folgenden Projekt verknüpfen:',
|
||
|
'Linked' => 'Verknüpft',
|
||
|
'Linked Records' => 'Verknüpfte Belege',
|
||
|
'Linked email and attachment to ' => 'E-Mail und Anhang verknüpft mit ',
|
||
|
'Linked invoices' => 'Verknüpfte Rechnungen',
|
||
|
'Linked to' => 'Verknüpft mit',
|
||
|
'Linked to...' => 'Verlinkt zu...',
|
||
|
'Linking to Record' => 'Zum Beleg hinzufügen',
|
||
|
'Liquidity projection' => 'Liquiditätsübersicht',
|
||
| locale/en/all | ||
|---|---|---|
|
'Link to' => '',
|
||
|
'Link to invoice' => '',
|
||
|
'Link to the following project:' => '',
|
||
|
'Linked' => '',
|
||
|
'Linked Records' => '',
|
||
|
'Linked email and attachment to ' => '',
|
||
|
'Linked invoices' => '',
|
||
|
'Linked to' => '',
|
||
|
'Linked to...' => '',
|
||
|
'Linking to Record' => '',
|
||
|
'Liquidity projection' => '',
|
||
| templates/design40_webpages/email_journal/list.html | ||
|---|---|---|
|
<th>[% L.sortable_table_header("sent_on") %]</th>
|
||
|
<th>[% L.sortable_table_header("status") %]</th>
|
||
|
<th>[% L.sortable_table_header("extended_status") %]</th>
|
||
|
<th>[% L.sortable_table_header("linked") %]</th>
|
||
|
<th>[% L.sortable_table_header("linked_to") %]</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
| ... | ... | |
|
<td>[% HTML.escape(entry.sent_on.to_lxoffice('precision' => 'second')) %]</td>
|
||
|
<td> [% P.email_journal.entry_status(entry) %] </td>
|
||
|
<td>[% HTML.escape(entry.extended_status) %]</td>
|
||
|
<td>[% entry.linked ? LxERP.t8('Yes') : LxERP.t8('No') %]</td>
|
||
|
<td>
|
||
|
[% P.record.simple_grouped_record_list(entry.linked_records) %]
|
||
|
</td>
|
||
|
</tr>
|
||
|
[% END %]
|
||
|
</tbody>
|
||
Auch abrufbar als: Unified diff
EmailJournal: Zeige verknüpfte Belege im Bericht an