Browse Source

no message

master
lh 7 years ago
parent
commit
aa339ea93d
2 changed files with 3 additions and 3 deletions
  1. +1
    -1
      app/build.gradle
  2. +2
    -2
      app/src/main/java/com/qhclh/ytzh/work/tablepoultry/ReportActivity.java

+ 1
- 1
app/build.gradle View File

@ -10,7 +10,7 @@ android {
minSdkVersion 15
targetSdkVersion 26
versionCode 1
versionName "1.2.7"
versionName "1.2.8"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
ndk {


+ 2
- 2
app/src/main/java/com/qhclh/ytzh/work/tablepoultry/ReportActivity.java View File

@ -95,7 +95,7 @@ public class ReportActivity extends BaseActivity {
buildhouseList.clear();
reportBeanList.clear();
for (int i=0;i<rpc.size();i++){
buildhouseList.add(new ReportString(rpc.get(i).getLong("House_ID"),""+(i+1)));
buildhouseList.add(new ReportString(rpc.get(i).getLong("ID"),""+(i+1)));
String days = "";
if (rpc.get(i).getInt("Days")!=null) {
days = rpc.get(i).getInt("Days") + "";
@ -117,7 +117,7 @@ public class ReportActivity extends BaseActivity {
if (rpc.get(i).getDecimal("Weight")!=null){
weight = rpc.get(i).getDecimal("Weight")+"";
}
reportBeanList.add(new ReportBean(rpc.get(i).getLong("House_ID")
reportBeanList.add(new ReportBean(rpc.get(i).getLong("ID")
,days
,dies
,obs


Loading…
Cancel
Save