文档中心 > API类目 > 酒店在线预订API

taobao.xhotel.invoice.print (打印发票)

打印发票

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
print_invioce String 可选 { "connectionCode": "123456", "digitalCertificatePassword": "12345678", "equipmentType": 1, "invioceCode": "1110000478", "invioceNo": "42180181", "invioceSerialNo": null, "invioceSiteCode": "kaipd001", "invioceTypeCode": "007", "printMode": 1, "printType": 0, "taxDiskNo": "499000150418", "taxDiskPassword": "88880000", "taxPayerID": "91500000747150000A"} 字段说明:connectionCode:接入码,必填,digitalCertificatePassword:税务数字证书密码,equipmentType:设备类型,0税控服务,1税控盘,2 SIMKEY,3其他,invioceCode:发票代码,invioceNo:发票号码,invioceSerialNo:发票请求流水号,invioceSiteCode:开票点代码,invioceTypeCode:发票类型代码:004:专票,007:普票,printMode:打印方式(税控盘必填)默认为1,printType:打印类型,taxDiskNo:税控盘编号,taxDiskPassword:税控盘口令,taxPayerID:纳税人识别号,必填

响应参数

名称 类型 示例值 描述
result ResultSet result
  • └ success
  • Boolean
  • true
  • success
  • └ error_code
  • String
  • 0001
  • errorCode
  • └ error_msg
  • String
  • 调用失败
  • errorMsg

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
XhotelInvoicePrintRequest req = new XhotelInvoicePrintRequest();
req.setPrintInvioce("{ \"connectionCode\": \"123456\", \"digitalCertificatePassword\": \"12345678\", \"equipmentType\": 1, \"invioceCode\": \"1110000478\", \"invioceNo\": \"42180181\", \"invioceSerialNo\": null, \"invioceSiteCode\": \"kaipd001\", \"invioceTypeCode\": \"007\", \"printMode\": 1, \"printType\": 0, \"taxDiskNo\": \"499000150418\", \"taxDiskPassword\": \"88880000\", \"taxPayerID\": \"91500000747150000A\"}");
XhotelInvoicePrintResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<xhotel_invoice_print_response>
    <result>
        <success>true</success>
        <error_code>0001</error_code>
        <error_msg>调用失败</error_msg>
    </result>
</xhotel_invoice_print_response>

异常示例

  • XML示例
  • JSON示例
<error_response>
    <code>50</code>
    <msg>Remote service error</msg>
    <sub_code>isv.invalid-parameter</sub_code>
    <sub_msg>非法参数</sub_msg>
</error_response>

错误码解释

错误码 错误描述 解决方案

API工具

如何获得此API

FAQ

返回
顶部