fix updates

This commit is contained in:
2024-02-09 13:04:38 +05:30
parent 40933a2713
commit 6ca803d7f2
4 changed files with 1025 additions and 34 deletions

View File

@@ -246,6 +246,9 @@ data class ContactPerson(val name: String = "", val email: String = "", val mobi
@Entity
open class Vendor : BaseTenantModel() {
fun patchValues(updatedVendor : Vendor) {
}
var name: String = ""
var msme: String = ""
var gstNumber: String = ""
@@ -258,6 +261,9 @@ open class Vendor : BaseTenantModel() {
@Entity
open class PurchaseOrder : BaseTenantModel() {
fun patchValues(updatedPo : PurchaseOrder){
}
@DbJsonB
var products: MutableList<POProducts> = mutableListOf()
@@ -300,6 +306,10 @@ open class Product : BaseTenantModel() {
@Entity
open class Quotation : BaseTenantModel() {
fun patchValues(updatedQuote : Quotation) {
}
@DbJsonB
var products: MutableList<POProducts> = mutableListOf()