This commit is contained in:
tigermren 2025-09-26 22:14:27 +08:00
commit c94298f41e
5 changed files with 201 additions and 0 deletions

38
aldebaran/fcst.json Normal file
View File

@ -0,0 +1,38 @@
[
{
"idx": 0,
"key": "[招标]中标结果",
"description": "是否包含中标金额,中标结果"
},
{
"idx": 1,
"key": "[招标]中标时间",
"description": "中标时间要早于预计结单时间超过20天"
},
{
"idx": 2,
"key": "[商务谈判]谈判结果",
"description": "是否包含商务谈判金额,商务谈判结果"
},
{
"idx": 3,
"key": "[商务谈判]谈判完成时间",
"description": "完成时间要早于预计结单时间超过20天"
},
{
"idx": 4,
"key": "[合同审批]审批提起",
"description": "是否包含签合同对方名称,合同审批提起时间"
},
{
"idx": 5,
"key": "[合同审批]审批结果",
"description": "是否包含合同审批完结时间,审批意见"
},
{
"idx": 6,
"key": "[合同审批]审批通过时间",
"description": "合同审批通过时间要早于预计结单时间超过5天"
}
]

33
aldebaran/fcst2.json Normal file
View File

@ -0,0 +1,33 @@
[
{
"idx": 0,
"key": "确定项目预算",
"description": "应确定项目预算具体金额"
},
{
"idx": 1,
"key": "确定项目立项",
"description": "立项审批应有确定结果"
},
{
"idx": 2,
"key": "[有测试]测试有明确结果",
"description": "测试有明确结束时间及结果,且结果为优异,"
},
{
"idx": 3,
"key": "[无测试]没有测试但有积极反馈",
"description": "在没有测试的情况下,客户需要有积极正向的反馈,明确希望使用我们的产品或方案"
}
]
// 1.
// 2.
// 3. poc=
// 4. PoC=-won
// 5. poc=
// [][]45Commit
// CommitCommitCommit4545
// qualification

36
aldebaran/fcst3.json Normal file
View File

@ -0,0 +1,36 @@
[
{
"idx": 0,
"key": "已完成Callhigh",
"description": "需要包含callhigh时间、callhigh对象部门、姓名、职位、是否获取支持"
},
{
"idx": 1,
"key": "[招标]投标时间",
"description": "投标时间要早于预计结单时间超过30天时间明确到季度或具体日期"
},
{
"idx": 2,
"key": "[招标]招标参数及商务要求不得有不满足项",
"description": "招标参数:指产品的技术参数/标准/要求;商务要求:指公司或产品资质、案例;该两项均不得有不满足项"
},
{
"idx": 3,
"key": "[商务谈判]商务谈判时间",
"description": "商务谈判时间要早于预计结单时间超过30天"
},
{
"idx": 4,
"key": "报价审批结果",
"description": "审批结果应包含:产品,数量,折扣,金额"
}
]
// [][]
// 1Callhigh[][]45commit
// commitcommit245
// 2Callhigh[][]commit
// commitcommit430
// bidding

94
aldebaran/olm Normal file
View File

@ -0,0 +1,94 @@
crm_opportunities
1. 字段gross_profit_ex_vat缺失
2. region:确实但如果和department一致则OK业绩归属地区
3. customer_name 为空
4. owner_main_department 为空
5. opportunitity_stage 为id需刷成text
6. stage_status 为id需刷成text
7. business_type 为id需刷成text(但该字段似乎没什么用)
8. expected_closing_quarter 为第一季度第二季度第三季度与crm_acv_targets不匹配
9. forecast_type 为id需刷成text
crm_accounts:
1. customer_source为空
2. person_in_charge 为id需刷成text
3. department为id需刷成text
4. industry为id需刷成text
5. business_type, account_level, customer_attribute 均为空
crm_contacts:
1. customer_name为空
crm_system_configurations:
1. 几个映射需要加一下, 参见dev环境
2.
crm_ka_accounts
1. 需要确定哪些客户需要跑, 700+ 客户, 将商机按照cusotmer——ID进行分组取最新的商机对应的客户
{
"workflow_ids": [
"PLAN-REVIEW-HANDBOOK-01S-AI@olm",
"PLAN-REVIEW-HANDBOOK-02@olm",
"PLAN-REVIEW-HANDBOOK-05@olm",
"PLAN-GENERAL-DECOMPOSITION-03@default",
],
"force": true,
"dry_run": false
}
curl --request POST \
--url http://localhost:8000/api/v1/workflow-deployments/deploy \
--header 'Content-Type: application/json' \
--data '{
"workflow_ids": [
"PLAN-REVIEW-HANDBOOK-01S-AI@olm",
"PLAN-REVIEW-HANDBOOK-02@olm",
"PLAN-REVIEW-HANDBOOK-05@olm",
"PLAN-GENERAL-DECOMPOSITION-03@default"
],
"force": true,
"dry_run": false
}'
PLAN-REPORT-DAILY-01
curl --request POST \
--url http://localhost:8000/api/v1/workflow-deployments/deploy \
--header 'Content-Type: application/json' \
--data '{
"workflow_ids": [
"PLAN-REPORT-DAILY-01@default"
],
"force": true,
"dry_run": false
}'
curl --request POST \
--url http://localhost:8000/api/v1/workflow-deployments/deploy \
--header 'Content-Type: application/json' \
--data '{
"workflow_ids": [
"PLAN-PRE-VISIT-HANDBOOK-01@pingcap_apac"
],
"force": true,
"dry_run": false
}'
curl --request POST \
--url http://localhost:8000/api/v1/review/create \
--header 'Content-Type: application/json' \
--data '{
"tenant_id": "PINGCAP",
"start_date": "2025-09-24",
"end_date": "2025-09-25",
"review_type": "review1s",
"departments": [
]
}'

0
aldebaran/review1.json Normal file
View File