### Example CSV Data for Axelor Account Import (CSV)
Source: https://context7.com/duplolab/axelor-open-suite/llms.txt
This section provides example CSV data files used for importing accounting master data into Axelor Open Suite. It demonstrates the expected format and content for account types, accounts, and fiscal positions, including fields like name, code, type, and related IDs.
```csv
# account_accountType.csv example
name;code;technicalTypeSelect;importId
Asset;ASSET;asset;1
Liability;LIABILITY;liability;2
Equity;EQUITY;equity;3
Income;INCOME;income;4
Expense;EXPENSE;expense;5
# account_account.csv example
importId;code;name;accountType;company;reconcileOk;statusSelect;defaultTaxSet
ACC001;411000;Customer Accounts;ASSET;1;true;1;VAT_20
ACC002;401000;Supplier Accounts;LIABILITY;1;true;1;
ACC003;512000;Bank Account;ASSET;1;true;1;
ACC004;707000;Sales Revenue;INCOME;1;false;1;VAT_20
ACC005;607000;Purchases;EXPENSE;1;false;1;VAT_20|VAT_10
# account_fiscalPosition.csv example
code;name;company
FP_DOMESTIC;Domestic;1
FP_EU;European Union;1
FP_EXPORT;Export;1
```
--------------------------------
### Company Form and Grid View Configuration (XML)
Source: https://context7.com/duplolab/axelor-open-suite/llms.txt
Defines the structure for displaying company data in both list (grid) and detail (form) views. It includes field definitions, data binding, conditional display logic, and actions triggered by user interactions.
```xml
```
--------------------------------
### Company Entity XML Domain Model
Source: https://context7.com/duplolab/axelor-open-suite/llms.txt
Defines the structure and relationships for the Company entity using Axelor's XML domain model configuration. It specifies fields like name, code, address, and various other organizational attributes, along with relationships to other entities like Address, Partner, and BankDetails.
```xml
```
--------------------------------
### Define Axelor Account Entity Domain Model in XML
Source: https://context7.com/duplolab/axelor-open-suite/llms.txt
This snippet defines the 'Account' entity for the financial management module in Axelor Open Suite. It specifies fields like name, code, parent account, account type, reconciliation status, company association, compatible accounts, default taxes, and analytic distribution requirements. It also includes custom logic for generating a full name and defines constants for common positions and status.
```xml
```
--------------------------------
### Configure CSV Import for Axelor Accounting Master Data (XML)
Source: https://context7.com/duplolab/axelor-open-suite/llms.txt
This XML configuration defines how accounting master data is imported from CSV files into Axelor Open Suite. It specifies the CSV file, data type, separator, search conditions for existing records, and field bindings with transformations. This enables flexible and robust data import processes.
```xml
```
--------------------------------
### Invoice Entity Definition (XML)
Source: https://context7.com/duplolab/axelor-open-suite/llms.txt
Defines the structure and attributes of the Invoice entity in the Axelor Open Suite domain model. It specifies fields for invoice identification, partner and company information, dates, accounting details, invoice lines, taxes, totals, status, and financial discounts. This XML configuration manages the database schema and entity behavior.
```xml
0 AND inv.amount_remaining != 0) THEN
(DATE(NOW())::DATE - inv.due_date::DATE) ELSE 0 END
from account_invoice inv WHERE inv.id = id
]]>
```
=== COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.