Fixed assets (activos fijos) are the durable, trackable items your unit owns — chairs, projectors, microphones, musical instruments, and anything else that you want to monitor over time. Unlike consumables, assets are not depleted through use; they are loaned out, returned, repaired, or eventually retired.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/ChrisCore1/inventario_sud/llms.txt
Use this file to discover all available pages before exploring further.
Asset fields
Each asset record in theArticulo table stores the following fields:
| Field | Type | Description |
|---|---|---|
nombre | varchar(150) | Display name of the asset |
cantidad | integer | Total quantity of this asset registered in inventory |
estado_fisico | varchar(50) | Physical condition: Bueno, Regular, or Dañado |
estado_disponibilidad | varchar(50) | Availability state: Disponible, Prestado, No Disponible, or Agotado/Baja |
id_categoria | integer | Foreign key to Categoria |
id_ubicacion | integer | Foreign key to Ubicacion |
When you register an asset with
estado_fisico = "Dañado", the system automatically sets estado_disponibilidad to "No Disponible". For all other physical states (Bueno, Regular), the initial availability is set to "Disponible".Register a new asset
Open the assets page
Navigate to Activos fijos from the sidebar. The assets table lists all active (non-deleted) assets.
Click Register
Click the Registrar activo button to open the registration modal (
RegisterAssetModal).Fill in the asset details
Enter the asset name, quantity, physical status, category, and location. All fields are required.
Edit an asset
Update fields
You can change the name, quantity, physical status, availability status, category, and location. Unlike registration, editing lets you set
estado_disponibilidad directly.Retire an asset (Dar de Baja)
When an asset is no longer in service, you can soft-delete it. ThedarDeBajaActivo action:
- Sets
is_deleted = trueon theArticulorecord. - Sets
estado_disponibilidad = "Agotado/Baja"to reflect the retirement. - Logs the action to the audit trail.
