Edit File: create_return.tpl
{capture name="mainbox"} <form action="{""|fn_url}" method="post" name="return_registration_form"> <input name="order_id" type="hidden" value="{$smarty.request.order_id}" /> <input name="user_id" type="hidden" value="{$order_info.user_id}" /> {if $actions} <table width="100%"> <tr> <td class="nowrap"><span>{__("what_you_would_like_to_do")}</span>:</td> <td> </td> <td width="100%"> <select name="action"> {foreach from=$actions item="action" key="action_id"} <option value="{$action_id}">{$action.property}</option> {/foreach} </select></td> </tr> </table> {/if} <table width="100%" class="table"> <thead> <tr> <th width="1%"> {include file="common/check_items.tpl"}</th> <th>{__("sku")}</th> <th width="100%">{__("product")}</th> <th>{__("price")}</th> <th>{__("amount")}</th> <th>{__("reason")}</th> </tr> </thead> {foreach from=$order_info.products item="oi" key="key"} <tr> <td width="1%" class="left"> <input type="checkbox" name="returns[{$oi.cart_id}][chosen]" value="Y" class="cm-item" /> <input type="hidden" name="returns[{$oi.cart_id}][product_id]" value="{$oi.product_id}" /></td> <td>{$oi.product_code}</td> <td><a href="{"products.update?product_id=`$oi.product_id`"|fn_url}">{$oi.product nofilter}</a> {if $oi.product_options}<div class="options-info"> {include file="common/options_info.tpl" product_options=$oi.product_options}</div>{/if}</td> <td class="nowrap"> {if $oi.extra.exclude_from_calculate}{__("free")}{else}{include file="common/price.tpl" value=$oi.price}{/if}</td> <td> <input type="hidden" name="returns[{$oi.cart_id}][available_amount]" value="{$oi.amount}" /> <select name="returns[{$oi.cart_id}][amount]"> {section name=$key loop=$oi.amount+1 start="1" step="1"} <option value="{$smarty.section.$key.index}">{$smarty.section.$key.index}</option> {/section} </select></td> <td> {if $reasons} <select name="returns[{$oi.cart_id}][reason]"> {foreach from=$reasons item="reason" key="reason_id"} <option value="{$reason_id}">{$reason.property}</option> {/foreach} </select> {/if}</td> </tr> {/foreach} </table> {include file="common/subheader2.tpl" title=__("comments")} <textarea name="comment" cols="55" rows="4" class="input-textarea-long"></textarea> <div class="buttons-container buttons-bg"> {include file="buttons/button.tpl" but_text=__("rma_return") but_name="dispatch[rma.add_return]" but_meta="cm-process-items" but_role="button_main"} </div> </form> {/capture} {include file="common/mainbox.tpl" title=__("return_registration") content=$smarty.capture.mainbox}
Back to File Manager