Sha256: 55a2e8d3fab112b19136c2c24563b2198eb774560343597bfd42d3ba4e378bb4

Contents?: true

Size: 1.11 KB

Versions: 20

Compression:

Stored size: 1.11 KB

Contents

.card
  .card-body
    %h2 Admin: Mark as Paid

    = effective_form_with(model: order, url: effective_orders.mark_as_paid_order_path(order), method: :post) do |f|
      = f.date_field :purchased_at, required: true

      = f.select :payment_provider, EffectiveOrders.payment_providers, required: true

      = f.text_field :payment_card,
        label: 'Payment card type, cheque or transaction number',
        hint: 'Do not enter credit card numbers here, or anywhere.'

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

      = f.check_box :send_mark_as_paid_email_to_buyer,
        label: 'Yes, send a 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.text_area :note_to_buyer, hint: 'This message will be displayed on the receipt.'

      = f.submit order_checkout_label(:mark_as_paid), center: true

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
effective_orders-5.1.7 app/views/effective/orders/mark_as_paid/_form.html.haml
effective_orders-5.1.6 app/views/effective/orders/mark_as_paid/_form.html.haml
effective_orders-5.1.5 app/views/effective/orders/mark_as_paid/_form.html.haml
effective_orders-5.1.4 app/views/effective/orders/mark_as_paid/_form.html.haml
effective_orders-5.1.3 app/views/effective/orders/mark_as_paid/_form.html.haml
effective_orders-5.1.2 app/views/effective/orders/mark_as_paid/_form.html.haml
effective_orders-5.1.1 app/views/effective/orders/mark_as_paid/_form.html.haml
effective_orders-5.1.0 app/views/effective/orders/mark_as_paid/_form.html.haml
effective_orders-5.0.5 app/views/effective/orders/mark_as_paid/_form.html.haml
effective_orders-5.0.4 app/views/effective/orders/mark_as_paid/_form.html.haml
effective_orders-5.0.3 app/views/effective/orders/mark_as_paid/_form.html.haml
effective_orders-5.0.2 app/views/effective/orders/mark_as_paid/_form.html.haml
effective_orders-5.0.1 app/views/effective/orders/mark_as_paid/_form.html.haml
effective_orders-4.6.3 app/views/effective/orders/mark_as_paid/_form.html.haml
effective_orders-4.6.2 app/views/effective/orders/mark_as_paid/_form.html.haml
effective_orders-4.6.1 app/views/effective/orders/mark_as_paid/_form.html.haml
effective_orders-5.0.0 app/views/effective/orders/mark_as_paid/_form.html.haml
effective_orders-4.6.0 app/views/effective/orders/mark_as_paid/_form.html.haml
effective_orders-4.5.12 app/views/effective/orders/mark_as_paid/_form.html.haml
effective_orders-4.5.11 app/views/effective/orders/mark_as_paid/_form.html.haml