add plant to out

This commit is contained in:
gowthaman
2024-05-28 13:14:30 +05:30
parent 36c11fabc1
commit ae539ae285
3 changed files with 23 additions and 1 deletions

View File

@@ -24,10 +24,10 @@ open class IncomingInventory : BaseTenantModel() {
var mrn: String? = null
var date: LocalDate? = null
var vendorBillNum: String? = null
var unloadingPlantId: String? = null
var vendorBillAmount: Double = 0.0
var vehicle: String = ""
var loading: String? = ""
var unloadingPlantId: String? = null
var unloading: String? = ""
@DbJsonB
@@ -50,11 +50,15 @@ open class OutgoingInventory : BaseTenantModel() {
this.outMode = updated.outMode
this.person = updated.person
this.vehicle = updated.vehicle
this.unloading = updated.unloading
this.unloadingPlantId = updated.unloadingPlantId
}
var mdn: String? = null
var date: LocalDate? = null
var unloadingPlantId: String? = null
var unloading: String? = ""
@DbJsonB
var products: List<POProducts>? = null