|
@@ -227,7 +227,8 @@ public class PreProcessingReportFragment extends BaseFragment implements View.On
|
|
|
bean= new MaintainitemBean(
|
|
|
data.getString("MM_PRODCODE"),
|
|
|
data.getString("PR_DETAIL"),
|
|
|
- data.getString("PR_SPEC"));
|
|
|
+ data.getString("PR_SPEC"),
|
|
|
+ data.getString("PR_SPEC3_USER"));
|
|
|
mFeededList.add(bean);
|
|
|
}
|
|
|
setAdapter(mFeededList);
|
|
@@ -598,6 +599,7 @@ public class PreProcessingReportFragment extends BaseFragment implements View.On
|
|
|
((ListItemViewHolder) holder).tv_liaocode.setText("物料编号:"+mList.get(i).getMM_PRODCODE());
|
|
|
((ListItemViewHolder) holder).tv_liaotetall.setText("物料名称:"+mList.get(i).getPR_DETAIL());
|
|
|
((ListItemViewHolder) holder).tv_liaospec.setText("物料规格:"+mList.get(i).getPR_SPEC());
|
|
|
+ ((ListItemViewHolder) holder).tv_liaospec3.setText("物料规格3:"+mList.get(i).getPR_SPEC3_USER());
|
|
|
|
|
|
|
|
|
((ListItemViewHolder) holder).checkBox.setChecked(isItemChecked(i));
|
|
@@ -654,12 +656,14 @@ public class PreProcessingReportFragment extends BaseFragment implements View.On
|
|
|
TextView tv_liaocode;
|
|
|
TextView tv_liaotetall;
|
|
|
TextView tv_liaospec;
|
|
|
+ TextView tv_liaospec3;
|
|
|
ListItemViewHolder(View view) {
|
|
|
super(view);
|
|
|
this.tv_liaocode = (TextView) view.findViewById(R.id.tv_liaocode);
|
|
|
this.tv_liaotetall = (TextView) view.findViewById(R.id.tv_liaotetall);
|
|
|
this.tv_liaospec = (TextView) view.findViewById(R.id.tv_liaospec);
|
|
|
this.checkBox = (CheckBox) view.findViewById(R.id.select_checkbox);
|
|
|
+ this.tv_liaospec3 = (TextView) view.findViewById(R.id.tv_liaospec3);
|
|
|
|
|
|
}
|
|
|
}
|