Cancel order when invoice paid Magento? - magento

As I am beginner magento developer unable to create the credit memo as paypal return that invoice already refunded.
How can i create memo and change invoice status, also change order status to cancel.

When a payment is cancelled in Paypal, it will create a credit memo automatically.
The status assigned to a refund order within Magento is usually "closed".

Related

Magento Order gets closed when doing a partial refund with adjustment fee in it

I have an issue in magento enterprise as follows
Place an order with 3 items in it
Redeem some money from the
customer's store credit when placing the order. For example if 200
is the total order amount, 50 should be paid from the customer's
store credit and 150 should be paid as normal payment.
Ship the order via backend
Create credit memo for any 1 item in the
order.
Add 1 in the adjustment fee field in the credit memo form
Save the credit memo.
The credit memo is created successfully, but the order status becomes closed. Due to this I am not able to raise another credit memo next time If I need to refund any or the remaining items in the order. This issue happens only if customer has redeemed his store creid in the order amount.
Could somebody please help me on this?

Delayed payment after placing order

After placing order customer gets email with information about this order what includes payment method. If customer doesn't pay the order on the page where did he place it, the order still exists in customers acoount as pending or processing (due to payment method).
Where or what should I look to make link for payment for unpaid orders?
Or should they just "reorder" it?

magento statuses - pending, processing & credit card orders

I have a question regarding Magento Order statuses and credit card payments.
Orders paid by cheque or money Order
For Orders paid by cheque or money order, Magento starts status orders in "Pending",
then moves status to "Processing" when administrator Invoices order.
Orders paid by Credit card
For Orders paid by Credit Card, Credit Card Module starts orders in status "Processing"
Question
We want to extract orders via Magento API. To determine which orders to extract
we use the "sales_order.list" API method requesting only orders where status = "pending"
and then setting orders to status to "processing" via "sales_order.addComment" API method.
With Credit Card process setting order status to "Processing", we are no longer able to
identify unprocessed orders, by status alone.
Is it possible to add or re-purpose a status or add new status?
example:
Pending - order by cheque or money order
PendingCC - Processed by Credit Card
Processing - only set by our API
Did you try: Admin -> System -> Order Statuses
Then go to Admin -> System -> Config -> Payment Methods -> New order status

Product status changed after clicking "place order in magento

I hope someone can help me out.
I want : The product isn't taken out of stock until the payment transaction is complete.
Suppose I have one product and someone(customer) is checkout this product but before payment transaction process this product taken 'out of stock'.
I would try turning off the Magento stock management functionality (System->Configuration->Catalog->Inventory). Then you can write an extension that listens for the sales_order_invoice_save_after event and adjust stock quantities yourself. You'll also want to handle returns/credit memos using the same type of event observer code. Keep in mind, however, that if you get 2 orders for the same item and you only have 1 in stock you'll end up in a backorder scenario. As long as you're okay with that, this should work.

Magento Refund Table

Where can I find the refund tables in Magento?
I want to find out if a person has received refund for a certain product or not?
If no refund tables how magento track that?
Refunding an Order in Magento does not cause an actual payment refund. You must refund the payment on your own. Credit Memo is only a record used to track the refunds and to provide proper values in the reports. Check the below link so that you can get more info about the table relations.
http://www.magento-exchange.com/magento-database/magento-1-4-database-er-diagram-for-sales-credit-memo-tables/

Resources