View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0006535 | OXID eShop (all versions) | 2.6. Administer orders | public | 2016-10-31 13:26 | 2024-08-21 07:56 |
Reporter | oxid-Christian.Wolf | Assigned To | |||
Priority | normal | Severity | minor | Reproducibility | always |
Status | acknowledged | Resolution | open | ||
Summary | 0006535: greetings card text gets lost on admin side and admin order mail | ||||
Description | Oder any product with greetings card (with any text). After the order is executed only the client will receive the text of the greetings card (in his confirmation email). The information gets lost in shop backend since you can't find it in ADMINISTER ORDERS -> Orders. It's also not present in the oder confirmation mail sent to the shop admin. | ||||
Tags | No tags attached. | ||||
Theme | Not defined | ||||
Browser | Not defined | ||||
PHP Version | Not defined | ||||
Database Version | Not defined | ||||
|
The Data is present in the database at oxorder -> oxcardtext here is a quick and dirty work around to show the card text in admin backend (administer orders -> orders): in application/views/admin/tpl/order_overview.tpl look for: </tr></table> [{ oxmultilang ident="GENERAL_ITEM" }]: <table cellspacing="0" cellpadding="0" border="0"> and replace by: </tr></table> [{ oxmultilang ident="GENERAL_ITEM" }]: <table cellspacing="0" cellpadding="0" border="0"> [{if $edit->oxorder__oxcardtext->value }] <tr> <td class="edittext" height="15">Grusskarte Text: </td> <td class="edittext" align="right">[{$edit->oxorder__oxcardtext->value}]</td> </tr> [{/if}] Be careful, this will mess with your layout in admin backend (orders), especially for very long greeting card messages. |