|
@@ -157,16 +157,24 @@ public class SalesOrderController {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * 导入订单
|
|
|
- * */
|
|
|
+ * @Description:导入订单数据
|
|
|
+ * @Param: [multipartFile]
|
|
|
+ * @return: com.management.platform.util.HttpRespMsg
|
|
|
+ * @Author: yurk
|
|
|
+ * @Date: 2024/5/14
|
|
|
+ */
|
|
|
@RequestMapping("/importData")
|
|
|
public HttpRespMsg importData(MultipartFile multipartFile){
|
|
|
return salesOrderService.importData(multipartFile);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * 导出订单
|
|
|
- * */
|
|
|
+ * @Description:导出订单数据
|
|
|
+ * @Param: [userId, orderName, orderCode, productCode]
|
|
|
+ * @return: com.management.platform.util.HttpRespMsg
|
|
|
+ * @Author: yurk
|
|
|
+ * @Date: 2024/5/14
|
|
|
+ */
|
|
|
@RequestMapping("/exportData")
|
|
|
public HttpRespMsg exportData(String userId, String orderName,String orderCode, String productCode) throws Exception {
|
|
|
return salesOrderService.exportData(userId,orderName,orderCode,productCode);
|