获取单笔交易的详细信息
1. 只有单笔订单的情况下Trade数据结构中才包含商品相关的信息
2. 获取到的Order中的payment字段在单笔子订单时包含物流费用,多笔子订单时不包含物流费用
3. 获取红包金额使用字段:tmall_coupon_fee(天猫商家订单使用的红包金额)
4. 请按需获取字段,减少TOP系统的压力
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
trade | Trade | 交易主订单信息 | |
|
1 2 3 4 5 6 7 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); TradeFullinfoGetRequest req = new TradeFullinfoGetRequest(); req.setFields( "tid,type,status,payment,orders,promotion_details" ); req.setTid(123456789L); req.setIncludeOaid( "include_oaid" ); TradeFullinfoGetResponse rsp = client.execute(req, sessionKey); System.out.println(rsp.getBody()); |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 | < trade_fullinfo_get_response > < trade > < buyer_open_uid >AAHk5d-EAAeGwJedwSFu0XXX</ buyer_open_uid > < title >麦包包</ title > < type >fixed(一口价)</ type > < created >2000-01-01 00:00:00</ created > < sid >2231958349</ sid > < tid >2231958349</ tid > < acookie_id >1a11a0987628772c002ec7d0eec2a352</ acookie_id > < seller_rate >true</ seller_rate > < buyer_rate >true</ buyer_rate > < status >TRADE_NO_CREATE_PAY</ status > < payment >200.07</ payment > < discount_fee >200.07</ discount_fee > < adjust_fee >200.07</ adjust_fee > < post_fee >200.07</ post_fee > < total_fee >200.07</ total_fee > < pay_time >2000-01-01 00:00:00</ pay_time > < end_time >2000-01-01 00:00:00</ end_time > < modified >2000-01-01 00:00:00</ modified > < consign_time >2000-01-01 00:00:00</ consign_time > < received_payment >200.07</ received_payment > < commission_fee >200.07</ commission_fee > < buyer_memo >上衣要大一号</ buyer_memo > < seller_memo >好的</ seller_memo > < buyer_area >浙江省杭州市</ buyer_area > < alipay_no >2009112081173831</ alipay_no > < buyer_message >要送的礼物的,不要忘记的哦</ buyer_message > < num_iid >3424234</ num_iid > < price >200.07</ price > < cod_fee >12.07</ cod_fee > < cod_status >EW_CREATED(订单已创建)</ cod_status > < buyer_cod_fee >12.07</ buyer_cod_fee > < seller_cod_fee >12.07</ seller_cod_fee > < express_agency_fee >212.07</ express_agency_fee > < shipping_type >free</ shipping_type > < num >1</ num > < point_fee >0</ point_fee > < real_point_fee >0</ real_point_fee > < buyer_obtain_point_fee >0</ buyer_obtain_point_fee > < buyer_alipay_no >tbtest1063@taobaotest.com</ buyer_alipay_no > < receiver_name >**东方</ receiver_name > < receiver_country >中国</ receiver_country > < receiver_state >浙江省</ receiver_state > < receiver_city >杭州市</ receiver_city > < receiver_district >西湖区</ receiver_district > < receiver_town >三墎镇</ receiver_town > < receiver_address >***淘宝城911号</ receiver_address > < receiver_zip >223700</ receiver_zip > < receiver_mobile >****1826</ receiver_mobile > < receiver_phone >****5372</ receiver_phone > < buyer_email >tbtest1064@taobaotest.com</ buyer_email > < seller_alipay_no >tbtest1063@taobaotest.com</ seller_alipay_no > < seller_mobile >13512501826</ seller_mobile > < seller_phone >13512501826</ seller_phone > < seller_name >我在测试</ seller_name > < seller_email >tbtest1063@taobaotest.com</ seller_email > < available_confirm_fee >200.07</ available_confirm_fee > < has_post_fee >true</ has_post_fee > < timeout_action_time >2000-01-01 00:00:00</ timeout_action_time > < snapshot_url >T1mURbXopZXXXe3rLI.1257513712679_snap</ snapshot_url > < trade_memo >这是一次成功的交易</ trade_memo > < promotion >hello world</ promotion > < is_3D >true</ is_3D > < is_lgtype >true</ is_lgtype > < is_brand_sale >true</ is_brand_sale > < is_force_wlb >true</ is_force_wlb > < buyer_flag >1</ buyer_flag > < seller_flag >1</ seller_flag > < credit_card_fee >30.5</ credit_card_fee > < step_trade_status >FRONT_NOPAID_FINAL_NOPAID</ step_trade_status > < step_paid_fee >525.70</ step_paid_fee > < eticket_ext >525.70</ eticket_ext > < mark_desc >该订单需要延长收货时间</ mark_desc > < has_yfx >true</ has_yfx > < yfx_fee >0.50</ yfx_fee > < yfx_id >135751716473138</ yfx_id > < yfx_type >taojinbi</ yfx_type > < send_time >2000-01-01</ send_time > < can_rate >true</ can_rate > < seller_can_rate >true</ seller_can_rate > < is_part_consign >true</ is_part_consign > < is_daixiao >true</ is_daixiao > < is_wt >true</ is_wt > < arrive_interval >1</ arrive_interval > < arrive_cut_time >16:00</ arrive_cut_time > < consign_interval >48</ consign_interval > < o2o >crm</ o2o > < o2o_guide_id >123456</ o2o_guide_id > < o2o_guide_name >西湖门店导购员1</ o2o_guide_name > < o2o_shop_id >123456</ o2o_shop_id > < o2o_shop_name >西湖门店</ o2o_shop_name > < o2o_delivery >inshop</ o2o_delivery > < o2o_out_trade_id >123456</ o2o_out_trade_id > < shop_code >demo</ shop_code > < hk_en_name >chenxiao</ hk_en_name > < hk_flight_no >GZ0022</ hk_flight_no > < hk_china_name >陈小</ hk_china_name > < hk_card_code >G0000000001</ hk_card_code > < hk_card_type >证件类型</ hk_card_type > < hk_flight_date >2014-12-01 15:50</ hk_flight_date > < hk_gender >M</ hk_gender > < hk_birthday >1988-01-12</ hk_birthday > < hk_pickup >某地点</ hk_pickup > < hk_pickup_id >3</ hk_pickup_id > < est_con_time >付款后30天内</ est_con_time > < orders > < order > < title >山寨版测试机器</ title > < price >200.07</ price > < num_iid >2342344</ num_iid > < sku_id >5937146</ sku_id > < outer_iid >152e442aefe88dd41cb0879232c0dcb0</ outer_iid > < outer_sku_id >81893848</ outer_sku_id > < refund_status >SUCCESS(退款成功)</ refund_status > < status >TRADE_NO_CREATE_PAY</ status > < oid >2231958349</ oid > < total_fee >200.07</ total_fee > < payment >200.07</ payment > < discount_fee >200.07</ discount_fee > < adjust_fee >1.01</ adjust_fee > < divide_order_fee >21.00</ divide_order_fee > < part_mjz_discount >21.00</ part_mjz_discount > < sku_properties_name >颜色:桔色;尺码:M</ sku_properties_name > < item_meal_id >2564854632</ item_meal_id > < item_meal_name >M8原装电池:便携支架:M8专用座充:莫凡保护袋</ item_meal_name > < num >1</ num > < snapshot_url >T1mURbXopZXXXe3rLI.1257513712679_snap</ snapshot_url > < timeout_action_time >2000-01-01 00:00:00</ timeout_action_time > < item_memo >这是商品备注</ item_memo > < buyer_rate >true</ buyer_rate > < seller_rate >true</ seller_rate > < refund_id >2231958349</ refund_id > < seller_type >B(商城商家)</ seller_type > < cid >123456</ cid > < is_oversold >true</ is_oversold > < end_time >2012-04-07 00:00:00</ end_time > < order_from >jhs</ order_from > < is_service_order >true</ is_service_order > < consign_time >2013-01-13 15:23:00</ consign_time > < shipping_type >post</ shipping_type > < logistics_company >顺风快递</ logistics_company > < invoice_no >05432465</ invoice_no > < bind_oid >23194074143138</ bind_oid > < is_daixiao >true</ is_daixiao > < ticket_outer_id >123456abcd</ ticket_outer_id > < ticket_expdate_key >100FFFFFF02374020000002001020304000A</ ticket_expdate_key > < is_www >true</ is_www > < store_code >南京QDHEWL-0004</ store_code > < tmser_spu_code >家装干支装服务</ tmser_spu_code > < sub_order_tax_fee >0</ sub_order_tax_fee > < sub_order_tax_rate >0</ sub_order_tax_rate > < et_ser_time >2015-04-15 13:00</ et_ser_time > < et_shop_name >测试预约门店地址</ et_shop_name > < et_verified_shop_name >测试核销门店地址</ et_verified_shop_name > < et_plate_number >浙A11111</ et_plate_number > < estimate_con_time >demo</ estimate_con_time > < bind_oids >193741211090019,193741211080019</ bind_oids > < zhengji_status >1</ zhengji_status > < md_qualification >true_免单原因</ md_qualification > < md_fee >999</ md_fee > < customization >{ "itemId": 123, "skuId": 123, "text": [ { "id": 44, "content": "home" } ], "pic": [ { "id": 44, "url": "sn" } ] ,"dingzhi":";pluginId:182;dingzhiId:157886;"}</ customization > < inv_type >6</ inv_type > < is_sh_ship >true</ is_sh_ship > < shipper >cn</ shipper > < f_type >jsd</ f_type > < f_status >分单完成</ f_status > < f_term >storeId</ f_term > < combo_id >1923423423</ combo_id > < order_attr >{"isFreeDownPayment":"true","backPayment":"3000.00","refActivityId":"312321312"}</ order_attr > < assembly_rela >123123</ assembly_rela > < assembly_price >123123123</ assembly_price > < assembly_item >123,456</ assembly_item > < sub_order_tax_promotion_fee >0</ sub_order_tax_promotion_fee > < down_payment >1000</ down_payment > < down_payment_ratio >1000</ down_payment_ratio > < month_payment >1000</ month_payment > < tail_payment >1000</ tail_payment > < installment_num >1000</ installment_num > < penalty >1000</ penalty > < service_fee >1000</ service_fee > < car_taker >1000</ car_taker > < car_taker_phone >1000</ car_taker_phone > < car_taker_id >1000</ car_taker_id > < car_store_code >1000</ car_store_code > < car_store_name >1000</ car_store_name > < out_unique_id >1000</ out_unique_id > < ws_bank_apply_no >1000</ ws_bank_apply_no > < oid_str >123</ oid_str > < fqg_num >12</ fqg_num > < is_fqg_s_fee >true</ is_fqg_s_fee > < tax_free >true</ tax_free > < tax_coupon_discount >0</ tax_coupon_discount > < nr_reduce_inv_fail >1</ nr_reduce_inv_fail > < nr_outer_iid >2983778187</ nr_outer_iid > < bind_oids_all_status >193741211090019,193741211080019</ bind_oids_all_status > < sort_info > < day_sort_val >100</ day_sort_val > < hour_sort_val >100</ hour_sort_val > </ sort_info > < o2o_guide_id >12345</ o2o_guide_id > < o2o_guide_name >abc</ o2o_guide_name > < o2o_shop_id >12345</ o2o_shop_id > < o2o_shop_name >abc</ o2o_shop_name > < biz_code >tmall.daogoubao.cloudstore</ biz_code > < cloud_store >1</ cloud_store > < hj_settle_no_commission >1</ hj_settle_no_commission > < order_taking >接单标记</ order_taking > < cloud_store_token >11111</ cloud_store_token > < cloud_store_bind_pos >12345</ cloud_store_bind_pos > < retail_store_id >123415</ retail_store_id > < out_item_id >12345</ out_item_id > < rt_omni_outer_sc_id >12345</ rt_omni_outer_sc_id > < rt_omni_sc_id >12345</ rt_omni_sc_id > < modify_address >1</ modify_address > < ti_modify_address_time >2019-02-18 11:32:53</ ti_modify_address_time > < credit_buy >3</ credit_buy > < s_tariff_fee >0</ s_tariff_fee > < timing_promise >tmallPromise</ timing_promise > < promise_service >tmallpromise.arrival.timing,tmallpromise.xx.timing</ promise_service > < es_date >格式yyyy-MM-dd</ es_date > < es_range >格式 hh:mm-hh:mm</ es_range > < os_date >格式yyyy-MM-dd</ os_date > < os_range >格式 hh:mm-hh:mm</ os_range > < cutoff_minutes >660</ cutoff_minutes > < es_time >1</ es_time > < delivery_time >2019-04-12 16:00:00</ delivery_time > < collect_time >2019-04-12 16:00:00</ collect_time > < dispatch_time >2019-04-12 16:00:00</ dispatch_time > < sign_time >2019-04-12 16:00:00</ sign_time > < promise_end_time >格式yyyy-MM-dd HH:mm</ promise_end_time > < os_activity_id >2734957495</ os_activity_id > < os_fg_item_id >58901376862</ os_fg_item_id > < os_gift_count >1</ os_gift_count > < os_sort_num >10</ os_sort_num > < propoint >10</ propoint > < is_kaola >true</ is_kaola > < special_refund_type >2</ special_refund_type > < extend_info >{"itemTag":"100"}</ extend_info > < is_devalue_fee >true</ is_devalue_fee > < brand_light_shop_store_id >123456</ brand_light_shop_store_id > < brand_light_shop_source >scode</ brand_light_shop_source > < service_order_type >1</ service_order_type > < service_outer_id >sunin_outid_324324324</ service_outer_id > < expand_card_expand_price_used_suborder >10.01</ expand_card_expand_price_used_suborder > < expand_card_basic_price_used_suborder >10.01</ expand_card_basic_price_used_suborder > < lijian >10.01</ lijian > < auto_flow >0/1</ auto_flow > < trade_fulfillment_type >1/2/3/4</ trade_fulfillment_type > < distribute_status >distribute</ distribute_status > < is_idle >1</ is_idle > < gift_mids >22331764490705</ gift_mids > < is_free_gift >true</ is_free_gift > < has_gift >true</ has_gift > < promise_collect_time >2019-04-12 16:00:00</ promise_collect_time > < is_force_dc >true</ is_force_dc > < b2b_daixiao >1</ b2b_daixiao > < ship_info > < ship_info > < transport_type >express,seller,instant等</ transport_type > </ ship_info > </ ship_info > < combine_item_info > < combine_sub_item_d_o > < item_id >123123</ item_id > < sku_id >22331764490705</ sku_id > < quantity >数量</ quantity > < item_name >商品名称</ item_name > < outer_iid >152e442aefe88dd41cb0879232c0dcb0</ outer_iid > < sku_title >16g</ sku_title > < origin_fee >123</ origin_fee > < combine_sub_item_fee >123</ combine_sub_item_fee > < ismain >true</ ismain > < estcon_time >7 / 2023-02-15</ estcon_time > < outer_sku_id >123</ outer_sku_id > < edu_original_fee >123</ edu_original_fee > < apple_cc >{}</ apple_cc > </ combine_sub_item_d_o > </ combine_item_info > < need_return >true</ need_return > < bundle_id >123</ bundle_id > < bundle_out_name >Apple</ bundle_out_name > < bundle_type >1</ bundle_type > < one_yuan_reservation_orders >3330286058340981615,3330286058340981614</ one_yuan_reservation_orders > < is_jzfx >true</ is_jzfx > < jewcc_no >TBJA34876579730796583190</ jewcc_no > < is_bybt_order >false</ is_bybt_order > < apple_cc >{}</ apple_cc > < bybt_sn_code_tag >{"t":1, "s":[]}</ bybt_sn_code_tag > < recycleOrderId >4057146831098598118</ recycleOrderId > < gov_zhaoshangpi >558715580168_N_gradeOne_02</ gov_zhaoshangpi > < consign_due_time >2_7</ consign_due_time > < ypds_platform_order_id >4129314015003153704</ ypds_platform_order_id > < ypds_platform_pay_order_id >2024111523001107821426437126</ ypds_platform_pay_order_id > < ypds_order_supply_price >0.10</ ypds_order_supply_price > < ypds_order_type >1</ ypds_order_type > < use_gov_subsidy_new >1</ use_gov_subsidy_new > < gov_subsidy_amount_new >230</ gov_subsidy_amount_new > < is_inds_qyg >true</ is_inds_qyg > < gov_sn_check >1_1_0</ gov_sn_check > < qn_distr >1</ qn_distr > < gov_energy_level >1</ gov_energy_level > < gov_main_subject >测试公司</ gov_main_subject > < czhm >123abc</ czhm > < is_apple_channel_edu_order >true</ is_apple_channel_edu_order > </ order > </ orders > < promotion_details > < promotion_detail > < id >22331764490705</ id > < promotion_name >满就减钱</ promotion_name > < discount_fee >10.00</ discount_fee > < gift_item_name >晨光签字笔</ gift_item_name > < gift_item_id >13233791195</ gift_item_id > < gift_item_num >1</ gift_item_num > < promotion_desc >双11促销,满就送</ promotion_desc > < promotion_id >mjs</ promotion_id > < kd_discount_fee >10.00</ kd_discount_fee > < kd_child_discount_fee >22331764490703|5.00,22331764490704|5.00</ kd_child_discount_fee > </ promotion_detail > </ promotion_details > < service_tags > < logistics_tag > < order_id >123456</ order_id > < logistic_service_tag_list > < logistic_service_tag > < service_tag >comFee=1211;comTim=1;companyCode=SF;</ service_tag > < service_type >FAST</ service_type > </ logistic_service_tag > </ logistic_service_tag_list > </ logistics_tag > </ service_tags > < service_orders > < service_order > < oid >110770592823138</ oid > < item_oid >110770592803138</ item_oid > < service_id >2342344</ service_id > < num >1</ num > < price >39.09</ price > < payment >29.98</ payment > < title >滚筒洗衣机</ title > < total_fee >39.09</ total_fee > < buyer_nick >小倩2005</ buyer_nick > < refund_id >2231958349</ refund_id > < seller_nick >麦包包</ seller_nick > < tmser_spu_code >家装干支装服务</ tmser_spu_code > < et_ser_time >2015-04-15 13:00</ et_ser_time > < et_shop_name >测试预约门店地址</ et_shop_name > < et_verified_shop_name >测试核销门店地址</ et_verified_shop_name > < et_plate_number >浙A11111</ et_plate_number > < oid_str >110770592823138</ oid_str > < apple_care_email >1</ apple_care_email > < apple_care_mpn >1</ apple_care_mpn > < service_outer_id >suni_outid_23432</ service_outer_id > < service_order_type >1</ service_order_type > < ext_service_biz_id >23423_324234,2324_342342</ ext_service_biz_id > < combine_sub_item_id >123</ combine_sub_item_id > < combine_sub_item_sku_id >123</ combine_sub_item_sku_id > < comm_amount_unit >123</ comm_amount_unit > </ service_order > </ service_orders > < trade_from >WAP,JHS</ trade_from > < trade_source >ownshop</ trade_source > < zero_purchase >true</ zero_purchase > < alipay_point >1</ alipay_point > < pcc_af >1</ pcc_af > < trade_ext > < before_enable_flag >1</ before_enable_flag > < before_close_flag >1</ before_close_flag > < before_pay_flag >1</ before_pay_flag > < before_ship_flag >1</ before_ship_flag > < before_confirm_flag >1</ before_confirm_flag > < before_rate_flag >1</ before_rate_flag > < before_refund_flag >1</ before_refund_flag > < before_modify_flag >1</ before_modify_flag > < third_party_status >1</ third_party_status > < extra_data >abc</ extra_data > < ext_attributes >abc</ ext_attributes > </ trade_ext > < order_tax_fee >0</ order_tax_fee > < et_ser_time >2015-04-15 13:00</ et_ser_time > < et_shop_name >接口测试新增门店_0304055043555</ et_shop_name > < et_verified_shop_name >测试核销门店地址</ et_verified_shop_name > < et_plate_number >浙A11111</ et_plate_number > < o2o_snatch_status >1</ o2o_snatch_status > < is_sh_ship >true</ is_sh_ship > < eticket_service_addr >地址信息</ eticket_service_addr > < et_type >bs_common</ et_type > < market >eticket</ market > < obs >1</ obs > < et_shop_id >66749068</ et_shop_id > < paid_coupon_fee >10.00</ paid_coupon_fee > < shop_pick >1</ shop_pick > < rx_audit_status >0</ rx_audit_status > < es_date >直接下单预计时间</ es_date > < es_range >直接下单预计时间</ es_range > < os_date >预约下单时间</ os_date > < os_range >预约下单时间</ os_range > < coupon_fee >使用红包付款金额</ coupon_fee > < post_gate_declare >true</ post_gate_declare > < cross_bonded_declare >true</ cross_bonded_declare > < trade_attr >{\"payCurrency\":\"HKD\"}</ trade_attr > < top_hold >0</ top_hold > < omni_attr >{}</ omni_attr > < omni_param >{}</ omni_param > < assembly >1</ assembly > < forbid_consign >1</ forbid_consign > < identity >EPP</ identity > < team_buy_hold >1</ team_buy_hold > < share_group_hold >1</ share_group_hold > < ofp_hold >1</ ofp_hold > < o2o_step_trade_detail >3_1_100_paid</ o2o_step_trade_detail > < o2o_step_order_id >2505550397798727</ o2o_step_order_id > < o2o_et_order_id >2505550397798727</ o2o_et_order_id > < o2o_voucher_price >1000</ o2o_voucher_price > < order_tax_promotion_fee >0</ order_tax_promotion_fee > < delay_create_delivery >1</ delay_create_delivery > < tid_str >123</ tid_str > < toptype >1</ toptype > < service_type >timedd,jiaju</ service_type > < o2o_service_mobile >17802118895</ o2o_service_mobile > < o2o_service_name >衍一</ o2o_service_name > < o2o_service_state >浙江省</ o2o_service_state > < o2o_service_city >杭州市</ o2o_service_city > < o2o_service_district >余杭区</ o2o_service_district > < o2o_service_town >五常街道</ o2o_service_town > < o2o_service_address >杭州市余杭区文一西路969号</ o2o_service_address > < o2o_step_trade_detail_new >bizType:分阶段付款交易,orderPayChannel:支付宝在线支付,subOrderPayTime:step 0: payTime Sun Jul 30 17:08:50 CST 2017 step 1: payTime Sat Aug 05 04:07:14 CST 2017 ,totalStep:2,currStep:2,fee:60300,payStatus:paid</ o2o_step_trade_detail_new > < o2o_xiaopiao >123</ o2o_xiaopiao > < o2o_contract >3213</ o2o_contract > < recharge_fee >100</ recharge_fee > < retail_store_code >123</ retail_store_code > < retail_out_order_id >123</ retail_out_order_id > < platform_subsidy_fee >100.00</ platform_subsidy_fee > < nr_offline >1</ nr_offline > < wtt_param >json格式</ wtt_param > < logistics_infos > < logistics_info > < trade_id >1100070860172581613</ trade_id > < sub_trade_id >1100070860173581613</ sub_trade_id > < item_id >2323232</ item_id > < item_code >323232</ item_code > < need_consign_num >5</ need_consign_num > < store_code >2223</ store_code > < type >00</ type > < sku_id >213</ sku_id > < num_iid >12222</ num_iid > < consign_type >cn</ consign_type > < combine_item_id >1231234</ combine_item_id > < combine_item_code >13123</ combine_item_code > < item_ratio >1</ item_ratio > < bar_code >691234</ bar_code > < delivery_cps >STO</ delivery_cps > < biz_delivery_code >e_delivery_code</ biz_delivery_code > < biz_store_code >e_store_code</ biz_store_code > < biz_sd_type >0</ biz_sd_type > < send_country >中国</ send_country > < send_state >浙江省</ send_state > < send_city >杭州市</ send_city > < send_district >西湖区</ send_district > < send_town >三墎镇</ send_town > < send_division_code >330110005</ send_division_code > < black_delivery_cps >STO,SF</ black_delivery_cps > < white_delivery_cps >STO,SF</ white_delivery_cps > < biz_delivery_type >1</ biz_delivery_type > < unused_warehouse_error_msg >当前订单在猫淘平台对消费者进行了服务承诺:当日发次日达,建议按照平台要求进行择仓,否则存在赔付风险。</ unused_warehouse_error_msg > < unused_delivery_error_msg >当前订单在猫淘平台对消费者进行了服务承诺,建议按照平台要求进行择配,否则存在赔付风险”/“平台建议当前线路您只能选择的配品牌,存在电子面单无法打印风险</ unused_delivery_error_msg > < used_black_delivery_error_msg >平台建议当前线路不要使用您选择的配品牌,存在电子面单无法打印风险</ used_black_delivery_error_msg > < promise_outbound_time >2019-04-12 16:00:00</ promise_outbound_time > < promise_collect_time >2019-04-12 16:00:00</ promise_collect_time > </ logistics_info > </ logistics_infos > < seller_nick >我在测试</ seller_nick > < buyer_nick >我在测试</ buyer_nick > < nr_store_order_id >下发鲜生活订单号</ nr_store_order_id > < nr_shop_id >1</ nr_shop_id > < nr_shop_name >1</ nr_shop_name > < nr_shop_guide_id >1</ nr_shop_guide_id > < nr_shop_guide_name >1</ nr_shop_guide_name > < sort_info > < day_sort_val >100</ day_sort_val > < hour_sort_val >100</ hour_sort_val > </ sort_info > < sorted >1</ sorted > < nr_no_handle >1</ nr_no_handle > < biz_code >tmall.daogoubao.cloudstore</ biz_code > < cloud_store >1</ cloud_store > < is_gift >暂不公开</ is_gift > < donee_nick >暂不公开</ donee_nick > < donee_open_uid >暂不公开</ donee_open_uid > < suning_shop_code >123</ suning_shop_code > < suning_shop_valid >1</ suning_shop_valid > < allow_appkeys >123,456</ allow_appkeys > < new_presell >true</ new_presell > < you_xiang >true</ you_xiang > < retail_store_id >1</ retail_store_id > < is_istore >ture</ is_istore > < ua >ap</ ua > < linkedmall_ext_info >{}</ linkedmall_ext_info > < pay_channel >0</ pay_channel > < rt_omni_send_type >pickUp</ rt_omni_send_type > < rt_omni_store_id >12345</ rt_omni_store_id > < rt_omni_outer_store_id >12345</ rt_omni_outer_store_id > < tcps_start >2018-10-10 11:00:00</ tcps_start > < tcps_code >com.tmall.dsd</ tcps_code > < tcps_end >2018-10-10 13:00:00</ tcps_end > < m_tariff_fee >0</ m_tariff_fee > < timing_promise >tmallPromise</ timing_promise > < promise_service >aa,bb,cc</ promise_service > < cutoff_minutes >660</ cutoff_minutes > < es_time >1</ es_time > < delivery_time >2019-04-12 16:00:00</ delivery_time > < collect_time >2019-04-12 16:00:00</ collect_time > < dispatch_time >2019-04-12 16:00:00</ dispatch_time > < sign_time >2019-04-12 16:00:00</ sign_time > < outer_partner_member_id >123456</ outer_partner_member_id > < root_cat >1234567</ root_cat > < gifting >1</ gifting > < gifting_takeout >1</ gifting_takeout > < oi_date >8:00-9:00</ oi_date > < oi_range >2019-08-01</ oi_range > < hold_install >暂不安装</ hold_install > < app_name >tmall</ app_name > < easy_home_city_type >deposit:预约,tail:尾款,direct:直接购买</ easy_home_city_type > < nr_deposit_order_id >123456</ nr_deposit_order_id > < nr_store_code >123456</ nr_store_code > < propoint >10</ propoint > < zqs_order_tag >1</ zqs_order_tag > < txp_freezer_id >1234</ txp_freezer_id > < txp_receive_method >post</ txp_receive_method > < expandcard_info > < basic_price >0.01</ basic_price > < expand_price >0.01</ expand_price > < basic_price_used >0.01</ basic_price_used > < expand_price_used >0.01</ expand_price_used > </ expandcard_info > < extend_info >{"itemTag":"100"}</ extend_info > < lm >1</ lm > < brand_light_shop_source >scode</ brand_light_shop_source > < brand_light_shop_store_id >123456</ brand_light_shop_store_id > < is_wmly >1</ is_wmly > < omni_package >[{"city_token":"155774003320052624","pickup_code":"059006","latest_prepare_time":"2020-05-26 13:00:00","select_time":"2020-05-26 13:00-17:00","sub_order_ids":"1234,2345"}]</ omni_package > < ncz_ext_attr >{}</ ncz_ext_attr > < invoice_detail_pay >{"result":{"$ref":"@"},"1100453005045981418":[{"details":[{"amount":0.50,"name":"信用购"}],"type":"消费积分"}],"success":true,"errorCode":""}</ invoice_detail_pay > < invoice_detail_mid_refund >{"result":{"$ref":"@"},"1100453005045981418":[{"details":[{"amount":0.50,"name":"信用购"}],"type":"消费积分"}],"success":true,"errorCode":""}</ invoice_detail_mid_refund > < invoice_detail_after_refund >{"result":{"$ref":"@"},"1100453005045981418":[{"details":[{"amount":0.50,"name":"信用购"}],"type":"消费积分"}],"success":true,"errorCode":""}</ invoice_detail_after_refund > < expand_card_basic_price >0.01</ expand_card_basic_price > < expand_card_expand_price >0.01</ expand_card_expand_price > < expand_card_basic_price_used >0.01</ expand_card_basic_price_used > < expand_card_expand_price_used >0.01</ expand_card_expand_price_used > < delivery_cps >SF</ delivery_cps > < asdp_biz_type >logistics_upgrade</ asdp_biz_type > < is_openmall >false</ is_openmall > < v_logistics_create >false</ v_logistics_create > < q_r_pay >false</ q_r_pay > < order_follow_id >1</ order_follow_id > < asdp_ads >201</ asdp_ads > < ob_tag >lg</ ob_tag > < general_new_presell >true</ general_new_presell > < drug_register >1</ drug_register > < step_pay_details > < step_pay_detail > < id >1</ id > < pay_status >2</ pay_status > < step_no >1</ step_no > < step_channel_no >2021111222001188701414727247</ step_channel_no > < step_instrument_code >ALIPAY_BATCH_ESCROW_APP</ step_instrument_code > < step_actual_pay_fee >10.00</ step_actual_pay_fee > </ step_pay_detail > </ step_pay_details > < agree_refund_checks > < agree_refund_check > < delivery_tips >demo</ delivery_tips > < delivery_process >demo</ delivery_process > < detail_order_id >demo</ detail_order_id > </ agree_refund_check > </ agree_refund_checks > < address_details > < address_detail > < detailed_address >demo</ detailed_address > < division_code >demo</ division_code > < area >demo</ area > < telephone >demo</ telephone > < city >demo</ city > < prov >demo</ prov > < country >demo</ country > < contact_name >demo</ contact_name > < biz_type >demo</ biz_type > </ address_detail > </ address_details > < stage_address_type >identifyService</ stage_address_type > < og_id >3628641205792</ og_id > < promise_sign_time >1</ promise_sign_time > < tmall_coupon_fee >100</ tmall_coupon_fee > < delivery_plan > < delivery_plan > < plan_id >100</ plan_id > < order_id >100</ order_id > < curr_phase >100</ curr_phase > < out_logistics_id >demo</ out_logistics_id > < prepare_time_begin >2015-01-01 00:00:00</ prepare_time_begin > < ship_time_begin >2015-01-01 00:00:00</ ship_time_begin > < actual_ship_time >2015-01-01 00:00:00</ actual_ship_time > < goods_num >100</ goods_num > < plan_status >100</ plan_status > < plan_refund_status >100</ plan_refund_status > < receiver_name >1</ receiver_name > < receiver_mobile >1</ receiver_mobile > < receiver_phone >1</ receiver_phone > < receiver_address >1</ receiver_address > < oaid >demo</ oaid > < privacy_num >demo</ privacy_num > < privacy_expire_time >time</ privacy_expire_time > < receiver_town >1</ receiver_town > < receiver_district >1</ receiver_district > < receiver_city >1</ receiver_city > < receiver_state >1</ receiver_state > < receiver_country >1</ receiver_country > </ delivery_plan > </ delivery_plan > < omnichannel_param >orderState:X_SHOP_HANDLED,orderType:STORE_DELIVER,acceptExpirationTime:2016-09-05 23:41:59,targetCode:34510274,allocationCode:339001,subOrderCode:194497830335000,targetType:STORE;</ omnichannel_param > < oaid >2w2RYE45iahnF4aiaJ7pHKCJ3Hwnbgnq2PH3AfpQVyWZNHKS9wNgAAOUfCVt9XZMetogNHwc</ oaid > < is_cycle_buy >true</ is_cycle_buy > < scenario_group >TXD_B2C_FRESH_HALFDAY</ scenario_group > < play_type >group_buy</ play_type > < is_force_dc >true</ is_force_dc > < combine_logistics_details > < combine_logistics_detail > < invoice_no >123123123</ invoice_no > < logistics_company >xx物流公司</ logistics_company > < sub_order_id >123123123</ sub_order_id > < send_goods_details > < send_goods_detail > < type >1</ type > < consign_status >1</ consign_status > < amount >3</ amount > < goods_details > < package_goods_detail > < item_id >123123</ item_id > < sku_id >123123</ sku_id > < amount >123</ amount > </ package_goods_detail > </ goods_details > </ send_goods_detail > </ send_goods_details > </ combine_logistics_detail > </ combine_logistics_details > < identify_info > < identify_logistics_infos > < identify_logistics_info > < detail_order_id >123123</ detail_order_id > < logistics_company >xx物流公司</ logistics_company > < stage_no >2</ stage_no > < invoice_no >123123</ invoice_no > < refund_id >123123</ refund_id > < refund >false</ refund > </ identify_logistics_info > </ identify_logistics_infos > < identify_service_infos > < identify_service_info > < detail_order_id >123123</ detail_order_id > < unit_id >123123</ unit_id > < service_id >123123</ service_id > </ identify_service_info > </ identify_service_infos > </ identify_info > < logistics_consign_info > < logistics_consign_info > < related_id >1234567</ related_id > < consign_time >付款后30天内</ consign_time > < render_consign_time >付款后30天内</ render_consign_time > < combine_item > < combine_consign_info > < comb_id >56789</ comb_id > < item_id >23456789</ item_id > < sku_id >678998</ sku_id > < consign_time >付款后30天内</ consign_time > < render_consign_time >付款后30天内</ render_consign_time > </ combine_consign_info > </ combine_item > </ logistics_consign_info > </ logistics_consign_info > < logistics_modify_info > < logistics_modify_info > < related_id >1234567</ related_id > < consign_time >付款后30天内</ consign_time > < origin_consign_time >付款后32天内</ origin_consign_time > < modify_time >2023-04-01 11:11:11</ modify_time > < modify_reason >提前发货时效</ modify_reason > < item_id >124556</ item_id > < sku_id >56789</ sku_id > < comb_id >567890</ comb_id > </ logistics_modify_info > </ logistics_modify_info > < priority_consign_time >2023-04-26 03:26</ priority_consign_time > < logistics_agreement > < logistics_service_msg >送货上门</ logistics_service_msg > < asdp_biz_type >logistics_upgrade</ asdp_biz_type > < asdp_ads >201</ asdp_ads > < sign_time >2019-04-12 16:00:00</ sign_time > < promise_sign_time >2019-04-12 16:00:00</ promise_sign_time > < push_time >2019-04-12 16:00:00</ push_time > < no_detail_part_consign >1</ no_detail_part_consign > < sink_type >1</ sink_type > </ logistics_agreement > < real_name_auth_status >0</ real_name_auth_status > < third_party_customs_declaration >0</ third_party_customs_declaration > < receipt_type >ITEM</ receipt_type > < seller_flag_tag >红色旗子</ seller_flag_tag > < seller_open_uid >AAHk5d-EAAeGwJedwSFu0XXX</ seller_open_uid > < education_receiver_mobile >11111111111</ education_receiver_mobile > < is_gfjy >true</ is_gfjy > < memo_operator_infos > < memo_operator_info > < operator_id >100001</ operator_id > < operator_nick >这是一个昵称</ operator_nick > </ memo_operator_info > </ memo_operator_infos > < use_gov_subsidy >1</ use_gov_subsidy > < gov_subsidy_amount >100</ gov_subsidy_amount > < is_zk_identify >true</ is_zk_identify > < use_gov_predict >1</ use_gov_predict > < gov_subsidy_amount_exact >330</ gov_subsidy_amount_exact > < oldfornew >1</ oldfornew > < gov_store >1</ gov_store > < use_gov_subsidy_new >1</ use_gov_subsidy_new > < gov_subsidy_amount_new >321</ gov_subsidy_amount_new > < is_inds_qyg >true</ is_inds_qyg > < payment_method >wx</ payment_method > < gov_sn_check >1_1_0</ gov_sn_check > < real_receiver_open_id >AAEnVKOdAOIduo9TH9hjf-zb</ real_receiver_open_id > < real_receiver_display_nick >这是一个昵称</ real_receiver_display_nick > < post_fee_type >giftprepaid</ post_fee_type > < real_post_fee >11</ real_post_fee > < refund_post_fee >8</ refund_post_fee > < gift_post_fee_role >0</ gift_post_fee_role > < qn_distr >1</ qn_distr > < gov_main_subject >测试公司</ gov_main_subject > < platform_gold_subsidy >100</ platform_gold_subsidy > < tmg_wx_channel_id >439087655780000</ tmg_wx_channel_id > < cc_tax_promotion_fee >100</ cc_tax_promotion_fee > < is_mss >true</ is_mss > < gov_pay_type >1</ gov_pay_type > < gov_subsidy_type >1</ gov_subsidy_type > < gov_subsidy_type_extra >4</ gov_subsidy_type_extra > < is_hykl_order_type >true</ is_hykl_order_type > </ trade > </ trade_fullinfo_get_response > |
1 2 3 4 5 6 | < error_response > < code >50</ code > < msg >Remote service error</ msg > < sub_code >isv.invalid-parameter</ sub_code > < sub_msg >非法参数</ sub_msg > </ error_response > |
错误码 | 错误描述 | 解决方案 |
---|---|---|
isv.invalid-permission | 权限不够、非法访问 | |
isv.trade-not-exist | 交易不存在 | 订单已进入历史库,出现错误清除本地数据库该订单,不要重试 |
错误码:40,子错误码:null | 缺少必要的传入参数 | 请根据返回的错误信息,将必传参数都填写好 |
错误码:41,子错误码:null | 传入参数的格式错误 | 请根据返回的错误信息,检查相应参数的格式 |
isv.invalid-parameter:tid | 必须使用主订单ID来查询,不允许使用子订单ID来查询 | |
isv.trade-service-access-frequency | 交易慢查询访问太频繁 | 缩短查询订单的时间范围,减少超时查询的次数,或者等待一段时间后再来查询 |
isp.trade-service-failed | 错误描述 | 解决方案 |
isp.trade-service-degrade | 服务被降级 | 请稍后重试。 |
isp.commission-service-unavailable | 佣金服务不可用 | 重试 |
isp.trade-service-unavailable | 交易服务不可用 | 适当重试 |
isp.call-limited | 交易服务限流 | 请稍后重试 |
isp.remote-connection-error | 交易服务连接依赖的远程服务错误 | 请稍后重试 |
isp.remote-service-timeout | 交易服务处理超时 | 请稍后重试 |
isv.invalid-parameter | 请求参数有误 | 请传入正确的参数 |
isv.astrolabe-trade-closured | 门店发货拦截订单 | 重试 |
isp.contextPrepareError | 交易服务不可用 | 重试 |
isv.trade-hold | 订单已经被星盘拦截 | 对接星盘发货系统 |
isp.processError | ??? | ??? |
isp.filterError | ??? | ??? |
isp.syncLockError | ??? | ??? |
isp.processCatchError | ??? | ??? |
isv.o2o-passport-order | O2O_PASSPORT订单不允许查询 | O2O_PASSPORT订单不允许查询 |
isv.cloudstore-order | 云店订单不允许查询 | 云店订单不允许查询 |
isp.seller-memo-not-found | 卖家留言信息获取超时,请重试 | 卖家留言信息获取超时,请重试 |