gplsek / fitmoostore

fitmostore
GNU General Public License v2.0
0 stars 0 forks source link

update cart view to match comp #13

Closed gplsek closed 10 years ago

jg77merten commented 10 years ago

===========CREATE CART============= POST http://fitmoostore.loc/fit_store/cart X-CSRF-Token: RBaBiV2RGBX5tMsikckT76NeJjQKA8bb11xuwC4Sm40 Cookie: SESSb22f1e1c07a26da425a441410bf4eb41=im7gsVJnO_43mYc9aNG3_TfK-wVLk7H8RP7vReS3cXE Content-Type: application/json {} -- response -- {"uid":"4","status":"cart","type":"commerce_order","order_id":"7","order_number":"7","revision_id":"48","mail":"mail1@ddd.com","data":[],"created":1393841059,"changed":1393841059,"hostname":"127.0.0.1","log":"Created as a shopping cart order.","revision_timestamp":1393841059,"revision_hostname":"127.0.0.1","revision_uid":"4","commerce_order_total":{"amount":0,"currency_code":"USD","data":{"components":[{"name":"base_price","price":{"amount":0,"currency_code":"USD","data":[]},"included":true}]}},"commerce_order_total_formatted":"$0.00","commerce_line_items":[],"commerce_customer_billing":null,"commerce_customer_shipping":null,"commerce_discounts":[]}

jg77merten commented 10 years ago

==========NEW ADD LINE-ITEM/CREATE CART===== POST http://fitmoostore.loc/fit_store/line-item Cookie: SESSb22f1e1c07a26da425a441410bf4eb41=n5t2MmtsHlleWgU29FZCMjJJMnzgScLReE_0zKEInz0 X-CSRF-Token: Gye1W-IKdky8rBCp4gW_PGzGwmAaVbg4RY6HD43EtIw Content-Type: application/json { "type":"product", "commerce_product":"13", "quantity":"4" } ----response---

{"type":"product","order_id":"20","line_item_id":"47","line_item_label":"a-1234","quantity":"4","created":1395059256,"changed":1395059256,"data":[],"commerce_product":"13","commerce_display_path":"","commerce_unit_price":{"amount":"20","currency_code":"USD","data":{"components":[{"name":"base_price","price":{"amount":"20","currency_code":"USD","data":{"components":[]}},"included":true}]}},"commerce_total":{"amount":80,"currency_code":"USD","data":{"components":[{"name":"base_price","price":{"amount":80,"currency_code":"USD","data":{"components":[]}},"included":true}]}},"line_item_title":"Workout Shirt","commerce_unit_price_formatted":"$0.20","commerce_total_formatted":"$0.80"} [15:34:09] Max Klimchuk: If cart NOT existet it CREATES (order id you can see in response) [15:34:25] Max Klimchuk: if cart exist - line item adds to current_cart

jg77merten commented 10 years ago

=================VIEW LINE ITEMS=============== (SHIPPING LINE_ITEM HERE TOO) GET http://fitmoostore.loc/fit_store/line-item/(%(int)ITEM_ID) X-CSRF-Token: RBaBiV2RGBX5tMsikckT76NeJjQKA8bb11xuwC4Sm40 Cookie: SESSb22f1e1c07a26da425a441410bf4eb41=im7gsVJnO_43mYc9aNG3_TfK-wVLk7H8RP7vReS3cXE --RESPONSE--

{"12":{"line_item_id":"12","order_id":"7","type":"shipping","line_item_label":"express","quantity":"1.00","created":"1393869592","changed":"1393869592","data":{"shipping_service":{"name":"express","base":"express","display_title":"express","description":"","shipping_method":"flat_rate","rules_component":true,"price_component":"flat_rate_express","weight":0,"callbacks":{"rate":"commerce_flat_rate_service_rate_order","details_form":"express_details_form","details_form_validate":"express_details_form_validate","details_form_submit":"express_details_form_submit"},"module":"commerce_flat_rate","title":"Express","base_rate":{"amount":"1000","currency_code":"USD","data":[]},"data":[],"admin_list":true}},"commerce_unit_price":{"amount":"1000","currency_code":"USD","data":{"components":[{"name":"flat_rate_express","price":{"amount":"1000","currency_code":"USD","data":[]},"included":true}]}},"commerce_total":{"amount":"1000","currency_code":"USD","data":{"components":[{"name":"flat_rate_express","price":{"amount":1000,"currency_code":"USD","data":[]},"included":true}]}},"commerce_shipping_service":"express","rdf_mapping":[],"line_item_title":"express","commerce_unit_price_formatted":"$10.00","commerce_total_formatted":"$10.00"},"10":{"line_item_id":"10","order_id":"7","type":"product","line_item_label":"ws-13_edited","quantity":"2.00","created":"1393843484","changed":"1393869592","data":[],"commerce_unit_price":{"amount":"20","currency_code":"USD","data":{"components":[{"name":"base_price","price":{"amount":"20","currency_code":"USD","data":{"components":[]}},"included":true}]}},"commerce_total":{"amount":"40","currency_code":"USD","data":{"components":[{"name":"base_price","price":{"amount":40,"currency_code":"USD","data":{"components":[]}},"included":true}]}},"commerce_product":"13","commerce_display_path":"","rdf_mapping":[],"line_item_title":"Workout Shirt","commerce_unit_price_formatted":"$0.20","commerce_total_formatted":"$0.40","commerce_product_entities":{"13":{"revision_id":"27","sku":"ws-13_edited","title":"Workout Shirt","revision_uid":"4","status":"1","log":"","revision_timestamp":"1393835431","data":false,"product_id":"13","type":"event","language":"","uid":"4","created":"1393324299","changed":"1393835431","commerce_price":{"amount":"20","currency_code":"USD","data":{"components":[]}},"field_date":null,"field_location":null,"commerce_stock":"20.00","field_description":"test","field_fitmooid":null,"rdf_mapping":[],"attribute_fields":[],"commerce_price_formatted":"$0.20"}}}}

jg77merten commented 10 years ago

============REMOVE LINE ITEM============= DELETE http://fitmoostore.loc/fit_store/line-item/12 X-CSRF-Token: RBaBiV2RGBX5tMsikckT76NeJjQKA8bb11xuwC4Sm40 Cookie: SESSb22f1e1c07a26da425a441410bf4eb41=im7gsVJnO_43mYc9aNG3_TfK-wVLk7H8RP7vReS3cXE -- response -- null

jg77merten commented 10 years ago

============UPDATE LINE ITEM============= PUT http://fitmoostore.loc/fit_store/line-item/10 X-CSRF-Token: RBaBiV2RGBX5tMsikckT76NeJjQKA8bb11xuwC4Sm40 Cookie: SESSb22f1e1c07a26da425a441410bf4eb41=im7gsVJnO_43mYc9aNG3_TfK-wVLk7H8RP7vReS3cXE Content-Type: application/json { "quantity":"5" } -- response -- {"line_item_id":"10","order_id":"7","type":"product","line_item_label":"ws-13_edited","quantity":"5","created":"1393843484","changed":1393873388,"data":[],"commerce_unit_price":{"amount":"20","currency_code":"USD","data":{"components":[{"name":"base_price","price":{"amount":"20","currency_code":"USD","data":{"components":[]}},"included":true}]}},"commerce_total":{"amount":100,"currency_code":"USD","data":{"components":[{"name":"base_price","price":{"amount":100,"currency_code":"USD","data":{"components":[]}},"included":true}]}},"commerce_product":"13","commerce_display_path":"","rdf_mapping":[],"line_item_title":"Workout Shirt","commerce_unit_price_formatted":"$0.20","commerce_total_formatted":"$1.00"}