feat: refs#8268 itemShelving_addRefactor

This commit is contained in:
Sergio De la torre 2025-03-24 12:19:25 +01:00
parent 2f639cc1c0
commit dd8894ff39
2 changed files with 13 additions and 3 deletions

View File

@ -1021,7 +1021,7 @@ class UbicadorFragment : BaseFragment<FragmentUbicadorBinding, UbicadorViewModel
val available = newAvailable ?: 0
val visible = newVisible ?: 0
val old = oldVisible ?: 0
return maxOf(available + visible - old, 0)
return maxOf(if (newVisible != 0) available + visible - old else 0, 0)
}
private fun insertShelvingsForUbicator(barCode: Number, visible: Int, packing: Int?) {

View File

@ -187,16 +187,26 @@ class UbicadorViewModel(val context: Context) : BaseViewModel(context) {
warehouse: Int,
grouping: Int?,
) {
//tarea 8268
salix.itemShelvingAdd(
arrayListOf(
shelving,
item,
quantity,
null,
grouping,
packing,
warehouse,
).formatWithQuotes()
/* salix.itemShelvingAdd(
arrayListOf(
shelving,
item,
quantity,
null,
grouping,
packing,
warehouse,
).formatWithQuotes()*/
).enqueue(object : SalixCallback<Any>(context) {
override fun onResponse(call: Call<Any>, response: Response<Any>) {