简要描述:
- 用户登录接口
请求域名:
- http://xx.com
请求URL:
POST:plugin.store-cashier.frontend.pos.printer
参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
store_id | 是 | int | 门店ID |
返回示例:
正确时返回:
{
"errcode": 0,
"data": {
created_at: "2019-10-18 15:54:02"
deleted_at: null
id: 2
plugin_id: 32
print_data:
0: "[订单金额]"
print_style: "名称:16|单价:6|数量:5|金额:5"
print_title: "测试"
qr_code: "xxx"
title: "业务处理通知"
uniacid: 3
}
}
错误时返回:
{
"errcode": 500,
"errmsg": "invalid appid"
}
返回参数说明:
参数名 | 类型 | 说明 | 额外数据 |
---|---|---|---|
print_title | string | 打印头部名称 | |
print_style | string | 打印列格式 例如: 名称:16丨单价:6丨数量:5丨金额:5 ,解释: 名字 占据16位,单价占据6位,数量占据5位,金额占据5位;总共每行是32个字符,每个中文或中文标点占用2字符;请严格按照格式来! | |
qr_code | string | 二维码链接 | |
title | string | 模版名称 | |
print_data | array | 打印内容 例如: 订单总金额:[订单金额]。 | 中括号[]代码相应的key:[订单编号][订单金额][订单时间][订单状态][商品条码][商品编号][优惠金额][抵扣金额][收货地址][运费][备注][姓名][电话] |
备注:
- 更多返回错误代码请看首页的错误代码描述