refs #5004
This commit is contained in:
parent
528a4bbda0
commit
76f8fdc8b8
|
@ -351,7 +351,7 @@ class SaleAdapter(
|
|||
itemArticleQuantityLine3.visibility = View.VISIBLE
|
||||
if (type != SACADOR) {
|
||||
|
||||
if (sale.hasMistake > 0) {
|
||||
if (sale.hasMistake) {
|
||||
val drawable = imageErrorMessage.drawable
|
||||
imageErrorMessage.imageTintList = ColorStateList.valueOf(
|
||||
getColor(
|
||||
|
|
|
@ -73,7 +73,7 @@ class SaleVO(
|
|||
var totalSales: Int = 0,
|
||||
var sonSales: MutableList<SaleVO> = mutableListOf(),
|
||||
var code: String = "",
|
||||
var hasMistake :Int = 0
|
||||
var hasMistake :Boolean = false
|
||||
|
||||
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue