# Connect Manager AI Context: Docs
> AI-Optimized View generated at 2026-04-14 10:10:56

# Albaranes de Proveedor

<!-- Note: Content converted from HTML/Markdown mixed -->
# Albaranes de Proveedor

Los albaranes de entrada se indican dentro del elemento `IncomingDeliveryNotes`.

## Ejemplo XML

```xml
<IncomingDeliveryNotes>
  <IncomingDeliveryNote Serie="IDN" Number="1" SupplierDocumentNumber="A4422" Date="2010-10-10" Invoiced="false">
    <Warehouse Id="1" Name="Almacén Global" />
    <Supplier Id="2" FiscalName="Arcoiris" />
    <Lines>
      <Line ProductId="1" quantity="10.00" Price="1.00" TotalAmount="8.90" />
    </Lines>
  </IncomingDeliveryNote>
</IncomingDeliveryNotes>
```

## Ejemplo JSON

```json
{
  "IncomingDeliveryNotes": [
    {
      "Serie": "IDN",
      "Number": 1,
      "SupplierDocumentNumber": "AP1234",
      "Date": "2018-12-19",
      "Invoiced": true,
      "Warehouse": { "Id": 1, "Name": "Almacén Global" },
      "Lines": [
        { "ProductId": 2, "Quantity": 10.00, "Price": 1.00, "TotalAmount": 9.00 }
      ]
    }
  ]
}
```

## Atributos

| Campo | Descripción |
|-------|-------------|
| **Serie** | Serie del albarán de entrada. |
| **Number** | Número del albarán. |
| **SupplierDocumentNumber** | Referencia del proveedor. |
| **Invoiced** | Indica si ha sido facturado (true/false). |
| **Confirmed** | Indica si está confirmado (true/false) para afectar stock. |
| **Lines** | Líneas recibidas, incluyendo Lotes si aplica. |
