Sha256: 34fe82257d94fe78f6ee935a47ef9d381b8775e519e2f548a0f404689f3cf301

Contents?: true

Size: 1.46 KB

Versions: 14

Compression:

Stored size: 1.46 KB

Contents

.panel.panel-default
  .panel-body
    %h2 Admin: Complete Refund

    = simple_form_for order, (EffectiveOrders.simple_form_options || {}).merge(url: effective_orders.refund_order_path(order), method: :post) do |f|
      = hidden_field_tag(:purchased_url, purchased_url)
      = hidden_field_tag(:declined_url, declined_url)
      = f.input :payment_provider,
        as: :effective_select,
        collection: (EffectiveOrders.payment_providers + EffectiveOrders.other_payment_providers).sort,
        required: true

      = f.input :payment_card,
        label: 'Payment card type, cheque or transaction number',
        placeholder: 'visa',
        hint: 'Full credit card numbers should not be entered here, or anywhere.'

      = f.input :payment,
        as: :text,
        label: 'Additional details',
        input_html: { value: f.object.payment.kind_of?(Hash) ? f.object.payment[:details] : f.object.payment.presence }

      = f.input :send_mark_as_paid_email_to_buyer,
        as: :boolean,
        label: 'Yes, send an refund receipt email to the buyer.',
        input_html: { checked: (f.object.send_mark_as_paid_email_to_buyer.nil? ? EffectiveOrders.mailer[:send_order_receipts_when_mark_as_paid] : f.object.send_mark_as_paid_email_to_buyer?) }

      = f.input :note_to_buyer, hint: 'This is displayed to the buyer on all order receipts.'

      .text-right
        = f.submit order_checkout_label(:refund), class: 'btn btn-primary', data: { disable_with: 'Continuing...' }

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
effective_orders-3.2.3 app/views/effective/orders/refund/_form.html.haml
effective_orders-3.2.2 app/views/effective/orders/refund/_form.html.haml
effective_orders-3.2.1 app/views/effective/orders/refund/_form.html.haml
effective_orders-3.2.0 app/views/effective/orders/refund/_form.html.haml
effective_orders-3.1.7 app/views/effective/orders/refund/_form.html.haml
effective_orders-3.1.6 app/views/effective/orders/refund/_form.html.haml
effective_orders-3.1.4 app/views/effective/orders/refund/_form.html.haml
effective_orders-3.1.3 app/views/effective/orders/refund/_form.html.haml
effective_orders-3.1.0 app/views/effective/orders/refund/_form.html.haml
effective_orders-3.0.4 app/views/effective/orders/refund/_form.html.haml
effective_orders-3.0.3 app/views/effective/orders/refund/_form.html.haml
effective_orders-3.0.2 app/views/effective/orders/refund/_form.html.haml
effective_orders-3.0.1 app/views/effective/orders/refund/_form.html.haml
effective_orders-3.0.0 app/views/effective/orders/refund/_form.html.haml