feat: refs#8268 itemShelving_addRefactor
This commit is contained in:
parent
2f639cc1c0
commit
dd8894ff39
|
@ -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?) {
|
||||
|
|
|
@ -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>) {
|
||||
|
||||
|
|
Loading…
Reference in New Issue