Food Baskets
Manage your food baskets for procurement
Mass Upload Food Baskets
Supported files: Excel (`.xlsx`, `.xls`) and XML (`.xml`). Limit: 500 ingredient rows per upload. Each row belongs to a food basket and also defines one ingredient inside that basket.
Column Names
Required: `basketName`, `ingredientCode`, `ingredientDescription`, `uom`, `unitPrice`, `categoryId`
Optional: `basketDescription`, `regionCode`, `clientCode`, `subcategoryId`, `standard`
Excel Header Example
basketName | basketDescription | regionCode | clientCode | ingredientCode | ingredientDescription | uom | unitPrice | categoryId | subcategoryId | standard
XML Item Example
<foodBasketRows>
<foodBasketRow>
<basketName>Standard Basket</basketName>
<basketDescription>Base basket</basketDescription>
<regionCode>EU-S</regionCode>
<clientCode>CSK</clientCode>
<ingredientCode>SAP-1001</ingredientCode>
<ingredientDescription>Chicken Breast</ingredientDescription>
<uom>kg</uom>
<unitPrice>7.50</unitPrice>
<categoryId>protein</categoryId>
<subcategoryId></subcategoryId>
<standard>Chicken Breast</standard>
</foodBasketRow>
</foodBasketRows>