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