Announcement

Collapse
No announcement yet.

Updating order status from pending to processing

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Updating order status from pending to processing

    I'm programmatically batching orders and exporting them for order fulfillment.

    I want to programmatically Update the status from pending to processing.
    It looks like this is the API function for that.

    assign l.order:processed = 1
    do Order_Update_Processed(l.order)

    1. Is this the API function I should use?

    When I receive Shipping Confirmation from the fulfillment house I want to update the status and import the tracking data.

    2. Where should I look for those API functions? (Is there an example?)
    Ray Yates
    "If I have seen further, it is by standing on the shoulders of giants."
    --- Sir Isaac Newton

    #2
    Re: Updating order status from pending to processing

    1. Order_Update_Processed does multiple things. It creates a shipment for each item, captures legacy authorization, and flips the status to processed. It IS a legacy function, meaning there is a newer technique. Maybe someone at Miva can chime in.

    2. It looks as though OrderShipment_Update_Status_LowLevel might do what you want.
    Gordon Currie
    Phosphor Media - "Your Success is our Business"

    Improve Your Customer Service | Get MORE Customers | Edit Any Document Easily | Free Modules | Follow Us on Facebook
    phosphormedia.com

    Comment


      #3
      Re: Updating order status from pending to processing

      Thanks Gordon.

      I'm almost at this point in the project and will let you know if it works.
      Ray Yates
      "If I have seen further, it is by standing on the shoulders of giants."
      --- Sir Isaac Newton

      Comment

      Working...
      X