{% extends "base.html" %} {% block contenido %} {%- if TESTING -%}
{%- endif -%}
{{ registro.code }} - {{ registro.name }} {% if registro.is_active %}{{ _('Activo') }}{% else %}{{ _('Inactivo') }}{% 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 '-' }}

{{ _('Clasificacion y flags') }}

{{ _('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') }}

{{ _('Inventario y precios') }}

{{ 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 '-' }}

{{ _('Descripcion') }}

{{ registro.description or '-' }}

{{ _('Unidades de medida') }}

{{ _('La unidad base es la referencia para todas las conversiones del item.') }}

{% for conversion in uom_conversions %} {% else %} {% endfor %}
{{ _('Conversiones UOM del item') }}
{{ _('UOM origen') }} {{ _('Unidad base') }} {{ _('Factor') }}
{{ conversion.from_uom }} {{ conversion.to_uom }} {{ conversion.conversion_factor }}
{{ _('No hay conversiones UOM configuradas.') }}
{{ _('Configuracion contable por compania') }}
{% for row in item_accounts %} {% else %} {% endfor %}
{{ _('Cuentas del item por compania') }}
{{ _('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.') }}
{% endblock %}