Documentation Index
Fetch the complete documentation index at: https://docs.dualentry.com/llms.txt
Use this file to discover all available pages before exploring further.
How to Manage Fixed Assets
DualEntry’s fixed asset module tracks the full lifecycle of capital assets - from acquisition through depreciation to disposal. You create asset records, assign depreciation methods and books, run depreciation to generate journal entries, and record disposals or impairments when the time comes.Create an asset and assign a depreciation method
Each fixed asset in DualEntry is a record on the asset register, created either manually or via the API at/public/v2/fixed-assets/.
- Navigate to Fixed Assets → Add Asset.
- Enter the required fields: asset name, acquisition date, acquisition cost, and useful life (in months or units, depending on the depreciation method).
- Assign the asset to a fixed asset account (the balance sheet account that holds the asset’s cost) and an accumulated depreciation account. Both must already exist in your chart of accounts.
- Choose a depreciation method (see below).
- Optionally, assign the asset to a department, location, or other classification for reporting.
- Save. DualEntry creates the asset record and, if you posted an acquisition journal entry separately, links it.
You can also create asset records through the API. POST to
/public/v2/fixed-assets/ with the same fields. The API returns the fixed_asset_number, which you use for all subsequent operations on the asset.- Straight-line. Spreads the depreciable amount (cost minus salvage value) evenly over the useful life.
- Declining balance. Applies a fixed percentage to the remaining book value each period. You specify the declining-balance rate (for example, 200% for double-declining balance). DualEntry automatically switches to straight-line in the period where straight-line yields a higher charge, unless you disable the switch.
- Sum-of-years-digits. Accelerates depreciation by weighting earlier years more heavily. Each period’s fraction is the remaining useful life divided by the sum of all years’ digits.
- Units-of-production. Bases depreciation on actual usage rather than time. You enter the total estimated units and log units consumed each period. DualEntry calculates depreciation as (units consumed / total units) × depreciable amount.
Depreciation books and running depreciation
A depreciation book represents a set of depreciation rules applied to an asset. Most organizations maintain at least two books: one for GAAP (book) reporting and one for tax reporting. You manage books at/public/v2/depreciation-books/. Each book has a book_code (for example, GAAP or TAX), a depreciation method, and its own useful life and salvage value overrides. When you run depreciation, you select which book to process.
To create or edit a book:
- Navigate to Fixed Assets → Depreciation Books.
- Choose Add Book or select an existing book by
book_code. - Configure the method, useful life, salvage value, and convention (mid-month, mid-quarter, or full-month).
- Save.
- Navigate to Fixed Assets → Run Depreciation.
- Select the depreciation book and the period (month and year).
- Preview the proposed entries. DualEntry shows each asset, the calculated depreciation amount, and the accounts that will be debited and credited.
- Choose Post. DualEntry creates and posts the journal entries.
Disposals, retirements, and transfers
When you sell, scrap, or retire an asset, record the disposal in DualEntry to remove the asset from the register and recognize any gain or loss.- Open the asset record and choose Dispose.
- Enter the disposal date and disposal proceeds (zero for a scrapped asset).
- DualEntry calculates the gain or loss: proceeds minus the asset’s net book value (cost minus accumulated depreciation through the disposal date).
- Review the proposed journal entry. It debits accumulated depreciation, credits the fixed asset account, and records the gain or loss.
- Post the entry.
Impairment and reporting
When an asset’s recoverable amount drops below its carrying value, record an impairment loss.- Open the asset record and choose Record Impairment.
- Enter the impairment amount - the difference between carrying value and recoverable amount.
- DualEntry creates a journal entry that debits impairment loss (expense) and credits the asset account or a separate impairment allowance account, depending on your configuration.
- The asset’s depreciable base is reduced by the impairment amount. Future depreciation is calculated on the new, lower base.
- Asset Register. Lists all assets with acquisition cost, accumulated depreciation, net book value, and status. Filterable by entity, department, asset class, and book.
- Depreciation Schedule. Shows period-by-period depreciation for each asset in a selected book. Useful for forecasting future expense.
- Disposal Report. Lists all disposals in a date range with gain/loss calculations.
- Impairment Report. Summarizes impairments recorded in a date range.
/public/v2/fixed-assets/ with filters for status, entity, and date ranges. For related workflows, see Journal Entries and Period Locking.