> ## Documentation Index
> Fetch the complete documentation index at: https://docs.abbyy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Supported countries for receipts

> Table of countries supported by the Receipts project, with country and currency codes, plus a script for presetting the receipt country.

A **Receipts** project can be used to capture receipts from any of the countries listed in the table below. The appropriate country will be detected by a classifier.

| **Country**        | **Country code** | **Currency code** |
| ------------------ | ---------------- | ----------------- |
| Angola             | AO               | AOA               |
| Argentina          | AR               | ARS               |
| Australia          | AU               | AUD               |
| Austria            | AT               | EUR               |
| Belgium            | BE               | EUR               |
| Bolivia            | BO               | BOB               |
| Brazil             | BR               | BRL               |
| Canada             | CA               | CAD               |
| Chile              | CL               | CLP               |
| China              | CN               | CNY               |
| Colombia           | CO               | COP               |
| Costa Rica         | CR               | CRC               |
| Czech Republic     | CZ               | CZK               |
| Denmark            | DK               | DKK               |
| Dominican Republic | DO               | DOP               |
| Ecuador            | EC               | USD               |
| El Salvador        | SV               | USD               |
| Estonia            | EE               | EUR               |
| Finland            | FI               | EUR               |
| France             | FR               | EUR               |
| Germany            | DE               | EUR               |
| Guatemala          | GT               | GTQ               |
| Honduras           | HN               | HNL               |
| Hong Kong          | HK               | HKD               |
| Ireland            | IE               | EUR               |
| Italy              | IT               | EUR               |
| Jordan             | JO               | JOD               |
| Kenya              | KE               | KES               |
| Luxembourg         | LU               | EUR               |
| Malaysia           | MY               | MYR               |
| Mexico             | MX               | MXN               |
| Netherlands        | NL               | EUR               |
| New Zealand        | NZ               | NZD               |
| Norway             | NO               | NOK               |
| Panama             | PA               | PAB               |
| Peru               | PE               | PEN               |
| Poland             | PL               | PLN               |
| Portugal           | PT               | EUR               |
| Russia             | RU               | RUB               |
| Singapore          | SG               | SGD               |
| South Africa       | ZA               | ZAR               |
| Spain              | ES               | EUR               |
| Sweden             | SE               | SEK               |
| Switzerland        | CH               | CHF               |
| Thailand           | TH               | THB               |
| Turkey             | TR               | TRY               |
| UAE                | AE               | AED               |
| United Kingdom     | GB               | GBP               |
| Uruguay            | UY               | UYU               |
| USA                | US               | USD               |

<Note>
  Only the English language is supported for Chinese receipts.
</Note>

## Preset a country

If you process receipts from one particular country, you can specify that country's two-letter code in the `fc_Predefined:ReceiptPredefinedCountries` [registration parameter](/flexi-capture/project-settings/reg-params). This way, the program does not need a classifier to detect the country.

Add the parameter with an [event handling script](/flexi-capture/appendix/scripts-shell/events-appendix-scripts-shell) that is triggered whenever a new document is added. Set up the script in one of these locations:

* The [Batch Type Tools](/flexi-capture/project-settings/batch-type-tools) dialog box.
* A [custom processing stage](/flexi-capture/project-settings/workflow-stages), if you are using a distributed edition of the program.

For more information, see [Scripts for processing interface events](/flexi-capture/appendix/scripts-shell/scripts-main).

### Example: specify a country with a script

In this example, Canadian receipts are processed.

<Steps>
  <Step title="Open Project Properties">
    Prior to loading your images, click **Project → Project Properties**.
  </Step>

  <Step title="Edit the After document created handler">
    On the **Event Handlers** tab, select **After document created** and click **Edit Script**.
  </Step>

  <Step title="Enter the script">
    In the dialog box that opens, enter the following code, where "CA" is the two-letter code for Canada from the table above:

    ```js theme={null}
    Document.Properties.Set("fc_Predefined:ReceiptPredefinedCountries", "CA");
    ```
  </Step>
</Steps>

Now any receipts you feed to the program are automatically deemed to be Canadian.
