|
|
@@ -139,16 +139,18 @@ public class ProductCheckFragment extends BaseFragment implements View.OnClickLi
|
|
|
mCaptionValueBeans.add(new CaptionValueBean("数量", FastjsonUtil.getText(dataObject, "QTY")));
|
|
|
mCaptionValueBeans.add(new CaptionValueBean("批号", FastjsonUtil.getText(dataObject, "LOTNO")));
|
|
|
String stachecknum = FastjsonUtil.getText(dataObject, "STACHECKNUM");
|
|
|
- mCaptionValueBeans.add(new CaptionValueBean("标准抽样数", stachecknum));
|
|
|
+ mCaptionValueBeans.add(new CaptionValueBean("AQL标准抽样数", stachecknum));
|
|
|
mCaptionValueBeans.add(new CaptionValueBean("封装形式", FastjsonUtil.getText(dataObject, "BAN_PKG")));
|
|
|
mCaptionValueBeans.add(new CaptionValueBean("放大倍数", FastjsonUtil.getText(dataObject, "BAN_TS")));
|
|
|
mCaptionValueBeans.add(new CaptionValueBean("开关时间", FastjsonUtil.getText(dataObject, "BAN_HFE")));
|
|
|
mCaptionValueBeans.add(new CaptionValueBean("反压参数", FastjsonUtil.getText(dataObject, "BAN_BVDSS")));
|
|
|
mCaptionValueBeans.add(new CaptionValueBean("管体批码", FastjsonUtil.getText(dataObject, "BAN_LOTNO")));
|
|
|
+ String standersampdqty = FastjsonUtil.getText(dataObject, "PR_STANDERSAMPDQTY");
|
|
|
+ mCaptionValueBeans.add(new CaptionValueBean("标准抽样数", standersampdqty));
|
|
|
|
|
|
mCommonFormAdapter.notifyDataSetChanged();
|
|
|
|
|
|
- mRealNumEditText.setText(stachecknum);
|
|
|
+ mRealNumEditText.setText(standersampdqty);
|
|
|
JSONArray checkitems = dataObject.getJSONArray("CHECKITEMS");
|
|
|
if (checkitems != null && checkitems.size() > 0) {
|
|
|
mSpotCheckLinearLayout.setVisibility(View.VISIBLE);
|
|
|
@@ -156,7 +158,7 @@ public class ProductCheckFragment extends BaseFragment implements View.OnClickLi
|
|
|
String checkname = checkitems.getString(i);
|
|
|
SpotCheckBean spotCheckBean = new SpotCheckBean();
|
|
|
spotCheckBean.setCheckname(checkname);
|
|
|
- spotCheckBean.setChecknum(stachecknum);
|
|
|
+ spotCheckBean.setChecknum("0");
|
|
|
|
|
|
mSpotCheckBeans.add(spotCheckBean);
|
|
|
}
|