|
@@ -262,6 +262,7 @@ public class invCardManageAction implements IMINAction {
|
|
|
MINSession session) throws Exception {
|
|
|
MINActionResult res = new MINActionResult();
|
|
|
User user = session.getUser();
|
|
|
+ String branchId = user.getBranchId();
|
|
|
Map<String, String> m = new HashMap<String, String>();
|
|
|
m.put("machineNo", machineNo);
|
|
|
m.put("orderNo", orderNo);
|
|
@@ -269,6 +270,7 @@ public class invCardManageAction implements IMINAction {
|
|
|
m.put("equrelId", equrelId);
|
|
|
m.put("vciId", vciId);
|
|
|
m.put("pickupNo", pickupNo);
|
|
|
+ m.put("branchId", branchId);
|
|
|
MINRowBounds rows = new MINRowBounds(page, limit);
|
|
|
List<Map<String, String>> detailList = Service.lookup(IMINDataBaseService.class)
|
|
|
.getMybatisMapper(OrderManageMapper.class).selectPickupRecord(m,rows);
|
|
@@ -306,6 +308,7 @@ public class invCardManageAction implements IMINAction {
|
|
|
MINSession session) throws Exception {
|
|
|
MINActionResult res = new MINActionResult();
|
|
|
User user = session.getUser();
|
|
|
+ String branchId = user.getBranchId();
|
|
|
Map<String, String> m = new HashMap<String, String>();
|
|
|
m.put("machineNo", machineNo);
|
|
|
m.put("pickUpCode", pickUpCode);
|
|
@@ -313,6 +316,7 @@ public class invCardManageAction implements IMINAction {
|
|
|
m.put("creatdDtes", creatdDtes);
|
|
|
m.put("pickUpDates", pickUpDates);
|
|
|
m.put("pickUpState", pickUpState);
|
|
|
+ m.put("branchId", branchId);
|
|
|
MINRowBounds rows = new MINRowBounds(page, limit);
|
|
|
List<Map<String, String>> detailList = Service.lookup(IMINDataBaseService.class)
|
|
|
.getMybatisMapper(OrderManageMapper.class).selectOrderDetail(m,rows);
|