fix updates
This commit is contained in:
@@ -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()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user