Refunding an order response: "Arbitrary refund not allowed"

Aperta
#1,232 2 commenti 0 reazioni 0 assegnatari Vedi su GitHub

Nessuno ha ancora preso questa issue.

Valutazione

Difficoltà
4/5
Tempo stimato
3-5 giorni
Idoneità per principianti
25/100
Tipo di issue
Bug
Chiarezza
Da chiarire
Stato di attività
Ferma
Stack tecnologico
ruby
Ambito
api

Direzione di ricerca

Inizia riproducendo il problema sugli endpoint orders/{order_id}/refunds/calculate e orders/{order_id}/refunds usando un pagamento reale, anziché la modalità di test. Confronta il rimborso calcolato e gli importi delle transazioni inviati con il payload dell’issue e analizza l’implementazione dei rimborsi di shopify_api 21.4.1. Il lavoro è completato quando la causa è stata identificata e un fix verificato o una limitazione upstream documentata spiega se è possibile creare l’aggiustamento e il rimborso.

Scritto dal modello di indicizzazione a partire dal testo della issue.

Descrizione

Issue summary

We are refunding an order but the item being refunded has return shipping cost (a variable we use on our side), so we are subtracting that from the amount.
This is failing on a productive shop, but if we use test mode or bogus payment method the error wont appear and the refund will be created.
In the tests environments the refund is created with an order_adjustment. In the other hand when we try refunding in productive shops neither the refund nor the order_adjustment are created.

EXAMPLE:

return_shipping_cost_cents = 1 USD
maximum_refundable = 20 USD
amount = 19 USD
  • shopify_api version: 21.4.1
  • Ruby version: 3.0.6p216
  • Operating system: Debian GNU/Linux 11 (bullseye)

Expected behavior

Shopify should create the adjustment to the order and refund the amount.

Actual behavior

The error message: {"errors"=>{"base"=>["Arbitrary refund not allowed"]}}

Steps to reproduce the problem

  1. Get order_id and line_item_id from an order with a real payment (not a test mode payment)
  2. Call to the /orders/#{order_id}/refunds/calculate endpoint (POST)
    Sample payload:
{
"refund_line_items"=>[
  {
    "line_item_id"=>"11922901111117",
    "quantity"=>1,
    "restock_type"=>"no_restock"
  }
],
"shipping"=>{
  "full_refund"=>false
}
}
  1. Create a payload to be refunded with the amount (amount - return_shipping_cost_cents)
    Sample payload refunds endpoint:
return_shipping_cost_cents = 6,95
{
  "shipping": {
    "amount": "0.00",
    "tax": "0.00",
    "maximum_refundable": "0.00"
  },
  "duties": [],
  "total_duties_set": {
    "shop_money": {
      "amount": "0.00",
      "currency_code": "USD"
    },
    "presentment_money": {
      "amount": "0.00",
      "currency_code": "USD"
    }
  },
  "return": null,
  "refund_line_items":
  [
    {
      "quantity": 1,
      "line_item_id": 11922901111117,
      "location_id": null,
      "restock_type": "no_restock",
      "price": "62.97",
      "subtotal": "62.97",
      "total_tax": "4.25",
      "discounted_price": "62.97",
      "discounted_total_price": "62.97",
      "total_cart_discount_amount": "0.00"
    }
  ],
  "transactions": 
  [
    {
      "order_id": 4786111111837,
      "kind": "refund",
      "gateway": "shopify_payments",
      "parent_id": 6017111111269,
      "amount": 60.27,
      "currency": "USD",
      "maximum_refundable": "67.22"
    }
  ],
  "currency": "USD",
  "note": "33HxxxYvLq"
}
  1. Call orders/#{order_id}/refunds:
  2. Response: => {"errors"=>{"base"=>["Arbitrary refund not allowed"]}}
Lingua principale
Ruby
Stelle
1.1k
Fork
484
Metriche di merge delle PR
Nessuna PR unita negli ultimi 30g

Guida per i contributori

Apri la guida per i contributori

Come iniziare

  1. Leggi tutta la issue e poi la guida ai contributi del progetto.
  2. Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
  3. Fai un fork del repository e lavora su un branch.
  4. Apri una pull request che faccia riferimento al numero della issue.

Altre issue di Shopify/shopify-api-ruby

Tutte le issue di Shopify/shopify-api-ruby

Issue simili

Altre issue su Ruby

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.