yumoqing 19a3d67c68 feat: 投标产线模块(bidding_general)
- 12张 bid_* 表(models+DDL+CRUD):招标信息/邮箱配置/人员/招标文件/评分项/资质/
  投标文件要求/章节/评审/评分/知识库/标书
- 7个角色能力模块(bid_*_capability):采集摘要/解析/知识库资质/编写/评审/合成/评分
- bid_flow 状态对账器:角色任务唯一创建者+阻塞门禁(源头守门,引擎零特判)
- bid_mail:阿里云企业邮 IMAP 采集(凭据存DB AES,客户端专用密码兼容)
- 能力包注册(bid_ability)+ 角色工具自注册(role_tool_schemas)
- 技能:6 common 状态机/规范 + 9 角色技能(pipelines/bidding_general,随 pipeline-core 部署)
- i18n(zh/en)、init/data.json(appcodes+pipelines记录)、build.sh、RBAC load_path
2026-08-26 23:45:03 +08:00

370 lines
7.9 KiB
XML

{
"widgettype":"VBox",
"options":{"height":"100%","width":"100%"},
"subwidgets":[
{
"id":"bid_chapters_tbl",
"widgettype":"Tabular",
"options":{
"width":"100%",
"height":"100%",
"title":"投标文件章节",
"toolbar":{
"tools": []
},
"css":"card",
"editable":{
"new_data_url": "{{entire_url('add_bid_chapters.dspy')}}",
"delete_data_url": "{{entire_url('delete_bid_chapters.dspy')}}",
"update_data_url": "{{entire_url('update_bid_chapters.dspy')}}"
},
"data_url":"{{entire_url('./get_bid_chapters.dspy')}}",
"data_method":"GET",
"data_params":{{json.dumps(params_kw, indent=4, ensure_ascii=False)}},
"row_options":{
"browserfields": {
"exclouded": [
"content",
"outline",
"scoring_item_ids"
]
},
"editexclouded":[
"id",
"created_at",
"updated_at",
"task_id",
"version",
"word_count"
],
"fields":[
{
"name": "id",
"title": "主键ID",
"type": "str",
"length": 32,
"nullable": "no",
"cwidth": 18,
"uitype": "str",
"datatype": "str",
"label": "主键ID"
},
{
"name": "project_id",
"title": "项目ID",
"type": "str",
"length": 32,
"nullable": "no",
"cwidth": 18,
"uitype": "str",
"datatype": "str",
"label": "项目ID"
},
{
"name": "chapter_no",
"title": "章节号",
"type": "str",
"length": 32,
"nullable": "no",
"cwidth": 18,
"uitype": "str",
"datatype": "str",
"label": "章节号"
},
{
"name": "parent_no",
"title": "父章节号",
"type": "str",
"length": 32,
"cwidth": 18,
"uitype": "str",
"datatype": "str",
"label": "父章节号"
},
{
"name": "title",
"title": "章节标题",
"type": "str",
"length": 255,
"nullable": "no",
"cwidth": 18,
"uitype": "str",
"datatype": "str",
"label": "章节标题"
},
{
"name": "section",
"title": "所属部分",
"type": "str",
"length": 32,
"default": "technical",
"label": "所属部分",
"uitype": "code",
"valueField": "section",
"textField": "section_text",
"params": {
"dbname": "{{get_module_dbname('pipeline_bidding')}}",
"table": "appcodes_kv",
"tblvalue": "k",
"tbltext": "v",
"valueField": "section",
"textField": "section_text",
"cond": "parentid='bid_scoring_section'"
},
"dataurl": "{{entire_url('/appbase/get_code.dspy')}}"
},
{
"name": "scoring_item_ids",
"title": "对应评分项(JSON)",
"type": "text",
"length": 0,
"uitype": "text",
"datatype": "text",
"label": "对应评分项(JSON)"
},
{
"name": "outline",
"title": "章节要点",
"type": "text",
"length": 0,
"uitype": "text",
"datatype": "text",
"label": "章节要点"
},
{
"name": "status",
"title": "章节状态",
"type": "str",
"length": 16,
"nullable": "no",
"default": "pending",
"label": "章节状态",
"uitype": "code",
"valueField": "status",
"textField": "status_text",
"params": {
"dbname": "{{get_module_dbname('pipeline_bidding')}}",
"table": "appcodes_kv",
"tblvalue": "k",
"tbltext": "v",
"valueField": "status",
"textField": "status_text",
"cond": "parentid='bid_chapter_status'"
},
"dataurl": "{{entire_url('/appbase/get_code.dspy')}}"
},
{
"name": "version",
"title": "版本号",
"type": "int",
"nullable": "no",
"default": "1",
"length": 0,
"uitype": "int",
"datatype": "int",
"label": "版本号"
},
{
"name": "content",
"title": "章节正文",
"type": "text",
"length": 0,
"uitype": "text",
"datatype": "text",
"label": "章节正文"
},
{
"name": "file_path",
"title": "章节文件路径",
"type": "str",
"length": 500,
"cwidth": 18,
"uitype": "str",
"datatype": "str",
"label": "章节文件路径"
},
{
"name": "word_count",
"title": "字数",
"type": "int",
"default": "0",
"length": 0,
"uitype": "int",
"datatype": "int",
"label": "字数"
},
{
"name": "review_score",
"title": "评审得分",
"type": "float",
"length": 8,
"dec": 2,
"cwidth": 8,
"uitype": "float",
"datatype": "float",
"label": "评审得分"
},
{
"name": "max_score",
"title": "对应满分",
"type": "float",
"length": 8,
"dec": 2,
"cwidth": 8,
"uitype": "float",
"datatype": "float",
"label": "对应满分"
},
{
"name": "review_comment",
"title": "评审意见/改进意见",
"type": "text",
"length": 0,
"uitype": "text",
"datatype": "text",
"label": "评审意见/改进意见"
},
{
"name": "revise_count",
"title": "重做次数",
"type": "int",
"nullable": "no",
"default": "0",
"length": 0,
"uitype": "int",
"datatype": "int",
"label": "重做次数"
},
{
"name": "assignee_role",
"title": "承办角色",
"type": "str",
"length": 64,
"default": "agent.bid_writer",
"cwidth": 18,
"uitype": "str",
"datatype": "str",
"label": "承办角色"
},
{
"name": "task_id",
"title": "关联任务ID",
"type": "str",
"length": 32,
"cwidth": 18,
"uitype": "str",
"datatype": "str",
"label": "关联任务ID"
},
{
"name": "order_no",
"title": "排序",
"type": "int",
"default": "0",
"length": 0,
"uitype": "int",
"datatype": "int",
"label": "排序"
},
{
"name": "created_at",
"title": "创建时间",
"type": "timestamp",
"nullable": "no",
"length": 0,
"uitype": "str",
"datatype": "timestamp",
"label": "创建时间"
},
{
"name": "updated_at",
"title": "更新时间",
"type": "timestamp",
"length": 0,
"uitype": "str",
"datatype": "timestamp",
"label": "更新时间"
}
]
},
"search_form":{
"css":"card",
"padding":"8px",
"show_label":false,
"submit_label":"搜索",
"submit_css":"primary",
"fields":[
{
"name": "project_id",
"uitype": "str",
"placeholder": "项目ID",
"cwidth": 15
},
{
"name": "status_input",
"uitype": "code",
"placeholder": "章节状态",
"cwidth": 15,
"valueField": "status_input",
"textField": "status_input_text",
"params": {
"dbname": "{{get_module_dbname('pipeline_bidding')}}",
"table": "appcodes_kv",
"tblvalue": "k",
"tbltext": "v",
"valueField": "status_input",
"textField": "status_input_text",
"cond": "parentid='bid_chapter_status'"
},
"dataurl": "{{entire_url('/appbase/get_code.dspy')}}?prepend_all=1"
},
{
"name": "title_input",
"uitype": "str",
"placeholder": "章节标题",
"cwidth": 15
}
]
},
"page_rows":160,
"cache_limit":5
}
,"binds":[]
}]
}