Skip to content

Fulfillment service

cordoval edited this page Nov 21, 2011 · 3 revisions

probably have a manager that works with factories of fulfillment services 01:57:27 AM read over the fulfillment section and let me know if you have any questions

the fulfillment needs to be told a product needs to be fulfilled, track the state of the fulfillment, and return the state of the fulfillment

on the simplest level the controller would be seeing which products need to be fulfilled and marking them fulfilled

simplest fulfillment, just have two states, fulfilled and processing

http://publib.boulder.ibm.com/infocenter/wchelp/v6r0m0/index.jsp?topic=%2Fcom.ibm.commerce.api.doc%2Foverview-summary.html

https://developer.amazonservices.com/doc/fba/outbound/v20101001/php.html

iampersistent: class FulfilmentStates { $states = array( 'process'=>array( 'name' => 'Process', 'description' => 'needs to be fulfilled', ), 'fulfilled' => array(

); ); [1:06:21 AM PET] iampersistent: 'fufilled' => array( 'name )