feat(cube): 添加订单商品数量统计查询配置

添加多个Cube查询配置文件,包括按SKU和名称统计订单商品数量
新增total_sales_quantity度量字段用于统计销售总量
添加客户状态统计查询配置
This commit is contained in:
tikkhun 2026-01-23 11:56:21 +08:00
parent e1a52c5d2f
commit 90f8f00782
5 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,8 @@
{
"dimensions": ["order_item.name"],
"measures": ["order_item.quantity"],
"order": {
"order_item.quantity": "desc"
},
"filters": []
}

View File

@ -0,0 +1,8 @@
{
"dimensions": ["order_item.sku"],
"measures": ["order_item.quantity"],
"order": {
"order_item.total_sales_quantity": "desc"
},
"filters": []
}