feat: refs#6889 addSale

This commit is contained in:
Sergio De la torre 2025-03-24 12:34:48 +01:00
parent 3844855b19
commit f499915ef4
1 changed files with 10 additions and 3 deletions

View File

@ -408,7 +408,8 @@ interface SalixService {
fun addSale(
@Path("id") id: Number,
@Query("quantity") quantity: Number,
@Query("barcode") barcode: String
@Query("barcode") barcode: String,
@Query("isAdded") isAdded: Boolean = true
): Call<Any>
@POST("Collections/assign")
@ -1054,11 +1055,17 @@ interface SalixService {
@Path("id") id: Number
): Call<ItemShelving>
@POST("ItemShelvingSales/itemShelvingSale_addByCollection")
@POST("Applications/itemShelvingSale_addByCollection/execute-proc")
fun itemShelvingSaleAddByCollection(
@Body params: Any,
@Query("schema") schema: String = "vn",
@Query("params") params: Any? = null
): Call<Any>
/* @POST("ItemShelvingSales/itemShelvingSale_addByCollection")
fun itemShelvingSaleAddByCollection(
@Body params: Any,
): Call<Any>*/
@POST("ItemShelvings/getInventory")
fun getInventoryParking(
@Query("parkingFrom") parkingFrom: String, @Query("parkingTo") parkingTo: String