refs #6964 feat:hasOlderItem

This commit is contained in:
Sergio De la torre 2024-03-06 12:49:02 +01:00
parent e67b6fbf12
commit 47a768004b
4 changed files with 11 additions and 7 deletions

View File

@ -1,4 +1,3 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <project version="4">
<component name="DesignSurface"> <component name="DesignSurface">
<option name="filePathToZoomLevelMap"> <option name="filePathToZoomLevelMap">

View File

@ -13,8 +13,8 @@ android {
applicationId "es.verdnatura" applicationId "es.verdnatura"
minSdkVersion 26 minSdkVersion 26
targetSdkVersion 33 // se deja con target si no Play Protect la bloquea targetSdkVersion 33 // se deja con target si no Play Protect la bloquea
versionCode 260 versionCode 262
versionName = "24.8Beta" //23.48Beta son la misma versionName = "24.8Beta"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
} }
@ -37,9 +37,6 @@ android {
create("general") { create("general") {
//versionNameSuffix = "General" //versionNameSuffix = "General"
} }
create("alpha") {
applicationIdSuffix = ".alpha"
}
} }
buildFeatures { buildFeatures {
@ -75,6 +72,8 @@ dependencies {
implementation 'com.google.firebase:firebase-crashlytics-ktx:18.6.1' implementation 'com.google.firebase:firebase-crashlytics-ktx:18.6.1'
implementation 'com.google.firebase:firebase-analytics-ktx:21.5.0' implementation 'com.google.firebase:firebase-analytics-ktx:21.5.0'
implementation 'com.google.android.gms:play-services-location:21.1.0' implementation 'com.google.android.gms:play-services-location:21.1.0'
implementation 'androidx.navigation:navigation-fragment-ktx:2.7.7'
implementation 'androidx.navigation:navigation-ui-ktx:2.7.7'
kapt "androidx.room:room-compiler:2.6.1" kapt "androidx.room:room-compiler:2.6.1"
implementation 'androidx.room:room-ktx:2.6.1' implementation 'androidx.room:room-ktx:2.6.1'
debugImplementation fileTree(dir: 'libs/debug', include: ['*.jar']) debugImplementation fileTree(dir: 'libs/debug', include: ['*.jar'])

View File

@ -257,7 +257,7 @@ class DataStoreLocal(var mobileApplication: MobileApplication) {
} }
saveWorkForm( saveWorkForm(
WorkForms( WorkForms(
"Añadir...", mobileApplication.getString(R.string.addWorkForm),
"", "",
"", "",
created = Calendar.getInstance().timeInMillis + Calendar.getInstance().timeInMillis created = Calendar.getInstance().timeInMillis + Calendar.getInstance().timeInMillis

View File

@ -429,6 +429,12 @@ interface SalixService {
@Query("schema") schema: String = "vn" @Query("schema") schema: String = "vn"
): Call<Any> ): Call<Any>
@GET("ItemShelvings/hasItemOlder")
fun hasItemOlder(
@Query("shelvingFk") shelving: Any? = null,
@Query("parking") parking: Any? = null,
): Call<Any>
@POST("Applications/sectorCollectionSaleGroup_add/execute-proc") @POST("Applications/sectorCollectionSaleGroup_add/execute-proc")
fun sectorCollectionSaleGroupAdd( fun sectorCollectionSaleGroupAdd(
@Query("params") params: Any? = null, @Query("params") params: Any? = null,