# REV004 accountLog 操作链接线说明(2026-04-13) ## 结论 当前 `accountLog` 的 4 条操作链在后端契约层已具备接线条件,不需要继续补新的稳定字段;前端主要做提交映射即可。 ## 1. 查看流程 `log-process` - 前端来源:`handleProcess(row)` - 后端接口:`GET /business/accounting-adjust/log-process` - 后端入参:`adjustmentNo` - 当前行数据可用字段:`row.adjustmentNo` - 接线结论:可直接接 ## 2. 查看附件 `log-attachments` - 前端来源:`handleAttachment(row)` - 后端接口:`GET /business/accounting-adjust/log-attachments` - 后端入参:`adjustmentNo` - 当前行数据可用字段:`row.adjustmentNo` - 接线结论:可直接接 ## 3. 转退款 `log-refund` - 前端来源:`RefundForm` - 后端接口:`POST /business/accounting-adjust/log-refund` - 后端请求对象:`AccountingAdjustSecondaryActionReqVO` - 推荐映射: - `adjustmentNo = row.adjustmentNo` - `reason = form.remark` - `collectionMethod = form.collectionMethod` - `refundUser = form.refundUser` - `attachmentRefs` = 前端上传结果(如有) - 说明:前端 `refundAmount` 当前仅用于展示,不是后端必填字段 - 接线结论:可接,主要是前端提交映射 ## 4. 转预存 `log-prestorage` - 前端来源:`TransferPrestoreForm` - 后端接口:`POST /business/accounting-adjust/log-prestorage` - 后端请求对象:`AccountingAdjustSecondaryActionReqVO` - 推荐映射: - `adjustmentNo = row.adjustmentNo` - `targetCustCode = form.targetCustCode` - `reason = form.remark` - `attachmentRefs` = 前端上传结果(如有) - 说明:前端 `transferAmount` 当前仅用于展示,不是后端必填字段 - 接线结论:可接,主要是前端提交映射 ## 补充说明 - 本轮后端新增的 `accountLog.custId` 已可支撑前端客户编号点击后稳定跳客户详情。 - `sold` 当前列表/弹窗展示字段已基本满足,不建议继续为展示字段扩充后端响应。