This commit is contained in:
2024-01-19 15:04:08 +05:30
4 changed files with 100 additions and 45 deletions

View File

@@ -274,6 +274,7 @@ enum class UOM {
}
@Entity
open class Product :BaseTenantModel() {
var id: Int? = null
var name :String = ""
var description :String = ""
var hsnCode :String = ""
@@ -322,8 +323,8 @@ open class ReqForQuote :BaseTenantModel() {
var potentialVendors :List<Long>? = null
@Enumerated(EnumType.STRING)
var status :RFQStatus? = null
@DbArray
var docs :List<Document>? = null
// @DbArray
// var docs :List<Document>? = null
@DbJsonB
var products :List<POProducts>? = null
var reqForQuoteNum: String? = null