Authored by wangshijie

add ticket interface

@@ -442,4 +442,105 @@ code为200即为成功,否则是失败。 @@ -442,4 +442,105 @@ code为200即为成功,否则是失败。
442 "md5":"c1d725306fb09dcbf504776d276521cb", 442 "md5":"c1d725306fb09dcbf504776d276521cb",
443 "message":"ok" 443 "message":"ok"
444 } 444 }
  445 +```
  446 +## 6、虚拟购物车电子票立即购买接口 ##
  447 +#### 说明
  448 +虚拟购物车电子票立即购买(method=app.Shopping.ticket)
  449 +#### 请求参数
  450 +| 参数名称 | 参数类型 | 可否为空 | 示例 | 默认值 | 备注 |
  451 +|:-------| -----:|-----:|-----:|-----:|----:|
  452 +|uid|int|否|3236556|0|用户id|
  453 +|product_sku|int|否|3236556|0|电子票sku|
  454 +|use_yoho_coin|double|否|20|0|用户购买电子票使用的yoho币|
  455 +
  456 +### 响应
  457 +code为200即为成功,否则是失败。
  458 +响应JSON格式如下所示:
  459 +
  460 +```json
  461 +{
  462 + "alg":"SALT_MD5",
  463 + "code":200,
  464 + "data":{
  465 + "goods_list": [
  466 + {
  467 + "attribute": "3",
  468 + "brand_id": "730",
  469 + "buy_limit": 0,
  470 + "buy_number": "1",
  471 + "can_cod_pay": "Y",
  472 + "cn_alphabet": "XiangDuiLunXiaJiXinKuanFuGuHeYeBianXiuChunSeLianYiQunYuanChuangSheJiChouZhouYuanLingChangQunFD232",
  473 + "color_id": "11",
  474 + "color_name": "红色",
  475 + "expect_arrival_time": "",
  476 + "fit_promotions": [],
  477 + "get_yoho_coin": "0",
  478 + "goods_id": "293003",
  479 + "goods_images": "http://img11.static.yhbimg.com/goodsimg/2015/07/16/08/01b0816a39106c40c054b45980d18b3ff1.jpg?imageMogr2/thumbnail/{width}x{height}/extent/{width}x{height}/background/d2hpdGU=/position/center/quality/80",
  480 + "goods_type": "ordinary",
  481 + "is_advance": "N",
  482 + "is_jit": "N",
  483 + "is_limited": "N",
  484 + "is_outlets": "B",
  485 + "is_special": "N",
  486 + "last_price": "229.0",
  487 + "last_vip_price": 229,
  488 + "market_price": 479,
  489 + "max_sort_id": "4",
  490 + "middle_sort_id": "31",
  491 + "off_shelves": 0,
  492 + "product_id": 221541,
  493 + "product_name": "相对纶 原创设计抽皱圆领长裙",
  494 + "product_skc": "247803",
  495 + "product_skn": "51125575",
  496 + "product_sku": "803801",
  497 + "promotion_flag": "101",
  498 + "promotion_id": "0",
  499 + "real_price": 229,
  500 + "real_vip_price": 0,
  501 + "sale_price": 0,
  502 + "sales_price": 229,
  503 + "selected": "Y",
  504 + "shop_id": 0,
  505 + "shopping_cart_goods_id": "0",
  506 + "shopping_cart_id": "0",
  507 + "size_id": "207",
  508 + "size_name": "S",
  509 + "small_sort_id": "134",
  510 + "storage_number": "10",
  511 + "str_subtotal": "¥229.00",
  512 + "subtotal": 229,
  513 + "supplier_id": 0,
  514 + "vip1_price": "0.00",
  515 + "vip2_price": "0.00",
  516 + "vip3_price": "0.00",
  517 + "vip_discount": 1,
  518 + "vip_discount_money": 0,
  519 + "vip_discount_type": "3",
  520 + "vip_price": 0,
  521 + "yoho_coin_num": "0"
  522 + }
  523 + ],
  524 + "shopping_cart_data": {
  525 + "goods_count": 1,
  526 + "last_order_amount": 129,
  527 + "order_amount": 229,
  528 + "promotion_formula_list": [
  529 + {
  530 + "promotion": "商品金额",
  531 + "promotion_amount": "¥229.00"
  532 + },
  533 + {
  534 + "promotion": "YOHO币",
  535 + "promotion_amount": "-¥100.00"
  536 + }
  537 + ],
  538 + "use_yoho_coin": 100
  539 + },
  540 + "uid": 8041834,
  541 + "yoho_coin": 171
  542 + },
  543 + "md5":"c1d725306fb09dcbf504776d276521cb",
  544 + "message":"ok"
  545 +}
445 ``` 546 ```