|
@@ -29,6 +29,7 @@ public class ApiService {
|
|
|
TbBusinessService tbBusinessService;
|
|
|
|
|
|
public List<InOutRecordBO> getInOutRecord(SoMap so){
|
|
|
+ //
|
|
|
int current = so.getInt("current");
|
|
|
List<TbBusiness> businessList = tbBusinessService.getList(so);
|
|
|
List<InOutRecordBO> recordList = new ArrayList<>();
|
|
@@ -54,6 +55,7 @@ public class ApiService {
|
|
|
}
|
|
|
|
|
|
public List<TbCostomer> getCustomerList(SoMap so) {
|
|
|
+ //
|
|
|
int current = so.getInt("current");
|
|
|
List<TbCostomer> costomerList = new ArrayList<>();
|
|
|
List<TbCostomer> list = tbCostomerService.getList(so);
|
|
@@ -68,6 +70,7 @@ public class ApiService {
|
|
|
}
|
|
|
|
|
|
public void confirmCustomer(Long customerId) {
|
|
|
+ //
|
|
|
TbCostomer costomer = tbCostomerService.getById(customerId);
|
|
|
if(costomer != null && costomer.getJudgeStatus() == 1){
|
|
|
tbCostomerService.judge(customerId + "", 2, "H5端审核");
|