|
|
@@ -56,7 +56,7 @@ public class H5ProcureQuotationController {
|
|
|
if (query == null) {
|
|
|
query = new ProcureQuotation();
|
|
|
}
|
|
|
- QueryWrapper<ProcureQuotation> wrapper = procureQuotationController.buildWrapper(query, orgId);
|
|
|
+ QueryWrapper<ProcureQuotation> wrapper = new QueryWrapper<ProcureQuotation>().eq("org_id", orgId);
|
|
|
wrapper.eq("source", 2).eq("create_by", username);
|
|
|
Page<ProcureQuotation> pageObj = procureQuotationService.page(new Page<>(pageNum, pageSize), wrapper);
|
|
|
for (ProcureQuotation row : pageObj.getRecords()) {
|