提交 bcfbe8cb authored 作者: lgd's avatar lgd

1.修改退单参数

2.//TODO 坩埚下单,mes其他页面,mes用户反馈空也展示,编辑任务担当无法修改
上级 5b28ac69
...@@ -1908,7 +1908,7 @@ ...@@ -1908,7 +1908,7 @@
<activity <activity
android:name=".ui.activity.bat.order.ReturnDetailActivity" android:name=".ui.activity.bat.order.ReturnDetailActivity"
android:configChanges="keyboardHidden|orientation" android:configChanges="keyboardHidden|orientation"
android:label="退详情" android:label="退详情"
android:launchMode="singleTop" android:launchMode="singleTop"
android:screenOrientation="portrait" android:screenOrientation="portrait"
android:theme="@style/Work.Base" android:theme="@style/Work.Base"
...@@ -1924,7 +1924,7 @@ ...@@ -1924,7 +1924,7 @@
<activity <activity
android:name=".ui.activity.bat.order.ReturnAddActivity" android:name=".ui.activity.bat.order.ReturnAddActivity"
android:configChanges="keyboardHidden|orientation" android:configChanges="keyboardHidden|orientation"
android:label="新增退" android:label="新增退"
android:launchMode="singleTop" android:launchMode="singleTop"
android:screenOrientation="portrait" android:screenOrientation="portrait"
android:theme="@style/Work.Base" android:theme="@style/Work.Base"
......
...@@ -289,6 +289,7 @@ public class CrucibleOrderDetailActivity extends WorkToolBarActivity { ...@@ -289,6 +289,7 @@ public class CrucibleOrderDetailActivity extends WorkToolBarActivity {
"identity", identity, "identity", identity,
"status", dataBean.getStatus() + "", "status", dataBean.getStatus() + "",
"enterStockType",dataBean.getEnterStockType(), "enterStockType",dataBean.getEnterStockType(),
"deptId",dataBean.getLaunchDeptId()+"",
"returnNum",TextUtils.equals(dataBean.getEnterStockType(),"1")? "returnNum",TextUtils.equals(dataBean.getEnterStockType(),"1")?
proList.get(position).getCanOutReturnSum(): proList.get(position).getCanUsedReturnSum(), proList.get(position).getCanOutReturnSum(): proList.get(position).getCanUsedReturnSum(),
"orderType", dataBean.getExpandInfo().getOrderType(), "orderType", dataBean.getExpandInfo().getOrderType(),
......
...@@ -249,6 +249,7 @@ public class InsideOrderDetailActivity extends WorkToolBarActivity { ...@@ -249,6 +249,7 @@ public class InsideOrderDetailActivity extends WorkToolBarActivity {
"identity", identity, "identity", identity,
"status", dataBean.getStatus() + "", "status", dataBean.getStatus() + "",
"enterStockType",dataBean.getEnterStockType(), "enterStockType",dataBean.getEnterStockType(),
"deptId",dataBean.getLaunchDeptId()+"",
"returnNum",TextUtils.equals(dataBean.getEnterStockType(),"1")? "returnNum",TextUtils.equals(dataBean.getEnterStockType(),"1")?
proList.get(position).getCanOutReturnSum(): proList.get(position).getCanUsedReturnSum(), proList.get(position).getCanOutReturnSum(): proList.get(position).getCanUsedReturnSum(),
"orderType", dataBean.getExpandInfo().getOrderType(), "orderType", dataBean.getExpandInfo().getOrderType(),
......
...@@ -301,6 +301,7 @@ public class OutOrderDetailActivity extends WorkToolBarActivity { ...@@ -301,6 +301,7 @@ public class OutOrderDetailActivity extends WorkToolBarActivity {
"status", dataBean.getStatus() + "", "status", dataBean.getStatus() + "",
"orderType", dataBean.getExpandInfo().getOrderType(), "orderType", dataBean.getExpandInfo().getOrderType(),
"enterStockType",dataBean.getEnterStockType(), "enterStockType",dataBean.getEnterStockType(),
"deptId",dataBean.getLaunchDeptId()+"",
"returnNum",TextUtils.equals(dataBean.getEnterStockType(),"1")? "returnNum",TextUtils.equals(dataBean.getEnterStockType(),"1")?
proList.get(position).getCanOutReturnSum(): proList.get(position).getCanUsedReturnSum(), proList.get(position).getCanOutReturnSum(): proList.get(position).getCanUsedReturnSum(),
"num", proList.get(position).getCanUseProductSum() + "", "num", proList.get(position).getCanUseProductSum() + "",
......
...@@ -141,6 +141,7 @@ public class ProductOrderDetailActivity extends WorkToolBarActivity { ...@@ -141,6 +141,7 @@ public class ProductOrderDetailActivity extends WorkToolBarActivity {
"status", dataBean.getStatus() + "", "status", dataBean.getStatus() + "",
"num", proList.get(position).getCanUseProductSum() + "", "num", proList.get(position).getCanUseProductSum() + "",
"enterStockType", dataBean.getEnterStockType(), "enterStockType", dataBean.getEnterStockType(),
"deptId",dataBean.getLaunchDeptId()+"",
"returnNum", TextUtils.equals(dataBean.getEnterStockType(), "1") ? "returnNum", TextUtils.equals(dataBean.getEnterStockType(), "1") ?
proList.get(position).getCanOutReturnSum() : proList.get(position).getCanUsedReturnSum(), proList.get(position).getCanOutReturnSum() : proList.get(position).getCanUsedReturnSum(),
"product", proList.get(position).getProductName(), "product", proList.get(position).getProductName(),
......
...@@ -217,7 +217,7 @@ public class ReturnAddActivity extends WorkToolBarActivity { ...@@ -217,7 +217,7 @@ public class ReturnAddActivity extends WorkToolBarActivity {
private void getDept() { private void getDept() {
RtfUtils.getRtf().returnDept(UserKeeper.getInstance().getUserDepId()).compose(Transformer.schedule()).subscribe(new WorkObserver<BaseBean>() { RtfUtils.getRtf().returnDept(getIntent().getStringExtra("deptId")).compose(Transformer.schedule()).subscribe(new WorkObserver<BaseBean>() {
@Override @Override
public void doOnSubscribe(Disposable d) { public void doOnSubscribe(Disposable d) {
} }
......
...@@ -212,6 +212,7 @@ public class ReturnApplyActivity extends WorkToolBarActivity { ...@@ -212,6 +212,7 @@ public class ReturnApplyActivity extends WorkToolBarActivity {
"productId", getIntent().getStringExtra("productId"), "productId", getIntent().getStringExtra("productId"),
"orderItemId", getIntent().getStringExtra("orderItemId"), "orderItemId", getIntent().getStringExtra("orderItemId"),
"enterStockType", getIntent().getStringExtra("enterStockType"), "enterStockType", getIntent().getStringExtra("enterStockType"),
"deptId", getIntent().getStringExtra("deptId"),
"id", getIntent().getStringExtra("orderId")); "id", getIntent().getStringExtra("orderId"));
break; break;
} }
......
...@@ -278,6 +278,7 @@ public class SaleOrderDetailActivity extends WorkToolBarActivity { ...@@ -278,6 +278,7 @@ public class SaleOrderDetailActivity extends WorkToolBarActivity {
"status", dataBean.getStatus() + "", "status", dataBean.getStatus() + "",
"num", proList.get(position).getCanUseProductSum() + "", "num", proList.get(position).getCanUseProductSum() + "",
"enterStockType", dataBean.getEnterStockType(), "enterStockType", dataBean.getEnterStockType(),
"deptId",dataBean.getLaunchDeptId()+"",
"returnNum", proList.get(position).getCanUseProductSum() + "", "returnNum", proList.get(position).getCanUseProductSum() + "",
"orderType", dataBean.getExpandInfo().getOrderType(), "orderType", dataBean.getExpandInfo().getOrderType(),
"product", proList.get(position).getProductName(), "product", proList.get(position).getProductName(),
......
...@@ -266,6 +266,7 @@ public class SupplierOrderDetailActivity extends WorkToolBarActivity { ...@@ -266,6 +266,7 @@ public class SupplierOrderDetailActivity extends WorkToolBarActivity {
"identity", identity, "identity", identity,
"status", dataBean.getStatus() + "", "status", dataBean.getStatus() + "",
"enterStockType",dataBean.getEnterStockType(), "enterStockType",dataBean.getEnterStockType(),
"deptId",dataBean.getLaunchDeptId()+"",
"returnNum",TextUtils.equals(dataBean.getEnterStockType(),"1")? "returnNum",TextUtils.equals(dataBean.getEnterStockType(),"1")?
proList.get(position).getCanOutReturnSum(): proList.get(position).getCanUsedReturnSum(), proList.get(position).getCanOutReturnSum(): proList.get(position).getCanUsedReturnSum(),
"orderType", dataBean.getExpandInfo().getOrderType(), "orderType", dataBean.getExpandInfo().getOrderType(),
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论