Optimized the root .gitignore to exclude virtual environments, node modules, and temp folders to ensure clean and lightweight version tracking. Co-authored-by: Cursor <cursoragent@cursor.com>
257 lines
10 KiB
HTML
257 lines
10 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="zh-CN">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<title>ONEOS 与旧资产管理平台对比及迁移总结</title>
|
||
<style>
|
||
:root {
|
||
--primary: #1a56db;
|
||
--primary-light: #e8effc;
|
||
--text: #1f2937;
|
||
--muted: #6b7280;
|
||
--border: #e5e7eb;
|
||
--bg: #f9fafb;
|
||
}
|
||
* { box-sizing: border-box; margin: 0; padding: 0; }
|
||
body {
|
||
font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
|
||
color: var(--text);
|
||
line-height: 1.65;
|
||
background: var(--bg);
|
||
padding: 40px 24px 60px;
|
||
}
|
||
.page {
|
||
max-width: 820px;
|
||
margin: 0 auto;
|
||
background: #fff;
|
||
border-radius: 12px;
|
||
box-shadow: 0 4px 24px rgba(0,0,0,.08);
|
||
overflow: hidden;
|
||
}
|
||
.cover {
|
||
background: linear-gradient(135deg, #1e3a8a 0%, #1a56db 55%, #3b82f6 100%);
|
||
color: #fff;
|
||
padding: 48px 48px 40px;
|
||
}
|
||
.cover .tag {
|
||
display: inline-block;
|
||
font-size: 12px;
|
||
letter-spacing: .08em;
|
||
opacity: .85;
|
||
margin-bottom: 12px;
|
||
}
|
||
.cover h1 {
|
||
font-size: 26px;
|
||
font-weight: 700;
|
||
line-height: 1.35;
|
||
margin-bottom: 16px;
|
||
}
|
||
.cover .meta { font-size: 14px; opacity: .9; }
|
||
.cover .meta span { margin-right: 20px; }
|
||
.body { padding: 40px 48px 48px; }
|
||
h2 {
|
||
font-size: 18px;
|
||
color: var(--primary);
|
||
border-left: 4px solid var(--primary);
|
||
padding-left: 12px;
|
||
margin: 32px 0 16px;
|
||
}
|
||
h2:first-child { margin-top: 0; }
|
||
h3 { font-size: 15px; color: #111827; margin: 20px 0 10px; }
|
||
p { margin-bottom: 12px; font-size: 14px; }
|
||
.lead {
|
||
font-size: 15px;
|
||
color: #374151;
|
||
background: var(--primary-light);
|
||
border-radius: 8px;
|
||
padding: 16px 20px;
|
||
}
|
||
table.compare {
|
||
width: 100%;
|
||
border-collapse: collapse;
|
||
font-size: 13px;
|
||
margin: 16px 0 24px;
|
||
}
|
||
table.compare th,
|
||
table.compare td {
|
||
border: 1px solid var(--border);
|
||
padding: 10px 14px;
|
||
text-align: left;
|
||
vertical-align: top;
|
||
}
|
||
table.compare th { background: #f3f4f6; font-weight: 600; width: 22%; }
|
||
.pill {
|
||
display: inline-block;
|
||
font-size: 11px;
|
||
font-weight: 600;
|
||
padding: 2px 8px;
|
||
border-radius: 4px;
|
||
margin-right: 6px;
|
||
}
|
||
.pill-new { background: #dbeafe; color: #1d4ed8; }
|
||
.pill-old { background: #f3f4f6; color: #4b5563; }
|
||
ul.items { list-style: none; margin: 0 0 8px; }
|
||
ul.items > li {
|
||
position: relative;
|
||
padding: 8px 0 8px 20px;
|
||
font-size: 13.5px;
|
||
border-bottom: 1px dashed var(--border);
|
||
}
|
||
ul.items > li:last-child { border-bottom: none; }
|
||
ul.items > li::before {
|
||
content: "";
|
||
position: absolute;
|
||
left: 0;
|
||
top: 15px;
|
||
width: 6px;
|
||
height: 6px;
|
||
background: var(--primary);
|
||
border-radius: 50%;
|
||
}
|
||
ul.items strong { color: #111827; }
|
||
ul.items em { color: var(--muted); font-style: normal; font-size: 12.5px; }
|
||
.section-label {
|
||
display: inline-block;
|
||
font-size: 12px;
|
||
font-weight: 700;
|
||
color: #fff;
|
||
background: var(--primary);
|
||
padding: 3px 10px;
|
||
border-radius: 4px;
|
||
margin-bottom: 12px;
|
||
}
|
||
.migration-box {
|
||
background: #fffbeb;
|
||
border: 1px solid #fcd34d;
|
||
border-radius: 8px;
|
||
padding: 16px 20px;
|
||
}
|
||
.migration-box h3 { margin-top: 0; color: #92400e; }
|
||
.footer {
|
||
margin-top: 32px;
|
||
padding-top: 16px;
|
||
border-top: 1px solid var(--border);
|
||
font-size: 12px;
|
||
color: var(--muted);
|
||
text-align: center;
|
||
}
|
||
@media print {
|
||
body { background: #fff; padding: 0; }
|
||
.page { box-shadow: none; border-radius: 0; }
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="page">
|
||
<header class="cover">
|
||
<div class="tag">系统对比 · 迁移总结</div>
|
||
<h1>ONEOS 与旧资产管理平台<br />对比及迁移情况汇报</h1>
|
||
<div class="meta">
|
||
<span>新版系统:ONEOS</span>
|
||
<span>旧版系统:旧资产管理平台</span>
|
||
</div>
|
||
</header>
|
||
|
||
<main class="body">
|
||
<section>
|
||
<h2>一、汇报主旨</h2>
|
||
<p class="lead">
|
||
说明 <strong>ONEOS</strong> 相对 <strong>旧资产管理平台</strong> 在业务、运维两方面的核心优化,
|
||
以及旧系统向新系统的迁移成效,便于管理层快速把握建设成果与后续重点。
|
||
</p>
|
||
</section>
|
||
|
||
<section>
|
||
<h2>二、系统定位对比</h2>
|
||
<table class="compare">
|
||
<thead>
|
||
<tr>
|
||
<th>维度</th>
|
||
<th><span class="pill pill-new">ONEOS</span>新版</th>
|
||
<th><span class="pill pill-old">旧版</span>旧资产管理平台</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>定位</td>
|
||
<td>业务—财务—能源—运维一体化,数据由业务驱动、流程闭环</td>
|
||
<td>以资产管理为主,多环节依赖人工统计与线下协同</td>
|
||
</tr>
|
||
<tr>
|
||
<td>数据可信</td>
|
||
<td>关键数据来自业务单据,可追溯、不可随意篡改</td>
|
||
<td>部分可人工修改,易出现业务与账务不闭环</td>
|
||
</tr>
|
||
<tr>
|
||
<td>自动化</td>
|
||
<td>账单、收付款、对账、台账、报表自动或半自动</td>
|
||
<td>账单与能源对账等大量依赖人工汇总</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</section>
|
||
|
||
<section>
|
||
<h2>三、新版核心优化</h2>
|
||
|
||
<span class="section-label">A · 业务层面</span>
|
||
<ul class="items">
|
||
<li><strong>合同管理</strong>:归档合同改动可查询;支持新增车辆、转三方、快速续签、试用转正式、附加服务费用并留痕。<em>(旧:历史不留痕,无法一键转三方/续签)</em></li>
|
||
<li><strong>账单自动生成</strong>:提车应收、租赁账单、还车应结等按规则生成应收/实收,并产生待办提醒。</li>
|
||
<li><strong>收付款自动化</strong>:各业务线首付款逐步对接财务,自动形成收付款单,业务自主勾对流水。</li>
|
||
<li><strong>能源自助对账</strong>:氢电账单导入、一键对账;按车牌与加氢时间归集站端/客户对账单,支持能源账户自动扣费。<em>(旧:人工统计)</em></li>
|
||
<li><strong>台账自动生成</strong>:按实收统计期初账单、保证金余额;不足抵扣下期时预警。</li>
|
||
<li><strong>业务数据统计</strong>:按月统计租赁、自营、氢费、电费等业绩/成本/利润,支持全览→业务员→客户→项目→明细钻取。</li>
|
||
</ul>
|
||
|
||
<span class="section-label" style="margin-top: 24px;">B · 运维层面</span>
|
||
<ul class="items">
|
||
<li><strong>车辆全生命周期</strong>:采购至报废/销售统一在新系统发起,数据来自业务、不可随意篡改。<em>(旧:可人工改数,数据易脱节)</em></li>
|
||
<li><strong>日常备车</strong>:备车库提前备车,提升交车时效。<em>(旧:现场备车效率低、不确定性大)</em></li>
|
||
<li><strong>安全培训线上化</strong>:司机扫码上传证件、线上培训留痕。</li>
|
||
<li><strong>交还车优化</strong>:自动计算轮胎磨损、证照、无忧包减免等;连拍提效,单车约省 5 分钟。</li>
|
||
<li><strong>故障处理</strong>:微信群机器人 + AI 方案 + 工单;需人工时自动生成待办。</li>
|
||
<li><strong>维修管理</strong>:向维修站派单、站端接单上传、审核后对接财务(开发中)。</li>
|
||
<li><strong>运维数据统计</strong>:按月统计备车/交还车/调拨/异动等;故障、维修、保养(后两者计划第二版)。</li>
|
||
</ul>
|
||
</section>
|
||
|
||
<section>
|
||
<h2>四、迁移情况总结</h2>
|
||
<div class="migration-box">
|
||
<h3>总体判断</h3>
|
||
<p>
|
||
旧平台业务正分模块迁移至 <strong>ONEOS</strong>:<strong>业务财务主线</strong>(合同、账单、收付款、能源对账、台账、经营分析)已具备自动化与留痕;
|
||
<strong>运维主线</strong>(车辆全生命周期、交还车、备车、培训、故障、维修)已实现线上化与数据统计。
|
||
</p>
|
||
<p style="margin-bottom: 0;">
|
||
<strong>迁移价值</strong>:由「人盯人、表对表」转向「规则驱动 + 待办提醒 + 数据钻取」,显著降低人工对账、改数与重复录入成本;维修财务闭环(进行中)、保养统计(第二版规划)为后续重点。
|
||
</p>
|
||
</div>
|
||
</section>
|
||
|
||
<section>
|
||
<h2>五、关键对比一览</h2>
|
||
<table class="compare">
|
||
<thead>
|
||
<tr><th>能力域</th><th>旧资产管理平台</th><th>ONEOS</th></tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr><td>合同</td><td>改动难追溯;转三方/续签繁琐</td><td>全量留痕;多种扩展与一键操作</td></tr>
|
||
<tr><td>账单与收款</td><td>手工建账核对</td><td>规则生成应收实收 + 待办</td></tr>
|
||
<tr><td>氢/电对账</td><td>人工统计</td><td>导入、一键对账、自动扣费</td></tr>
|
||
<tr><td>经营分析</td><td>分散难下钻</td><td>按月统计 + 多级钻取</td></tr>
|
||
<tr><td>车辆数据</td><td>可人工改</td><td>业务驱动、不可随意篡改</td></tr>
|
||
<tr><td>交还车/备车</td><td>现场操作重</td><td>备车库 + 自动计费 + 连拍</td></tr>
|
||
<tr><td>故障与维修</td><td>记录分散</td><td>机器人+AI+工单+派单(财务对接开发中)</td></tr>
|
||
</tbody>
|
||
</table>
|
||
</section>
|
||
|
||
<p class="footer">文档生成日期:2026年5月 · 仅供内部汇报使用</p>
|
||
</main>
|
||
</div>
|
||
</body>
|
||
</html>
|