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