|
@@ -366,11 +366,33 @@ public class SalesOrderController {
|
|
|
return msg;
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * @Description:获取首页商机阶段表格数据
|
|
|
+ * @Param: [queryType, dateType]
|
|
|
+ * @return: com.management.platform.util.HttpRespMsg
|
|
|
+ * @Author: yurk
|
|
|
+ * @Date: 2024/5/21
|
|
|
+ */
|
|
|
@RequestMapping("/businessOpportunityStage")
|
|
|
public HttpRespMsg businessOpportunityStage(Integer queryType,Integer dateType){
|
|
|
return salesOrderService.businessOpportunityStage(queryType,dateType);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * @Description:获取订单相关回款数据
|
|
|
+ * @Param: [orderId]
|
|
|
+ * @return: com.management.platform.util.HttpRespMsg
|
|
|
+ * @Author: yurk
|
|
|
+ * @Date: 2024/5/21
|
|
|
+ */
|
|
|
+ @RequestMapping("/paymentCollectionList")
|
|
|
+ public HttpRespMsg paymentCollectionList(Integer orderId){
|
|
|
+ HttpRespMsg msg=new HttpRespMsg();
|
|
|
+ List<SalesOrderPayment> list = salesOrderPaymentService.list(new LambdaQueryWrapper<SalesOrderPayment>().eq(SalesOrderPayment::getOrderId, orderId));
|
|
|
+ msg.setData(list);
|
|
|
+ return msg;
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
}
|
|
|
|