{% extends "base.html" %} {% block contenido %} {%- if TESTING -%}
{%- endif -%}{{ registro.code }}
{{ registro.name }}
{{ item_category.name if item_category else '-' }}
{{ registro.item_type or '-' }}
{{ registro.default_uom or '-' }}
{{ registro.purchase_uom or '-' }}
{{ registro.sale_uom or '-' }}
{{ registro.barcode or '-' }}
{{ registro.brand or '-' }}
{{ registro.model_name or '-' }}
{{ _('Si') if registro.is_stock_item else _('No') }}
{{ _('Si') if registro.is_purchase_item else _('No') }}
{{ _('Si') if registro.is_sale_item else _('No') }}
{{ _('Si') if registro.has_batch else _('No') }}
{{ _('Si') if registro.has_serial_no else _('No') }}
{{ _('Si') if registro.has_expiry_date else _('No') }}
{{ _('Si') if registro.allow_negative_stock else _('No') }}
{{ default_warehouse.name if default_warehouse else '-' }}
{{ registro.min_stock_qty or '-' }}
{{ registro.max_stock_qty or '-' }}
{{ registro.reorder_level or '-' }}
{{ registro.standard_rate or '-' }}
{{ registro.last_purchase_rate or '-' }}
{{ registro.currency or '-' }}
{{ default_supplier.name if default_supplier else '-' }}
{{ registro.description or '-' }}
{{ _('La unidad base es la referencia para todas las conversiones del item.') }}
| {{ _('UOM origen') }} | {{ _('Unidad base') }} | {{ _('Factor') }} |
|---|---|---|
| {{ conversion.from_uom }} | {{ conversion.to_uom }} | {{ conversion.conversion_factor }} |
| {{ _('No hay conversiones UOM configuradas.') }} | ||
| {{ _('Compania') }} | {{ _('Gasto') }} | {{ _('Ingresos') }} | {{ _('COGS') }} | {{ _('Ajuste') }} | {{ _('Centro costo') }} |
|---|---|---|---|---|---|
| {{ row.company }} | {{ row.expense_account_id or '-' }} | {{ row.income_account_id or '-' }} | {{ row.cogs_account_id or '-' }} | {{ row.stock_adjustment_account_id or '-' }} | {{ row.cost_center_code or '-' }} |
| {{ _('No hay configuracion contable por compania.') }} | |||||