简要描述:
- 门店统计
请求URL:
GET/plugin.store-cashier.frontend.app.store.statistic.index
参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
i | 是 | int | 公众号ID |
yz_token | 是 | str | 用户token |
返回示例:
正确时返回:
{
result: 1,
msg: "成功",
data: {
today: {
amount: 0,
count: 0
},
all: {
amount: "4770.49",
count: 167
}
}
}
错误时返回:
{
result: 0,
msg: "未找到门店",
data: [ ]
}
{
result: 0,
msg: "您已进入黑名单",
data: [ ]
}
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
today->amount | float | 今日-收款金额 |
today->count | float | 今日-收款单数 |
all->amount | float | 总数据-收款金额 |
all->amount | float | 总数据-收款金额 |
备注:
- 更多返回错误代码请看首页的错误代码描述