feat: refs#6889 addSale
This commit is contained in:
parent
3844855b19
commit
f499915ef4
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue