Interface SalesService
-
public interface SalesService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description retrofit2.Call<SalesReport>getSalesReport(java.lang.Integer cloudId, java.lang.Integer branchId, java.lang.String dateRange, java.lang.Boolean isVatPayer)
-
-
-
Method Detail
-
getSalesReport
@GET("report/{cloudId}/{branchId}") retrofit2.Call<SalesReport> getSalesReport(@Path("cloudId") java.lang.Integer cloudId, @Path("branchId") java.lang.Integer branchId, @Query("dateRange") java.lang.String dateRange, @Query("vatPayer") java.lang.Boolean isVatPayer)- Parameters:
cloudId- - cloud idbranchId- - branch iddateRange- - Date in format: [from]-[to] yyyy/MM/dd-yyyy/MM/dd | Timestamp in format: [start]-[end]: Long-LongisVatPayer- - Name of the field for given dateRange filter
-
-