Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Method 1: Convert order manually (The order will convert instantly after you click the button)

    Image RemovedImage Added


  • Method 2: Put the order back into the queue for re-convert (The order will be putted back to the queue and wait for the conversion. Please make sure that the consumer is running before do this action)

    Image RemovedImage Added

3. Stop and start the convert order consumer

The convert order consumer will be triggered by cron or manually, in case the cron does not trigger the consumer, you have to start it manually from the command line.

Action needed:

  1. Run the below commands at the Magento Root directory

    Code Block
    pgrep -f 'magestore_pos_process_order' | xargs kill -9
    php bin/magento queue:consumers:start magestore_pos_process_order.convert.consumer &

  2. Put the order back into the queue for re-convert

...