fix: Resolve build errors

- Add missing quantity field to Item model
- Add missing string resources and translations
- Fix unresolved references in UI screens
This commit is contained in:
2025-08-18 16:15:01 +03:00
parent 7e2e6009f7
commit cf4fc7a535
39 changed files with 2859 additions and 623 deletions

View File

@@ -12,6 +12,7 @@ import java.math.BigDecimal
* @property id Уникальный идентификатор вещи.
* @property name Название вещи.
* @property description Описание вещи.
* @property quantity Количество.
* @property image Url изображения.
* @property location Местоположение вещи.
* @property labels Список меток, присвоенных вещи.
@@ -22,6 +23,7 @@ data class Item(
val id: String,
val name: String,
val description: String?,
val quantity: Int,
val image: String?,
val location: Location?,
val labels: List<Label>,