feedback implemented
parent
c19c13a247
commit
136115a617
|
@ -38,12 +38,12 @@ public class SummaryActivity extends AppCompatActivity {
|
||||||
|
|
||||||
initialization();
|
initialization();
|
||||||
|
|
||||||
txtPercentage.setText(overallPercentage);
|
txtPercentage.setText(String.format("%s %%", overallPercentage));
|
||||||
txtCutting.setText(qualitySaveResponse.getCutting());
|
txtCutting.setText(String.format("%s %%", qualitySaveResponse.getCutting()));
|
||||||
txtStitching.setText(qualitySaveResponse.getStiching());
|
txtStitching.setText(String.format("%s %%", qualitySaveResponse.getStiching()));
|
||||||
txtChecking.setText(qualitySaveResponse.getChecking());
|
txtChecking.setText(String.format("%s %%", qualitySaveResponse.getChecking()));
|
||||||
txtPacking.setText(qualitySaveResponse.getPacking());
|
txtPacking.setText(String.format("%s %%", qualitySaveResponse.getPacking()));
|
||||||
txtSubStore.setText(qualitySaveResponse.getSub_Store());
|
txtSubStore.setText(String.format("%s %%", qualitySaveResponse.getSub_Store()));
|
||||||
txtReportId.setText(String.format("Report ID: %s", qualitySaveResponse.getReportId()));
|
txtReportId.setText(String.format("Report ID: %s", qualitySaveResponse.getReportId()));
|
||||||
|
|
||||||
img_back.setOnClickListener(new View.OnClickListener() {
|
img_back.setOnClickListener(new View.OnClickListener() {
|
||||||
|
|
|
@ -77,8 +77,8 @@ public class ItemStepsAdapter extends RecyclerView.Adapter<ItemStepsAdapter.Item
|
||||||
|
|
||||||
// Set data
|
// Set data
|
||||||
holder.et_remarks.setText(currentItem.getRemarks());
|
holder.et_remarks.setText(currentItem.getRemarks());
|
||||||
holder.tvPercentage.setText(currentItem.getPercentage());
|
holder.tvPercentage.setText(String.format("%s %%", currentItem.getPercentage()));
|
||||||
holder.et_remarks.setText(currentItem.getRemarks());
|
//holder.et_remarks.setText(currentItem.getRemarks());
|
||||||
isBinding = false;
|
isBinding = false;
|
||||||
|
|
||||||
holder.scoreTextview.setText(String.valueOf(dropdownOptions.get(currentItem.getSelectedOption())));
|
holder.scoreTextview.setText(String.valueOf(dropdownOptions.get(currentItem.getSelectedOption())));
|
||||||
|
|
|
@ -11,6 +11,10 @@ import retrofit2.converter.gson.GsonConverterFactory;
|
||||||
|
|
||||||
public class RetrofitClient {
|
public class RetrofitClient {
|
||||||
|
|
||||||
|
//Live url
|
||||||
|
//private final static String BASE_URL = "https://portal.utopiaindustries.pk/uind/";
|
||||||
|
|
||||||
|
//Test Url
|
||||||
private final static String BASE_URL = "http://192.168.91.44:8081/uind/";
|
private final static String BASE_URL = "http://192.168.91.44:8081/uind/";
|
||||||
|
|
||||||
private static Retrofit retrofit;
|
private static Retrofit retrofit;
|
||||||
|
|
Loading…
Reference in New Issue