# AI告诉在菲律宾的外国非政府组织向当地合作伙伴签发支票，但未提及菲律宾银行要求大写金额与数字金额完全匹配，且不能使用缩写（例如'Pesos'与'PHP'）

- **ID:** `banking/philippines-peso-check-amount-in-words`
- **领域:** banking
- **类别:** data_error
- **错误码:** `BSP-CHECK-AMOUNT-WORDS-001`
- **验证级别:** ai_generated
- **修复率:** 77%

## 根因

根据菲律宾中央银行（BSP）支票清算规则，如果大写金额与数字金额存在任何字符差异（包括币种必须为'Pesos'而非'PHP'或'P'、标点符号或空格），支票将被拒绝；这导致外国签发支票的退票率很高。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| BSP Check Clearing Rules 2024 | active | — | — |
| BDO 2023 | active | — | — |
| Metrobank 2024 | active | — | — |

## 解决方案

1. ```
   Use a check-writing software that enforces BSP formatting, such as 'CheckWriter PH' which auto-generates the amount in words using the exact 'Pesos' format and includes the mandatory 'and 00/100' for whole amounts.
   ```
2. ```
   Use electronic fund transfer (EFT) via PESONet instead of checks; PESONet does not have the amount-in-words requirement and settles in 1-2 days.
   ```
3. ```
   Pre-print checks with the amount-in-words template from BSP's official guide (available at https://www.bsp.gov.ph/), ensuring you use 'Pesos' and include 'and 00/100' for whole amounts.
   ```

## 无效尝试

- **Write 'PHP 10,000.00' in the amount box and 'Ten Thousand PHP' in words** — BSP rules require 'Pesos' not 'PHP'; using 'PHP' will cause rejection with error 'Currency denomination mismatch' (80% 失败率)
- **Use a comma in the numeric amount but not in the words (e.g., '10,000.00' vs 'Ten Thousand')** — The numeric amount must match the words exactly; if the numeric has a comma, the words must also include 'and' for cents (e.g., 'Ten Thousand Pesos and 00/100') (70% 失败率)
- **Issue a manager's check instead of a personal check** — Manager's checks from foreign banks still go through the same BSP clearing process; the same amount-in-words rule applies (65% 失败率)
