feat(order): 导入订单时新增结算相关字段支持
- 新增结算金额、实发金额、结算单价、税费和月份字段 - 支持从Excel导入时读取新增的结算相关数据 - 在订单实体中添加对应的字段定义和注解 - 根据导入数据设置用户ID并更新订单失效状态 - 完善导入逻辑以处理新增字段的数据映射
This commit is contained in:
@@ -95,6 +95,7 @@ public class SdyDealerOrderController extends BaseController {
|
|||||||
item.setComments(d.getComments());
|
item.setComments(d.getComments());
|
||||||
item.setPrice(d.getPrice());
|
item.setPrice(d.getPrice());
|
||||||
item.setSettledPrice(d.getSettledPrice());
|
item.setSettledPrice(d.getSettledPrice());
|
||||||
|
item.setPayPrice(d.getPayPrice());
|
||||||
item.setRate(d.getRate());
|
item.setRate(d.getRate());
|
||||||
item.setMonth(d.getMonth());
|
item.setMonth(d.getMonth());
|
||||||
item.setIsInvalid(1);
|
item.setIsInvalid(1);
|
||||||
|
|||||||
Reference in New Issue
Block a user