Finish v1_9_1(95)

This commit is contained in:
Giuseppe Scorrano 2019-11-11 16:17:11 +01:00
commit 5537d29e95
9 changed files with 69 additions and 46 deletions

View File

@ -17,8 +17,8 @@ apply plugin: 'com.google.gms.google-services'
android {
def appVersionCode = 94
def appVersionName = '1.9.0'
def appVersionCode = 95
def appVersionName = '1.9.1'
signingConfigs {
release {

View File

@ -22,8 +22,8 @@ public class UltimeConsegneClienteRESTConsumer {
public static void getUltimeConsegneClienti(String codMdep, String codAnag, String codMart, RunnableArgs<ArrayList<DocumentoResoDTO>> onComplete, RunnableArgs<Exception> onFailed) {
int numberOfConsegnePerCli = 10;
int numberOfDayToAnalyze = 90;
int numberOfConsegnePerCli = 100;
int numberOfDayToAnalyze = 365;
String sql = "SELECT consegne.*, " +
" rag_soc," +

View File

@ -15,8 +15,8 @@ public class UltimiArriviFornitoreRESTConsumer {
public static void getUltimeConsegneFornitori(String codMdep, String codAnag, String codMart, RunnableArgs<ArrayList<DocumentoResoDTO>> onComplete, RunnableArgs<Exception> onFailed) {
int numberOfConsegnePerForn = 20;
int numberOfDayToAnalyze = 90;
int numberOfConsegnePerForn = 100;
int numberOfDayToAnalyze = 365;
String sql = "SELECT consegne.*, " +
" rag_soc " +

View File

@ -68,7 +68,7 @@
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/ship_date">
android:hint="@string/document_date">
<com.google.android.material.textfield.TextInputEditText

View File

@ -68,7 +68,7 @@
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/ship_date">
android:hint="@string/document_date">
<com.google.android.material.textfield.TextInputEditText

View File

@ -3,29 +3,40 @@
<LinearLayout
<androidx.cardview.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="wrap_content">
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="2dp"
android:layout_marginEnd="2dp"
android:layout_marginTop="12dp"
android:layout_marginBottom="8dp"
app:cardElevation="0dp"
app:cardCornerRadius="4dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingStart="8dp"
android:paddingEnd="8dp"
android:paddingTop="8dp"
android:paddingBottom="8dp"
android:background="@color/gray_200">
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/AppTheme.NewMaterial.Text.ListDivider"
android:layout_marginStart="14dp"
android:layout_marginEnd="14dp"
android:layout_marginTop="14dp"
android:textAllCaps="true"
android:ellipsize="end"
android:singleLine="true"
android:textStyle="bold"
android:textColor="@color/colorAccent"
android:textColor="@android:color/black"
tools:text="Title here"/>
</LinearLayout>
</RelativeLayout>
</androidx.cardview.widget.CardView>
</layout>

View File

@ -3,28 +3,38 @@
<LinearLayout
<androidx.cardview.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="wrap_content">
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="2dp"
android:layout_marginEnd="2dp"
android:layout_marginTop="12dp"
android:layout_marginBottom="8dp"
app:cardElevation="0dp"
app:cardCornerRadius="4dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingStart="8dp"
android:paddingEnd="8dp"
android:paddingTop="8dp"
android:paddingBottom="8dp"
android:background="@color/gray_200">
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/AppTheme.NewMaterial.Text.ListDivider"
android:layout_marginStart="14dp"
android:layout_marginEnd="14dp"
android:layout_marginTop="14dp"
android:textAllCaps="true"
android:ellipsize="end"
android:singleLine="true"
android:textStyle="bold"
android:textColor="@color/colorAccent"
android:textColor="@android:color/black"
tools:text="Title here"/>
</LinearLayout>
</RelativeLayout>
</androidx.cardview.widget.CardView>
</layout>

View File

@ -181,6 +181,7 @@
<string name="customer">Cliente</string>
<string name="recipient">Destinatario</string>
<string name="ship_date">Data consegna</string>
<string name="document_date">Data documento</string>
<string name="terms_of_delivery">Termini di consegna</string>
<string name="vehicle">Automezzo</string>
<string name="deposit">Deposito</string>

View File

@ -184,6 +184,7 @@
<string name="customer">Customer</string>
<string name="recipient">Recipient</string>
<string name="ship_date">Ship date</string>
<string name="document_date">Document date</string>
<string name="terms_of_delivery">Terms of delivery</string>
<string name="vehicle">Vehicle</string>
<string name="deposit">Deposit</string>