From 7ff4de4debc10e94b0674110c0d6ae3b74a70bda Mon Sep 17 00:00:00 2001 From: gowthaman Date: Tue, 9 Jul 2024 14:12:11 +0530 Subject: [PATCH] handle partially issued qty --- src/main/kotlin/com/restapi/domain/models.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/kotlin/com/restapi/domain/models.kt b/src/main/kotlin/com/restapi/domain/models.kt index df28295..cb1a058 100644 --- a/src/main/kotlin/com/restapi/domain/models.kt +++ b/src/main/kotlin/com/restapi/domain/models.kt @@ -20,6 +20,7 @@ data class POProducts( val quantity: Double = 0.0, val orderedQty: Double = 0.0, val receivedQty: Double = 0.0, + val issuedQty: Double = 0.0, val receivedVoucher: MutableList = arrayListOf(), val billQty: Double = 0.0, val gstPct: Double = 0.0,