[ADD] website_sale_aplicoop: online payment per group order

Members can now pay their eskaera at checkout, through the standard Odoo
payment machinery. Enabled per group order with a new `online_payment`
boolean, off by default: an order without it behaves exactly as before,
members save a draft and the cutoff cron confirms them in bulk.

The flow mirrors website_sale's: the checkout button becomes "Confirm and
pay", saving the cart redirects to a new /eskaera/<slug>/payment step that
renders `payment.form` from `sale`'s `_get_payment_values`, and the standard
/my/orders/<id>/transaction route takes it from there. This addon ships no
provider and configures none; the co-op publishes whichever it wants.

`website_sale`'s `_get_shop_payment_values` is deliberately not reused: it
runs `_get_shop_payment_errors`, which blocks on shippable products without a
delivery method — exactly an eskaera order, collected at the co-op with no
carrier. For the same reason the transaction route stays the portal one,
which does not call `_check_cart_is_ready_to_be_paid()`.

Payment confirms the order, which has three consequences handled here:

* `payment.transaction._check_amount_and_confirm_order` now confirms group
  orders with `from_orderpoint=True`, the way the cutoff cron already does.
  Without it a product with a broken replenishment route raises inside
  `_post_process`, and `/payment/status/poll` rolls back and re-raises: the
  member sees a payment error over a `done` transaction and the retry cron
  fails forever.
* `_confirm_linked_sale_orders` also sweeps the cycle's already confirmed
  orders into the picking batch, scoped by `pickup_date`. Its early return on
  "no drafts" ran before any batching, so a fully prepaid cycle produced no
  batch at all. `_cron_batch_paid_orders_of_closed_cycles` covers the same
  hole for cycles closed by hand.
* A duplicate-order guard answers 409 on save-order, add-to-cart and
  load-draft, and shows a notice on the shop, so a member whose order is
  already placed cannot build and pay for a second one.

The payment policy lives in the model rather than the controller: there are
three sale.order creation paths and two are live, so `_compute_require_payment`
and `_compute_prepayment_percent` are extended instead of patching five vals
dicts. Orders are also created under the group order's company, which is what
filters the payment providers.

Along the way: eskaera drafts were invisible in /my/orders. The portal rule is
`message_partner_ids child_of` and sale.order only subscribes the customer on
send or confirm, never on a draft create, so the `_prepare_orders_domain`
override that includes drafts never had any effect. Fixed with an explicit
`message_subscribe`.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
GitHub Copilot 2026-08-16 21:59:35 +02:00
parent a67181ab42
commit 6ba554c91b
21 changed files with 1993 additions and 37 deletions

View file

@ -214,6 +214,18 @@
<t t-call="website_sale_aplicoop.order_header">
<t t-set="header_class" t-value="'eskaera-order-header'" />
</t>
<!-- Paying confirms the order, so no draft is left to
reuse and nothing else would stop a second, also
payable, order for the same cycle. -->
<t t-if="placed_order">
<div class="alert alert-info d-flex flex-column flex-md-row gap-2 align-items-md-center" role="alert">
<div class="flex-grow-1">
<strong>You already placed an order for this cycle.</strong>
<span t-esc="placed_order.name" />
</div>
<a t-att-href="placed_order_url" class="btn btn-sm btn-outline-primary">View my order</a>
</div>
</t>
<div class="eskaera-order-header">
<!-- Name/value pairs: a description list, so assistive tech
announces each value with its label. The 4 → 2 → 1 column
@ -560,10 +572,13 @@
</div>
</div>
</t>
<t t-if="online_payment and not payment_available">
<div class="alert alert-warning" role="alert" t-esc="no_payment_method_message" />
</t>
<div class="checkout-actions d-grid gap-3" id="checkout-form-labels">
<button class="btn btn-success btn-lg" id="confirm-order-btn" t-attf-data-order-id="{{ group_order.id }}" t-att-data-confirmed-label="labels.get('order_saved_as_draft', 'Order saved as draft')" t-att-data-pickup-label="labels.get('pickup_day_label', 'Pickup Day')" t-att-aria-label="labels.get('save_order_as_draft', 'Save order as draft')" t-att-data-bs-title="labels.get('save_draft', 'Save Draft')" data-bs-toggle="tooltip">
<i class="fa fa-save" aria-hidden="true" t-translation="off" />
<span t-esc="labels.get('save_draft', 'Save Draft')" />
<button class="btn btn-success btn-lg" id="confirm-order-btn" t-attf-data-order-id="{{ group_order.id }}" t-att-data-confirmed-label="checkout_button['done_label']" t-att-data-pickup-label="labels.get('pickup_day_label', 'Pickup Day')" t-att-aria-label="checkout_button['hint']" t-att-data-bs-title="checkout_button['label']" t-att-data-tooltip-key="checkout_button['tooltip_key']" t-att-disabled="online_payment and not payment_available" data-bs-toggle="tooltip">
<i t-attf-class="fa {{ checkout_button['icon'] }}" aria-hidden="true" t-translation="off" />
<span t-esc="checkout_button['label']" />
</button>
<a t-attf-href="/eskaera/{{ group_order.slug }}" class="btn btn-outline-secondary btn-lg" aria-label="Back to cart page" title="Back to Cart" data-bs-toggle="tooltip">
<i class="fa fa-arrow-left" aria-hidden="true" t-translation="off" />
@ -618,6 +633,172 @@
</div>
</t>
</template>
<template id="eskaera_order_lines_summary" name="Placed Order Summary">
<!-- Server-side twin of eskaera_checkout_summary: from the payment
step on, the amounts shown must be the ones that will be
charged, so they come from the sale.order and not from the
localStorage cart. -->
<div class="checkout-summary-container" role="region" tabindex="0" aria-label="Order summary">
<table class="table table-hover checkout-summary-table">
<caption class="visually-hidden">Products in this order, with quantity, price and subtotal</caption>
<thead class="table-dark">
<tr>
<th scope="col" class="col-name">Product</th>
<th scope="col" class="col-qty text-center">Quantity</th>
<th scope="col" class="col-subtotal text-end">Subtotal</th>
</tr>
</thead>
<tbody>
<tr t-foreach="sale_order.order_line" t-as="line">
<td class="col-name" t-esc="line.name" />
<td class="col-qty text-center" t-esc="line.product_uom_qty" />
<td class="col-subtotal text-end">
<span t-field="line.price_total" t-options="{'widget': 'monetary', 'display_currency': sale_order.currency_id}" />
</td>
</tr>
</tbody>
</table>
<div class="checkout-total-section">
<div class="total-row">
<span class="total-label">Total</span>:
<span class="total-amount">
<span t-field="sale_order.amount_total" t-options="{'widget': 'monetary', 'display_currency': sale_order.currency_id}" />
</span>
</div>
</div>
</div>
</template>
<template id="eskaera_payment" name="Eskaera Payment">
<t t-call="website.layout">
<div id="wrap" class="eskaera-checkout-page oe_structure oe_empty" data-name="Eskaera Payment">
<div class="container mt-5">
<div class="row">
<div class="col-lg-10 offset-lg-1">
<div class="mb-4">
<t t-call="website_sale_aplicoop.order_header">
<t t-set="header_class" t-value="'checkout-header'" />
<t t-set="header_title">Pay Order: <t t-esc="group_order.name" />
</t>
</t>
</div>
<h4 class="summary-heading mb-3">Order Summary</h4>
<div class="mb-5">
<t t-call="website_sale_aplicoop.eskaera_order_lines_summary" />
</div>
<t t-if="pending_transaction">
<div class="alert alert-info" role="alert">
<h5 class="alert-heading">
<i class="fa fa-clock-o me-2" aria-hidden="true" t-translation="off" />
<span>Payment in progress</span>
</h5>
<p class="mb-1">We are still waiting for your payment to be confirmed. Please do not pay again.</p>
<p class="mb-0">
<span>Reference</span>:
<span t-esc="pending_transaction.reference" />
</p>
</div>
<div class="checkout-actions d-grid gap-3">
<a t-att-href="sale_order.get_portal_url()" class="btn btn-outline-secondary btn-lg">
<i class="fa fa-file-text-o" aria-hidden="true" t-translation="off" />
<span>View my order</span>
</a>
</div>
</t>
<t t-else="">
<h4 class="summary-heading mb-3">Payment Method</h4>
<!-- The whole provider UI is payment.form; this addon
configures no provider of its own. -->
<div id="payment_method" class="o_not_editable mb-4">
<t t-call="payment.form" />
</div>
<!-- Deliberately outside #o_payment_form: website_sale's
payment_form.js binds every
[name="o_payment_submit_button"] in the document, on
top of payment_form.js's own delegated handler inside
the form. A button inside would get both listeners and
one click would open two transactions. -->
<div class="checkout-actions d-grid gap-3">
<t t-call="payment.submit_button" />
<a t-attf-href="/eskaera/{{ group_order.slug }}/checkout" class="btn btn-outline-secondary btn-lg">
<i class="fa fa-arrow-left" aria-hidden="true" t-translation="off" />
<span>Back to Checkout</span>
</a>
</div>
</t>
</div>
</div>
</div>
</div>
</t>
</template>
<template id="eskaera_payment_confirmation" name="Eskaera Payment Confirmation">
<t t-call="website.layout">
<div id="wrap" class="eskaera-checkout-page oe_structure oe_empty" data-name="Eskaera Payment Confirmation" t-attf-data-clear-cart-order-id="{{ group_order.id }}">
<div class="container mt-5">
<div class="row">
<div class="col-lg-10 offset-lg-1">
<div class="mb-4">
<t t-call="website_sale_aplicoop.order_header">
<t t-set="header_class" t-value="'checkout-header'" />
<t t-set="header_title">Order Confirmed: <t t-esc="group_order.name" />
</t>
</t>
</div>
<!-- The browser lands here from /payment/status once
post-processing has run, but that is asynchronous, so
the page reports the order's actual state instead of
assuming it was confirmed. -->
<t t-if="is_paid">
<div class="alert alert-success" role="alert">
<h5 class="alert-heading">
<i class="fa fa-check-circle me-2" aria-hidden="true" t-translation="off" />
<span>Thank you, your order is confirmed</span>
</h5>
<p class="mb-0">
<span>Order</span>
<span t-esc="sale_order.name" />
</p>
</div>
</t>
<t t-else="">
<div class="alert alert-info" role="alert">
<h5 class="alert-heading">
<i class="fa fa-clock-o me-2" aria-hidden="true" t-translation="off" />
<span>Your payment is being processed</span>
</h5>
<p class="mb-0">Your order will be confirmed as soon as we receive the payment. You can follow it from your orders page.</p>
</div>
</t>
<t t-if="sale_order.pickup_slot_label">
<div class="order-info-card card border-0 shadow-sm mb-4">
<div class="card-body">
<dl class="info-pair mb-0">
<dt class="info-label">Pickup</dt>
<dd class="info-value" t-esc="sale_order.pickup_slot_label" />
</dl>
</div>
</div>
</t>
<h4 class="summary-heading mb-3">Order Summary</h4>
<div class="mb-5">
<t t-call="website_sale_aplicoop.eskaera_order_lines_summary" />
</div>
<div class="checkout-actions d-grid gap-3">
<a t-att-href="sale_order.get_portal_url()" class="btn btn-primary btn-lg">
<i class="fa fa-file-text-o" aria-hidden="true" t-translation="off" />
<span>View my order</span>
</a>
<a href="/eskaera" class="btn btn-outline-secondary btn-lg">
<i class="fa fa-arrow-left" aria-hidden="true" t-translation="off" />
<span>Back to Orders</span>
</a>
</div>
</div>
</div>
</div>
</div>
</t>
</template>
<template id="category_hierarchy_options" name="Category Hierarchy Options">
<t t-foreach="categories" t-as="cat">
<t t-set="padding_px" t-value="depth * 20" />