(index)
| 1067 | } |
| 1068 | |
| 1069 | function fillFromBatchProfile(index) { |
| 1070 | const item = billingBatchProfiles[index]; |
| 1071 | if (!item) return; |
| 1072 | fillBillingForm(item.parsed || {}); |
| 1073 | const summary = buildParsedSummary(item.parsed || {}); |
| 1074 | setParseResult(`已填充第 ${index + 1} 条:${summary.join(" | ")}`, "success"); |
| 1075 | } |
| 1076 | |
| 1077 | function clearBillingText() { |
| 1078 | setInputValue("billing-paste-text", ""); |
nothing calls this directly
no test coverage detected