ok
Direktori : /proc/self/root/home2/selectio/www/bharath/application/views/dashboard/refund/ |
Current File : //proc/self/root/home2/selectio/www/bharath/application/views/dashboard/refund/refund.php |
<?php defined('BASEPATH') or exit('No direct script access allowed'); ?> <div class="row support-admin"> <div class="col-sm-12"> <?php $this->load->view('admin/includes/_messages'); ?> </div> <div class="col-sm-12"> <div class="box box-primary"> <div class="box-header with-border"> <div class="left"> <h3 class="box-title"><?= trans("refund"); ?></h3> </div> </div> <div class="box-body"> <div class="col-12"> <div class="ticket-container"> <div class="new-ticket-content new-ticket-content-reply"> <div class="ticket-header"> <p> <strong><?= trans("product"); ?>: <a href="<?= generate_dash_url("sale") . "/" . $refund_request->order_number; ?>" target="_blank"> #<?= $refund_request->order_number; ?> - <?= html_escape($product->product_title); ?> </a> </strong> </p> <div class="row row-ticket-details"> <div class="col-xs-4 col-md-2 m-b-5"> <strong><?= trans("status"); ?></strong> <?php if ($refund_request->status == 1): ?> <label class="label label-success"><?php echo trans("approved"); ?></label> <?php elseif ($refund_request->status == 2): ?> <label class="label label-danger"><?php echo trans("declined"); ?></label> <?php else: ?> <label class="label label-default"><?php echo trans("order_processing"); ?></label> <?php endif; ?> </div> <div class="col-xs-4 col-md-2 m-b-5"> <strong><?= trans("total"); ?></strong> <span><?php echo price_formatted($product->product_total_price, $product->product_currency); ?></span> </div> <div class="col-xs-4 col-md-2 m-b-5"> <strong><?= trans("buyer"); ?></strong> <?php $buyer = get_user($product->buyer_id); if (!empty($buyer)): ?> <a href="<?php echo generate_profile_url($buyer->slug); ?>" target="_blank" class="font-600"><?php echo html_escape($buyer->username); ?></a> <?php endif; ?> </div> <div class="col-xs-4 col-md-2 m-b-5"> <strong><?= trans("last_update"); ?></strong> <span><?= time_ago($refund_request->updated_at); ?></span> </div> <div class="col-xs-4 col-md-2 m-b-5"> <strong><?= trans("date"); ?></strong> <span><?= formatted_date($refund_request->created_at); ?></span> </div> </div> </div> </div> <div class="ticket-content"> <div class="row"> <div class="col-sm-12"> <ul class="list-unstyled"> <?php if (!empty($messages)): foreach ($messages as $message): $user = get_user($message->user_id); if (!empty($user)):?> <li class="media"> <div class="left"> <img class="img-profile" src="<?= get_user_avatar($user) ?>" alt=""> </div> <div class="right"> <div class="media-body"> <h5 class="title m-t-0 mb-3"> <a href="<?= generate_profile_url($user->slug) ?>" class="font-color" target="_blank"><?= get_shop_name($user); ?></a> </h5> <span class="date text-right"><?= time_ago($message->created_at); ?></span> <div class="message"> <?= $message->message; ?> </div> </div> </div> </li> <?php endif; endforeach; endif; ?> </ul> </div> <?php if ($refund_request->status == 0): ?> <div class="col-sm-12"> <?php echo form_open('order_controller/add_refund_message'); ?> <li class="media"> <input type="hidden" name="id" value="<?= $refund_request->id; ?>"> <img class="img-profile" src="<?= IMG_BASE64_1x1; ?>"> <div class="media-body refund-media-body text-right"> <div class="form-group"> <textarea name="message" class="form-control form-textarea" required></textarea> </div> <div class="form-group"> <button type="submit" class="btn btn-md btn-primary"><?= trans("submit"); ?></button> </div> </div> </li> <?php echo form_close(); ?> </div> <?php endif; ?> <?php if ($refund_request->status == 0): ?> <div class="col-sm-12 text-center"> <?php echo form_open('dashboard_controller/approve_decline_refund'); ?> <input type="hidden" name="id" value="<?= $refund_request->id; ?>"> <button type="submit" name="submit" value="1" class="btn btn-lg btn-success"><i class="fa fa-check"></i> <?= trans("approve_refund"); ?></button> <button type="submit" name="submit" value="0" class="btn btn-lg btn-danger"><i class="fa fa-ban"></i> <?= trans("decline"); ?></button> <?php echo form_close(); ?> </div> <?php endif; ?> </div> </div> </div> </div> </div> </div> </div> </div> <style> .support-admin .ticket-content .media .media-body .message { font-size: 14px !important; } </style>