82 changed files with 4361 additions and 387 deletions
@ -0,0 +1,34 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.dto; |
||||
|
||||
import com.logpm.statistics.entity.ExpenseDispatchTrainDetailChangeEntity; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 配送成本-车辆成本结算表-异动记录 数据传输对象实体类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-03 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class ExpenseDispatchTrainDetailChangeDTO extends ExpenseDispatchTrainDetailChangeEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
} |
@ -0,0 +1,34 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.dto; |
||||
|
||||
import com.logpm.statistics.entity.ExpenseWarehouseTransitChangeEntity; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 仓储成本-中转仓作业成本-操作记录 数据传输对象实体类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class ExpenseWarehouseTransitChangeDTO extends ExpenseWarehouseTransitChangeEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
} |
@ -0,0 +1,34 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.dto; |
||||
|
||||
import com.logpm.statistics.entity.ExpenseWarehouseTransitChangeImageEntity; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 仓储成本-中转仓作业成本-操作-图片 数据传输对象实体类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class ExpenseWarehouseTransitChangeImageDTO extends ExpenseWarehouseTransitChangeImageEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
} |
@ -0,0 +1,34 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.dto; |
||||
|
||||
import com.logpm.statistics.entity.ExpenseWarehouseTransitEntity; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 中转仓仓储作业明细 数据传输对象实体类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class ExpenseWarehouseTransitDTO extends ExpenseWarehouseTransitEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
} |
@ -0,0 +1,34 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.dto; |
||||
|
||||
import com.logpm.statistics.entity.ExpenseWarehouseTransitMonthEntity; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 中转仓月度仓储作业账单 数据传输对象实体类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class ExpenseWarehouseTransitMonthDTO extends ExpenseWarehouseTransitMonthEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
} |
@ -0,0 +1,65 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.tenant.mp.TenantEntity; |
||||
|
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* 配送成本-车辆成本结算表-异动明细 实体类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-07-29 |
||||
*/ |
||||
@Data |
||||
@TableName("logpm_expense_dispatch_train_detail_change") |
||||
@ApiModel(value = "ExpenseDispatchTrainDetailChange对象", description = "配送成本-车辆成本结算表-异动明细") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class ExpenseDispatchTrainDetailChangeEntity extends TenantEntity { |
||||
/** |
||||
* 异动金额 |
||||
*/ |
||||
@ApiModelProperty(value = "异动金额") |
||||
private Double changeAmount; |
||||
/** |
||||
* 异动备注 |
||||
*/ |
||||
@ApiModelProperty(value = "异动备注") |
||||
private String changeNote; |
||||
/** |
||||
* 异动时间 |
||||
*/ |
||||
@ApiModelProperty(value = "异动时间") |
||||
private Date changeTime; |
||||
/** |
||||
* 异动操作人 |
||||
*/ |
||||
@ApiModelProperty(value = "异动操作人") |
||||
private String changeOperator; |
||||
/** |
||||
* 结算表id |
||||
*/ |
||||
@ApiModelProperty(value = "结算表id") |
||||
private String detailId; |
||||
|
||||
} |
@ -0,0 +1,56 @@
|
||||
package com.logpm.statistics.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.tenant.mp.TenantEntity; |
||||
|
||||
import java.math.BigDecimal; |
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* 仓储成本-中转仓作业成本-操作记录 |
||||
* |
||||
* @author zqb |
||||
* @create 2024-12-09 |
||||
*/ |
||||
@Data |
||||
@TableName("logpm_expense_warehouse_transit_change") |
||||
@ApiModel(value = "ExpenseWarehouseTransitChange对象", description = "仓储成本-中转仓作业成本-操作记录") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class ExpenseWarehouseTransitChangeEntity extends TenantEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
/** |
||||
* 类型(异动/结算) |
||||
*/ |
||||
@ApiModelProperty(value = "类型(异动/结算)") |
||||
private String type; |
||||
/** |
||||
* 金额 |
||||
*/ |
||||
@ApiModelProperty(value = "金额") |
||||
private BigDecimal changeAmount; |
||||
/** |
||||
* 时间 |
||||
*/ |
||||
@ApiModelProperty(value = "时间") |
||||
private Date changeTime; |
||||
/** |
||||
* 备注 |
||||
*/ |
||||
@ApiModelProperty(value = "备注") |
||||
private String changeNote; |
||||
/** |
||||
* 操作人 |
||||
*/ |
||||
@ApiModelProperty(value = "操作人") |
||||
private String changeOperator; |
||||
/** |
||||
* 结算表id |
||||
*/ |
||||
@ApiModelProperty(value = "结算表id") |
||||
private Long detailId; |
||||
|
||||
} |
@ -0,0 +1,33 @@
|
||||
package com.logpm.statistics.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.tenant.mp.TenantEntity; |
||||
|
||||
/** |
||||
* 仓储成本-中转仓作业成本-操作-图片 |
||||
* |
||||
* @author zqb |
||||
* @create 2024-12-09 |
||||
*/ |
||||
@Data |
||||
@TableName("logpm_expense_warehouse_transit_change_image") |
||||
@ApiModel(value = "ExpenseWarehouseTransitChangeImage对象", description = "仓储成本-中转仓作业成本-操作-图片") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class ExpenseWarehouseTransitChangeImageEntity extends TenantEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
/** |
||||
* 操作id |
||||
*/ |
||||
@ApiModelProperty(value = "操作id") |
||||
private Long changeId; |
||||
/** |
||||
* 图片url |
||||
*/ |
||||
@ApiModelProperty(value = "图片url") |
||||
private String imageUrl; |
||||
|
||||
} |
@ -0,0 +1,95 @@
|
||||
package com.logpm.statistics.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.tenant.mp.TenantEntity; |
||||
|
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* 中转仓仓储作业明细 |
||||
* |
||||
* @author zqb |
||||
* @create 2024-12-09 |
||||
*/ |
||||
@Data |
||||
@TableName("logpm_expense_warehouse_transit") |
||||
@ApiModel(value = "ExpenseWarehouseTransit对象", description = "中转仓仓储作业明细") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class ExpenseWarehouseTransitEntity extends TenantEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
/** |
||||
* 操作时间 |
||||
*/ |
||||
@ApiModelProperty(value = "操作时间") |
||||
private Date taskTime; |
||||
/** |
||||
* 确认分摊时间-年 |
||||
*/ |
||||
@ApiModelProperty(value = "确认分摊时间-年") |
||||
private Integer confirmAllocationYear; |
||||
/** |
||||
* 确认分摊时间-月 |
||||
*/ |
||||
@ApiModelProperty(value = "确认分摊时间-月") |
||||
private Integer confirmAllocationMonth; |
||||
/** |
||||
* 确认分摊时间-日 |
||||
*/ |
||||
@ApiModelProperty(value = "确认分摊时间-日") |
||||
private Integer confirmAllocationDay; |
||||
/** |
||||
* 确认分摊时间 |
||||
*/ |
||||
@ApiModelProperty(value = "确认分摊时间") |
||||
private Date confirmAllocationTime; |
||||
/** |
||||
* 中转仓 |
||||
*/ |
||||
@ApiModelProperty(value = "中转仓") |
||||
private String transitWarehouseName; |
||||
/** |
||||
* 目的仓 |
||||
*/ |
||||
@ApiModelProperty(value = "目的仓") |
||||
private String destinationWarehouseName; |
||||
/** |
||||
* 作业类型 |
||||
*/ |
||||
@ApiModelProperty(value = "作业类型") |
||||
private String workType; |
||||
/** |
||||
* 包件类型 |
||||
*/ |
||||
@ApiModelProperty(value = "包件类型") |
||||
private String packageType; |
||||
/** |
||||
* 包条码 |
||||
*/ |
||||
@ApiModelProperty(value = "包条码") |
||||
private String packageCode; |
||||
/** |
||||
* 订单 |
||||
*/ |
||||
@ApiModelProperty(value = "订单") |
||||
private String orderCode; |
||||
/** |
||||
* 运单编号 |
||||
*/ |
||||
@ApiModelProperty(value = "运单编号") |
||||
private String waybillNumber; |
||||
/** |
||||
* 车次号 |
||||
*/ |
||||
@ApiModelProperty(value = "车次号") |
||||
private String trainNumber; |
||||
/** |
||||
* 件数 |
||||
*/ |
||||
@ApiModelProperty(value = "件数") |
||||
private Integer num; |
||||
|
||||
} |
@ -0,0 +1,68 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.controller; |
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
||||
import com.logpm.statistics.entity.ExpenseDispatchTrainDetailChangeEntity; |
||||
import com.logpm.statistics.service.IExpenseDispatchTrainDetailChangeService; |
||||
import com.logpm.statistics.vo.ExpenseDispatchTrainDetailChangeVO; |
||||
import io.swagger.annotations.Api; |
||||
import io.swagger.annotations.ApiOperation; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springblade.core.boot.ctrl.BladeController; |
||||
import org.springblade.core.mp.support.Condition; |
||||
import org.springblade.core.mp.support.Query; |
||||
import org.springblade.core.secure.utils.AuthUtil; |
||||
import org.springblade.core.tool.api.R; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.PostMapping; |
||||
import org.springframework.web.bind.annotation.RequestBody; |
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
import javax.validation.Valid; |
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* 配送成本-车辆成本结算表-异动记录 控制器 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-03 |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("/expenseDispatchTrainDetailChange") |
||||
@Api(value = "配送成本-车辆成本结算表-异动记录", tags = "配送成本-车辆成本结算表-异动记录接口") |
||||
public class ExpenseDispatchTrainDetailChangeController extends BladeController { |
||||
|
||||
private final IExpenseDispatchTrainDetailChangeService expenseDispatchTrainDetailChangeService; |
||||
|
||||
/** |
||||
* 配送成本-车辆成本结算表-异动记录 自定义分页 |
||||
*/ |
||||
@GetMapping("/page") |
||||
@ApiOperationSupport(order = 3) |
||||
@ApiOperation(value = "异动记录", notes = "异动记录") |
||||
public R<IPage<ExpenseDispatchTrainDetailChangeVO>> page(ExpenseDispatchTrainDetailChangeVO expenseDispatchTrainDetailChange, Query query) { |
||||
IPage<ExpenseDispatchTrainDetailChangeVO> pages = expenseDispatchTrainDetailChangeService.selectExpenseDispatchTrainDetailChangePage(Condition.getPage(query), expenseDispatchTrainDetailChange); |
||||
return R.data(pages); |
||||
} |
||||
|
||||
|
||||
|
||||
} |
@ -0,0 +1,58 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.controller; |
||||
|
||||
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
||||
import com.logpm.statistics.service.IExpenseWarehouseTransitChangeService; |
||||
import com.logpm.statistics.vo.ExpenseWarehouseTransitChangeVO; |
||||
import io.swagger.annotations.Api; |
||||
import io.swagger.annotations.ApiOperation; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springblade.core.boot.ctrl.BladeController; |
||||
import org.springblade.core.tool.api.R; |
||||
import org.springframework.validation.annotation.Validated; |
||||
import org.springframework.web.bind.annotation.PostMapping; |
||||
import org.springframework.web.bind.annotation.RequestBody; |
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
/** |
||||
* 仓储成本-中转仓作业成本-操作记录 控制器 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("/expenseWarehouseTransitChange") |
||||
@Api(value = "仓储成本-中转仓作业成本-操作记录", tags = "仓储成本-中转仓作业成本-操作记录接口") |
||||
public class ExpenseWarehouseTransitChangeController extends BladeController { |
||||
|
||||
private final IExpenseWarehouseTransitChangeService expenseWarehouseTransitChangeService; |
||||
|
||||
/** |
||||
* 仓储成本-中转仓作业成本-操作记录 新增 |
||||
*/ |
||||
@PostMapping("/save") |
||||
@ApiOperationSupport(order = 4) |
||||
@ApiOperation(value = "新增", notes = "传入expenseWarehouseTransitChange") |
||||
public R save(@Validated @RequestBody ExpenseWarehouseTransitChangeVO expenseWarehouseTransitChange) { |
||||
boolean save = expenseWarehouseTransitChangeService.saveDetail(expenseWarehouseTransitChange); |
||||
return R.status(save); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,65 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.controller; |
||||
|
||||
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
||||
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
||||
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
||||
import com.logpm.statistics.entity.ExpenseWarehouseTransitChangeImageEntity; |
||||
import com.logpm.statistics.service.IExpenseWarehouseTransitChangeImageService; |
||||
import io.swagger.annotations.Api; |
||||
import io.swagger.annotations.ApiOperation; |
||||
import io.swagger.annotations.ApiParam; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springblade.core.boot.ctrl.BladeController; |
||||
import org.springblade.core.tool.api.R; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
import org.springframework.web.bind.annotation.RequestParam; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 仓储成本-中转仓作业成本-操作-图片 控制器 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("/expenseWarehouseTransitChangeImage") |
||||
@Api(value = "仓储成本-中转仓作业成本-操作-图片", tags = "仓储成本-中转仓作业成本-操作-图片接口") |
||||
public class ExpenseWarehouseTransitChangeImageController extends BladeController { |
||||
|
||||
private final IExpenseWarehouseTransitChangeImageService expenseWarehouseTransitChangeImageService; |
||||
|
||||
/** |
||||
* 仓储成本-中转仓作业成本-操作-图片 详情 |
||||
*/ |
||||
@GetMapping("/imageList") |
||||
@ApiOperationSupport(order = 1) |
||||
@ApiOperation(value = "图片列表", notes = "图片列表") |
||||
public R<List<ExpenseWarehouseTransitChangeImageEntity>> imageList(@ApiParam(value = "操作id") @RequestParam("changeId") Long changeId) { |
||||
LambdaQueryWrapper<ExpenseWarehouseTransitChangeImageEntity> wrapper = Wrappers.<ExpenseWarehouseTransitChangeImageEntity>lambdaQuery() |
||||
.select(ExpenseWarehouseTransitChangeImageEntity::getImageUrl) |
||||
.eq(ExpenseWarehouseTransitChangeImageEntity::getChangeId, changeId); |
||||
List<ExpenseWarehouseTransitChangeImageEntity> list = expenseWarehouseTransitChangeImageService.list(wrapper); |
||||
return R.data(list); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,66 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.controller; |
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
||||
import com.logpm.statistics.query.ExpenseWarehouseTransitQuery; |
||||
import com.logpm.statistics.service.IExpenseWarehouseTransitService; |
||||
import com.logpm.statistics.vo.ExpenseWarehouseTransitVO; |
||||
import io.swagger.annotations.Api; |
||||
import io.swagger.annotations.ApiOperation; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springblade.core.boot.ctrl.BladeController; |
||||
import org.springblade.core.tool.api.R; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
import javax.servlet.http.HttpServletResponse; |
||||
|
||||
/** |
||||
* 中转仓仓储作业明细 控制器 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("/expenseWarehouseTransit") |
||||
@Api(value = "中转仓仓储作业明细", tags = "中转仓仓储作业明细接口") |
||||
public class ExpenseWarehouseTransitController extends BladeController { |
||||
|
||||
private final IExpenseWarehouseTransitService expenseWarehouseTransitService; |
||||
|
||||
/** |
||||
* 中转仓仓储作业明细 自定义分页 |
||||
*/ |
||||
@GetMapping("/page") |
||||
@ApiOperationSupport(order = 3) |
||||
@ApiOperation(value = "分页", notes = "传入expenseWarehouseTransit") |
||||
public R<IPage<ExpenseWarehouseTransitVO>> page(ExpenseWarehouseTransitQuery query) { |
||||
IPage<ExpenseWarehouseTransitVO> pages = expenseWarehouseTransitService.selectExpenseWarehouseTransitPage(query); |
||||
return R.data(pages); |
||||
} |
||||
|
||||
@GetMapping("/exportTransit") |
||||
@ApiOperation(value = "导出中转仓仓储作业明细", notes = "导出中转仓仓储作业明细") |
||||
public void exportTransit(HttpServletResponse response, ExpenseWarehouseTransitQuery query) { |
||||
expenseWarehouseTransitService.exportTransit(response, query); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,93 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.controller; |
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
||||
import com.logpm.statistics.query.ExpenseWarehouseTransitMonthQuery; |
||||
import com.logpm.statistics.service.IExpenseWarehouseTransitMonthService; |
||||
import com.logpm.statistics.vo.ExpenseWarehouseTransitMonthVO; |
||||
import io.swagger.annotations.Api; |
||||
import io.swagger.annotations.ApiOperation; |
||||
import io.swagger.annotations.ApiParam; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springblade.core.boot.ctrl.BladeController; |
||||
import org.springblade.core.tool.api.R; |
||||
import org.springframework.validation.annotation.Validated; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.PostMapping; |
||||
import org.springframework.web.bind.annotation.RequestBody; |
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
import org.springframework.web.bind.annotation.RequestParam; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
import javax.servlet.http.HttpServletResponse; |
||||
|
||||
/** |
||||
* 中转仓月度仓储作业账单 控制器 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("/expenseWarehouseTransitMonth") |
||||
@Api(value = "中转仓月度仓储作业账单", tags = "中转仓月度仓储作业账单接口") |
||||
public class ExpenseWarehouseTransitMonthController extends BladeController { |
||||
|
||||
private final IExpenseWarehouseTransitMonthService expenseWarehouseTransitMonthService; |
||||
|
||||
/** |
||||
* 中转仓月度仓储作业账单 详情 |
||||
*/ |
||||
@GetMapping("/detail") |
||||
@ApiOperationSupport(order = 1) |
||||
@ApiOperation(value = "详情", notes = "传入expenseWarehouseTransitMonth") |
||||
public R<ExpenseWarehouseTransitMonthVO> detail(@RequestParam("id") @ApiParam(value = "账单id", required = true) Long id,@RequestParam("type") @ApiParam(value = "账单类型 异动/结算", required = true) String type) { |
||||
ExpenseWarehouseTransitMonthVO detail = expenseWarehouseTransitMonthService.detail(id, type); |
||||
return R.data(detail); |
||||
} |
||||
|
||||
/** |
||||
* 中转仓月度仓储作业账单 自定义分页 |
||||
*/ |
||||
@GetMapping("/page") |
||||
@ApiOperationSupport(order = 3) |
||||
@ApiOperation(value = "分页", notes = "传入expenseWarehouseTransitMonth") |
||||
public R<IPage<ExpenseWarehouseTransitMonthVO>> page(ExpenseWarehouseTransitMonthQuery query) { |
||||
IPage<ExpenseWarehouseTransitMonthVO> pages = expenseWarehouseTransitMonthService.selectExpenseWarehouseTransitMonthPage(query); |
||||
return R.data(pages); |
||||
} |
||||
|
||||
@GetMapping("/exportTransitMonth") |
||||
@ApiOperation(value = "导出中转仓月度仓储作业账单", notes = "导出中转仓月度仓储作业账单") |
||||
public void exportTransitMonth(HttpServletResponse response, ExpenseWarehouseTransitMonthQuery query) { |
||||
expenseWarehouseTransitMonthService.exportTransitMonth(response, query); |
||||
} |
||||
|
||||
/** |
||||
* 确认结算 |
||||
*/ |
||||
@PostMapping("/confirmSettlement") |
||||
@ApiOperationSupport(order = 4) |
||||
@ApiOperation(value = "确认结算", notes = "确认结算") |
||||
public R confirmSettlement(@Validated @RequestBody ExpenseWarehouseTransitMonthVO vo) { |
||||
boolean save = expenseWarehouseTransitMonthService.confirmSettlement(vo); |
||||
return R.status(save); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,44 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.excel; |
||||
|
||||
|
||||
import lombok.Data; |
||||
|
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
||||
import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
||||
import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
||||
import java.io.Serializable; |
||||
|
||||
|
||||
/** |
||||
* 配送成本-车辆成本结算表-异动记录 Excel实体类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-03 |
||||
*/ |
||||
@Data |
||||
@ColumnWidth(25) |
||||
@HeadRowHeight(20) |
||||
@ContentRowHeight(18) |
||||
public class ExpenseDispatchTrainDetailChangeExcel implements Serializable { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
|
||||
} |
@ -0,0 +1,44 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.excel; |
||||
|
||||
|
||||
import lombok.Data; |
||||
|
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
||||
import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
||||
import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
||||
import java.io.Serializable; |
||||
|
||||
|
||||
/** |
||||
* 仓储成本-中转仓作业成本-操作记录 Excel实体类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
@Data |
||||
@ColumnWidth(25) |
||||
@HeadRowHeight(20) |
||||
@ContentRowHeight(18) |
||||
public class ExpenseWarehouseTransitChangeExcel implements Serializable { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
|
||||
} |
@ -0,0 +1,44 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.excel; |
||||
|
||||
|
||||
import lombok.Data; |
||||
|
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
||||
import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
||||
import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
||||
import java.io.Serializable; |
||||
|
||||
|
||||
/** |
||||
* 仓储成本-中转仓作业成本-操作-图片 Excel实体类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
@Data |
||||
@ColumnWidth(25) |
||||
@HeadRowHeight(20) |
||||
@ContentRowHeight(18) |
||||
public class ExpenseWarehouseTransitChangeImageExcel implements Serializable { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
|
||||
} |
@ -0,0 +1,44 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.excel; |
||||
|
||||
|
||||
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
||||
import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
||||
import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
import java.util.Date; |
||||
|
||||
|
||||
/** |
||||
* 中转仓仓储作业明细 Excel实体类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
@Data |
||||
@ColumnWidth(25) |
||||
@HeadRowHeight(20) |
||||
@ContentRowHeight(18) |
||||
public class ExpenseWarehouseTransitExcel implements Serializable { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
} |
@ -0,0 +1,44 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.excel; |
||||
|
||||
|
||||
import lombok.Data; |
||||
|
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
||||
import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
||||
import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
||||
import java.io.Serializable; |
||||
|
||||
|
||||
/** |
||||
* 中转仓月度仓储作业账单 Excel实体类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
@Data |
||||
@ColumnWidth(25) |
||||
@HeadRowHeight(20) |
||||
@ContentRowHeight(18) |
||||
public class ExpenseWarehouseTransitMonthExcel implements Serializable { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
|
||||
} |
@ -0,0 +1,54 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.mapper; |
||||
|
||||
import com.logpm.statistics.entity.ExpenseDispatchTrainDetailChangeEntity; |
||||
import com.logpm.statistics.vo.ExpenseDispatchTrainDetailChangeVO; |
||||
import com.logpm.statistics.excel.ExpenseDispatchTrainDetailChangeExcel; |
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import org.apache.ibatis.annotations.Param; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 配送成本-车辆成本结算表-异动记录 Mapper 接口 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-03 |
||||
*/ |
||||
public interface ExpenseDispatchTrainDetailChangeMapper extends BaseMapper<ExpenseDispatchTrainDetailChangeEntity> { |
||||
|
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param expenseDispatchTrainDetailChange |
||||
* @return |
||||
*/ |
||||
List<ExpenseDispatchTrainDetailChangeVO> selectExpenseDispatchTrainDetailChangePage(@Param("page") IPage page, @Param("expenseDispatchTrainDetailChange") ExpenseDispatchTrainDetailChangeVO expenseDispatchTrainDetailChange); |
||||
|
||||
|
||||
/** |
||||
* 获取导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<ExpenseDispatchTrainDetailChangeExcel> exportExpenseDispatchTrainDetailChange(@Param("ew") Wrapper<ExpenseDispatchTrainDetailChangeEntity> queryWrapper); |
||||
|
||||
} |
@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="com.logpm.statistics.mapper.ExpenseDispatchTrainDetailChangeMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="expenseDispatchTrainDetailChangeResultMap" type="com.logpm.statistics.entity.ExpenseDispatchTrainDetailChangeEntity"> |
||||
</resultMap> |
||||
|
||||
|
||||
<select id="selectExpenseDispatchTrainDetailChangePage" resultMap="expenseDispatchTrainDetailChangeResultMap"> |
||||
select * from logpm_expense_dispatch_train_detail_change where is_deleted = 0 |
||||
<if test="expenseDispatchTrainDetailChange.detailId != null and expenseDispatchTrainDetailChange.detailId != ''"> |
||||
and detail_id = #{expenseDispatchTrainDetailChange.detailId} |
||||
</if> |
||||
</select> |
||||
|
||||
|
||||
<select id="exportExpenseDispatchTrainDetailChange" resultType="com.logpm.statistics.excel.ExpenseDispatchTrainDetailChangeExcel"> |
||||
SELECT * FROM logpm_expense_dispatch_train_detail_change ${ew.customSqlSegment} |
||||
</select> |
||||
|
||||
</mapper> |
@ -0,0 +1,56 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.mapper; |
||||
|
||||
import com.logpm.statistics.entity.ExpenseWarehouseTransitChangeImageEntity; |
||||
import com.logpm.statistics.vo.ExpenseWarehouseTransitChangeImageVO; |
||||
import com.logpm.statistics.excel.ExpenseWarehouseTransitChangeImageExcel; |
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import org.apache.ibatis.annotations.Mapper; |
||||
import org.apache.ibatis.annotations.Param; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 仓储成本-中转仓作业成本-操作-图片 Mapper 接口 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
@Mapper |
||||
public interface ExpenseWarehouseTransitChangeImageMapper extends BaseMapper<ExpenseWarehouseTransitChangeImageEntity> { |
||||
|
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param expenseWarehouseTransitChangeImage |
||||
* @return |
||||
*/ |
||||
List<ExpenseWarehouseTransitChangeImageVO> selectExpenseWarehouseTransitChangeImagePage(IPage page, ExpenseWarehouseTransitChangeImageVO expenseWarehouseTransitChangeImage); |
||||
|
||||
|
||||
/** |
||||
* 获取导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<ExpenseWarehouseTransitChangeImageExcel> exportExpenseWarehouseTransitChangeImage(@Param("ew") Wrapper<ExpenseWarehouseTransitChangeImageEntity> queryWrapper); |
||||
|
||||
} |
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="com.logpm.statistics.mapper.ExpenseWarehouseTransitChangeImageMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="expenseWarehouseTransitChangeImageResultMap" type="com.logpm.statistics.entity.ExpenseWarehouseTransitChangeImageEntity"> |
||||
</resultMap> |
||||
|
||||
|
||||
<select id="selectExpenseWarehouseTransitChangeImagePage" resultMap="expenseWarehouseTransitChangeImageResultMap"> |
||||
select * from logpm_expense_warehouse_transit_change_image where is_deleted = 0 |
||||
</select> |
||||
|
||||
|
||||
<select id="exportExpenseWarehouseTransitChangeImage" resultType="com.logpm.statistics.excel.ExpenseWarehouseTransitChangeImageExcel"> |
||||
SELECT * FROM logpm_expense_warehouse_transit_change_image ${ew.customSqlSegment} |
||||
</select> |
||||
|
||||
</mapper> |
@ -0,0 +1,54 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.mapper; |
||||
|
||||
import com.logpm.statistics.entity.ExpenseWarehouseTransitChangeEntity; |
||||
import com.logpm.statistics.vo.ExpenseWarehouseTransitChangeVO; |
||||
import com.logpm.statistics.excel.ExpenseWarehouseTransitChangeExcel; |
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import org.apache.ibatis.annotations.Param; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 仓储成本-中转仓作业成本-操作记录 Mapper 接口 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
public interface ExpenseWarehouseTransitChangeMapper extends BaseMapper<ExpenseWarehouseTransitChangeEntity> { |
||||
|
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param expenseWarehouseTransitChange |
||||
* @return |
||||
*/ |
||||
List<ExpenseWarehouseTransitChangeVO> selectExpenseWarehouseTransitChangePage(IPage page, ExpenseWarehouseTransitChangeVO expenseWarehouseTransitChange); |
||||
|
||||
|
||||
/** |
||||
* 获取导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<ExpenseWarehouseTransitChangeExcel> exportExpenseWarehouseTransitChange(@Param("ew") Wrapper<ExpenseWarehouseTransitChangeEntity> queryWrapper); |
||||
|
||||
} |
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="com.logpm.statistics.mapper.ExpenseWarehouseTransitChangeMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="expenseWarehouseTransitChangeResultMap" type="com.logpm.statistics.entity.ExpenseWarehouseTransitChangeEntity"> |
||||
</resultMap> |
||||
|
||||
|
||||
<select id="selectExpenseWarehouseTransitChangePage" resultMap="expenseWarehouseTransitChangeResultMap"> |
||||
select * from logpm_expense_warehouse_transit_change where is_deleted = 0 |
||||
</select> |
||||
|
||||
|
||||
<select id="exportExpenseWarehouseTransitChange" resultType="com.logpm.statistics.excel.ExpenseWarehouseTransitChangeExcel"> |
||||
SELECT * FROM logpm_expense_warehouse_transit_change ${ew.customSqlSegment} |
||||
</select> |
||||
|
||||
</mapper> |
@ -0,0 +1,55 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.mapper; |
||||
|
||||
import com.logpm.statistics.entity.ExpenseWarehouseTransitEntity; |
||||
import com.logpm.statistics.query.ExpenseWarehouseTransitQuery; |
||||
import com.logpm.statistics.vo.ExpenseWarehouseTransitVO; |
||||
import com.logpm.statistics.excel.ExpenseWarehouseTransitExcel; |
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import org.apache.ibatis.annotations.Param; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 中转仓仓储作业明细 Mapper 接口 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
public interface ExpenseWarehouseTransitMapper extends BaseMapper<ExpenseWarehouseTransitEntity> { |
||||
|
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param expenseWarehouseTransit |
||||
* @return |
||||
*/ |
||||
List<ExpenseWarehouseTransitVO> selectExpenseWarehouseTransitPage(@Param("page") IPage page, @Param("expenseWarehouseTransit") ExpenseWarehouseTransitQuery expenseWarehouseTransit); |
||||
|
||||
|
||||
/** |
||||
* 获取导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<ExpenseWarehouseTransitExcel> exportExpenseWarehouseTransit(@Param("ew") Wrapper<ExpenseWarehouseTransitEntity> queryWrapper); |
||||
|
||||
} |
@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="com.logpm.statistics.mapper.ExpenseWarehouseTransitMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="expenseWarehouseTransitResultMap" type="com.logpm.statistics.entity.ExpenseWarehouseTransitEntity"> |
||||
</resultMap> |
||||
|
||||
|
||||
<select id="selectExpenseWarehouseTransitPage" resultType="com.logpm.statistics.vo.ExpenseWarehouseTransitVO"> |
||||
select * |
||||
from logpm_expense_warehouse_transit where is_deleted = 0 |
||||
<if test="expenseWarehouseTransit.transitWarehouseName != null and expenseWarehouseTransit.transitWarehouseName != ''"> |
||||
and transit_warehouse_name in |
||||
<foreach collection="expenseWarehouseTransit.transitWarehouseName.split(',')" item="item" index="index" |
||||
separator="," open="(" close=")"> |
||||
#{item} |
||||
</foreach> |
||||
</if> |
||||
<if test="expenseWarehouseTransit.destinationWarehouseName != null and expenseWarehouseTransit.destinationWarehouseName != ''"> |
||||
and destination_warehouse_name in |
||||
<foreach collection="expenseWarehouseTransit.destinationWarehouseName.split(',')" item="item" index="index" |
||||
separator="," open="(" close=")"> |
||||
#{item} |
||||
</foreach> |
||||
</if> |
||||
<if test="expenseWarehouseTransit.confirmAllocationYear != null and expenseWarehouseTransit.confirmAllocationYear != ''"> |
||||
and confirm_allocation_year = #{expenseWarehouseTransit.confirmAllocationYear} |
||||
</if> |
||||
<if test="expenseWarehouseTransit.confirmAllocationMonth != null and expenseWarehouseTransit.confirmAllocationMonth != ''"> |
||||
and confirm_allocation_month = #{expenseWarehouseTransit.confirmAllocationMonth} |
||||
</if> |
||||
</select> |
||||
|
||||
|
||||
<select id="exportExpenseWarehouseTransit" resultType="com.logpm.statistics.excel.ExpenseWarehouseTransitExcel"> |
||||
SELECT * FROM logpm_expense_warehouse_transit ${ew.customSqlSegment} |
||||
</select> |
||||
|
||||
</mapper> |
@ -0,0 +1,46 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import com.logpm.statistics.entity.ExpenseWarehouseTransitMonthEntity; |
||||
import com.logpm.statistics.query.ExpenseWarehouseTransitMonthQuery; |
||||
import com.logpm.statistics.vo.ExpenseWarehouseTransitMonthVO; |
||||
import org.apache.ibatis.annotations.Param; |
||||
|
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 中转仓月度仓储作业账单 Mapper 接口 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
public interface ExpenseWarehouseTransitMonthMapper extends BaseMapper<ExpenseWarehouseTransitMonthEntity> { |
||||
|
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param expenseWarehouseTransitMonth |
||||
* @return |
||||
*/ |
||||
List<ExpenseWarehouseTransitMonthVO> selectExpenseWarehouseTransitMonthPage(@Param("page") IPage page, @Param("expenseWarehouseTransitMonth") ExpenseWarehouseTransitMonthQuery expenseWarehouseTransitMonth); |
||||
|
||||
|
||||
} |
@ -0,0 +1,37 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="com.logpm.statistics.mapper.ExpenseWarehouseTransitMonthMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="expenseWarehouseTransitMonthResultMap" type="com.logpm.statistics.entity.ExpenseWarehouseTransitMonthEntity"> |
||||
</resultMap> |
||||
|
||||
<select id="selectExpenseWarehouseTransitMonthPage" resultType="com.logpm.statistics.vo.ExpenseWarehouseTransitMonthVO"> |
||||
select * from logpm_expense_warehouse_transit_month where is_deleted = 0 |
||||
<if test="expenseWarehouseTransitMonth.transitWarehouseName != null and expenseWarehouseTransitMonth.transitWarehouseName != ''"> |
||||
and transit_warehouse_name in |
||||
<foreach collection="expenseWarehouseTransitMonth.transitWarehouseName.split(',')" item="item" index="index" separator="," open="(" close=")"> |
||||
#{item} |
||||
</foreach> |
||||
</if> |
||||
<if test="expenseWarehouseTransitMonth.destinationWarehouseName != null and expenseWarehouseTransitMonth.destinationWarehouseName != ''"> |
||||
and destination_warehouse_name in |
||||
<foreach collection="expenseWarehouseTransitMonth.destinationWarehouseName.split(',')" item="item" index="index" separator="," open="(" close=")"> |
||||
#{item} |
||||
</foreach> |
||||
</if> |
||||
<if test="expenseWarehouseTransitMonth.statisticalYear != null and expenseWarehouseTransitMonth.statisticalYear != ''"> |
||||
and statistical_year = #{expenseWarehouseTransitMonth.statisticalYear} |
||||
</if> |
||||
<if test="expenseWarehouseTransitMonth.statisticalMonth != null and expenseWarehouseTransitMonth.statisticalMonth != ''"> |
||||
and statistical_month = #{expenseWarehouseTransitMonth.statisticalMonth} |
||||
</if> |
||||
<if test="expenseWarehouseTransitMonth.settlementTimeStart != null and expenseWarehouseTransitMonth.settlementTimeEnd != null"> |
||||
and settlement_time between #{expenseWarehouseTransitMonth.settlementTimeStart} and #{expenseWarehouseTransitMonth.settlementTimeEnd} |
||||
</if> |
||||
<if test="expenseWarehouseTransitMonth.settlementStatus != null and expenseWarehouseTransitMonth.settlementStatus != ''"> |
||||
and settlement_status = #{expenseWarehouseTransitMonth.settlementStatus} |
||||
</if> |
||||
</select> |
||||
|
||||
</mapper> |
@ -0,0 +1,26 @@
|
||||
package com.logpm.statistics.query; |
||||
|
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.mp.support.Query; |
||||
|
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class ExpenseDispatchOrderDetailQuery extends Query { |
||||
/** |
||||
* 订单编号 |
||||
*/ |
||||
@ApiModelProperty(value = "订单编号") |
||||
private String orderCode; |
||||
/** |
||||
* 运单号 |
||||
*/ |
||||
@ApiModelProperty(value = "运单号") |
||||
private String waybillNumber; |
||||
/** |
||||
* 目的仓 |
||||
*/ |
||||
@ApiModelProperty(value = "目的仓") |
||||
private String destinationWarehouse; |
||||
} |
@ -0,0 +1,29 @@
|
||||
package com.logpm.statistics.query; |
||||
|
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.mp.support.Query; |
||||
|
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class ExpenseDispatchTrainDetailMonthQuery extends Query { |
||||
|
||||
/** |
||||
* 目的仓 |
||||
*/ |
||||
@ApiModelProperty(value = "目的仓") |
||||
private String destinationWarehouse; |
||||
/** |
||||
* 成本结算时间 |
||||
*/ |
||||
@ApiModelProperty(value = "成本结算时间-年") |
||||
private Integer settlementYear; |
||||
|
||||
/** |
||||
* 成本结算时间 |
||||
*/ |
||||
@ApiModelProperty(value = "成本结算时间-月") |
||||
private Integer settlementMonth; |
||||
|
||||
} |
@ -0,0 +1,61 @@
|
||||
package com.logpm.statistics.query; |
||||
|
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.mp.support.Query; |
||||
|
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class ExpenseDispatchTrainDetailQuery extends Query { |
||||
/** |
||||
* 配送日期开始 |
||||
*/ |
||||
@ApiModelProperty(value = "配送日期开始") |
||||
private String deliveryDateStart; |
||||
/** |
||||
* 配送日期结束 |
||||
*/ |
||||
@ApiModelProperty(value = "配送日期结束") |
||||
private String deliveryDateEnd; |
||||
/** |
||||
* 车次号 |
||||
*/ |
||||
@ApiModelProperty(value = "车次号") |
||||
private String trainNumber; |
||||
/** |
||||
* 配送日期 |
||||
*/ |
||||
@ApiModelProperty(value = "配送日期") |
||||
private String deliveryDate; |
||||
/** |
||||
* 目的仓 |
||||
*/ |
||||
@ApiModelProperty(value = "目的仓") |
||||
private String destinationWarehouse; |
||||
/** |
||||
* 配送类型 |
||||
*/ |
||||
@ApiModelProperty(value = "配送类型") |
||||
private String distributionType; |
||||
/** |
||||
* 配送车辆 |
||||
*/ |
||||
@ApiModelProperty(value = "配送车辆") |
||||
private String deliveryVehicle; |
||||
/** |
||||
* 结算状态 |
||||
*/ |
||||
@ApiModelProperty(value = "结算状态") |
||||
private String settlementStatus; |
||||
/** |
||||
* 结算时间-年 |
||||
*/ |
||||
@ApiModelProperty(value = "结算时间-年") |
||||
private Integer settlementYear; |
||||
/** |
||||
* 结算时间-月 |
||||
*/ |
||||
@ApiModelProperty(value = "结算时间-月") |
||||
private Integer settlementMonth; |
||||
} |
@ -1,11 +1,48 @@
|
||||
package com.logpm.statistics.query; |
||||
|
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.mp.support.Query; |
||||
|
||||
import java.util.Date; |
||||
|
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class ExpenseWarehouseTransitMonthQuery extends Query { |
||||
|
||||
/** |
||||
* 中转仓 |
||||
*/ |
||||
@ApiModelProperty(value = "中转仓") |
||||
private String transitWarehouseName; |
||||
/** |
||||
* 目的仓 |
||||
*/ |
||||
@ApiModelProperty(value = "目的仓") |
||||
private String destinationWarehouseName; |
||||
/** |
||||
* 出账时间-年 |
||||
*/ |
||||
@ApiModelProperty(value = "出账时间-年") |
||||
private Integer statisticalYear; |
||||
/** |
||||
* 出账时间-月 |
||||
*/ |
||||
@ApiModelProperty(value = "出账时间-月") |
||||
private Integer statisticalMonth; |
||||
/** |
||||
* 结算状态 |
||||
*/ |
||||
@ApiModelProperty(value = "结算状态") |
||||
private String settlementStatus; |
||||
/** |
||||
* 结算时间 |
||||
*/ |
||||
@ApiModelProperty(value = "结算时间开始") |
||||
private Date settlementTimeStart; |
||||
/** |
||||
* 结算时间 |
||||
*/ |
||||
@ApiModelProperty(value = "结算时间结束") |
||||
private Date settlementTimeEnd; |
||||
} |
||||
|
@ -0,0 +1,34 @@
|
||||
package com.logpm.statistics.query; |
||||
|
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.mp.support.Query; |
||||
|
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class ExpenseWarehouseTransitQuery extends Query { |
||||
|
||||
/** |
||||
* 确认分摊时间-年 |
||||
*/ |
||||
@ApiModelProperty(value = "确认分摊时间-年") |
||||
private Integer confirmAllocationYear; |
||||
/** |
||||
* 确认分摊时间-月 |
||||
*/ |
||||
@ApiModelProperty(value = "确认分摊时间-月") |
||||
private Integer confirmAllocationMonth; |
||||
/** |
||||
* 中转仓 |
||||
*/ |
||||
@ApiModelProperty(value = "中转仓") |
||||
private String transitWarehouseName; |
||||
/** |
||||
* 目的仓 |
||||
*/ |
||||
@ApiModelProperty(value = "目的仓") |
||||
private String destinationWarehouseName; |
||||
|
||||
|
||||
} |
@ -0,0 +1,52 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.service; |
||||
|
||||
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
||||
import com.logpm.statistics.entity.ExpenseDispatchTrainDetailChangeEntity; |
||||
import com.logpm.statistics.vo.ExpenseDispatchTrainDetailChangeVO; |
||||
import com.logpm.statistics.excel.ExpenseDispatchTrainDetailChangeExcel; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 配送成本-车辆成本结算表-异动记录 服务类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-03 |
||||
*/ |
||||
public interface IExpenseDispatchTrainDetailChangeService extends BaseService<ExpenseDispatchTrainDetailChangeEntity> { |
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param expenseDispatchTrainDetailChange |
||||
* @return |
||||
*/ |
||||
IPage<ExpenseDispatchTrainDetailChangeVO> selectExpenseDispatchTrainDetailChangePage(IPage<ExpenseDispatchTrainDetailChangeVO> page, ExpenseDispatchTrainDetailChangeVO expenseDispatchTrainDetailChange); |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<ExpenseDispatchTrainDetailChangeExcel> exportExpenseDispatchTrainDetailChange(Wrapper<ExpenseDispatchTrainDetailChangeEntity> queryWrapper); |
||||
|
||||
} |
@ -0,0 +1,52 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.service; |
||||
|
||||
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
||||
import com.logpm.statistics.entity.ExpenseWarehouseTransitChangeImageEntity; |
||||
import com.logpm.statistics.vo.ExpenseWarehouseTransitChangeImageVO; |
||||
import com.logpm.statistics.excel.ExpenseWarehouseTransitChangeImageExcel; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 仓储成本-中转仓作业成本-操作-图片 服务类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
public interface IExpenseWarehouseTransitChangeImageService extends BaseService<ExpenseWarehouseTransitChangeImageEntity> { |
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param expenseWarehouseTransitChangeImage |
||||
* @return |
||||
*/ |
||||
IPage<ExpenseWarehouseTransitChangeImageVO> selectExpenseWarehouseTransitChangeImagePage(IPage<ExpenseWarehouseTransitChangeImageVO> page, ExpenseWarehouseTransitChangeImageVO expenseWarehouseTransitChangeImage); |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<ExpenseWarehouseTransitChangeImageExcel> exportExpenseWarehouseTransitChangeImage(Wrapper<ExpenseWarehouseTransitChangeImageEntity> queryWrapper); |
||||
|
||||
} |
@ -0,0 +1,56 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.service; |
||||
|
||||
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
||||
import com.logpm.statistics.entity.ExpenseWarehouseTransitChangeEntity; |
||||
import com.logpm.statistics.vo.ExpenseWarehouseTransitChangeVO; |
||||
import com.logpm.statistics.excel.ExpenseWarehouseTransitChangeExcel; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 仓储成本-中转仓作业成本-操作记录 服务类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
public interface IExpenseWarehouseTransitChangeService extends BaseService<ExpenseWarehouseTransitChangeEntity> { |
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param expenseWarehouseTransitChange |
||||
* @return |
||||
*/ |
||||
IPage<ExpenseWarehouseTransitChangeVO> selectExpenseWarehouseTransitChangePage(IPage<ExpenseWarehouseTransitChangeVO> page, ExpenseWarehouseTransitChangeVO expenseWarehouseTransitChange); |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<ExpenseWarehouseTransitChangeExcel> exportExpenseWarehouseTransitChange(Wrapper<ExpenseWarehouseTransitChangeEntity> queryWrapper); |
||||
|
||||
List<ExpenseWarehouseTransitChangeVO> listByMonthId(Long monthId, String type); |
||||
|
||||
boolean saveDetail(ExpenseWarehouseTransitChangeVO expenseWarehouseTransitChange); |
||||
|
||||
} |
@ -0,0 +1,47 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.service; |
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import com.logpm.statistics.entity.ExpenseWarehouseTransitMonthEntity; |
||||
import com.logpm.statistics.query.ExpenseWarehouseTransitMonthQuery; |
||||
import com.logpm.statistics.vo.ExpenseWarehouseTransitMonthVO; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
|
||||
import javax.servlet.http.HttpServletResponse; |
||||
|
||||
/** |
||||
* 中转仓月度仓储作业账单 服务类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
public interface IExpenseWarehouseTransitMonthService extends BaseService<ExpenseWarehouseTransitMonthEntity> { |
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @return |
||||
*/ |
||||
IPage<ExpenseWarehouseTransitMonthVO> selectExpenseWarehouseTransitMonthPage(ExpenseWarehouseTransitMonthQuery query); |
||||
|
||||
|
||||
ExpenseWarehouseTransitMonthVO detail(Long id, String type); |
||||
|
||||
void exportTransitMonth(HttpServletResponse response, ExpenseWarehouseTransitMonthQuery query); |
||||
|
||||
boolean confirmSettlement(ExpenseWarehouseTransitMonthVO vo); |
||||
} |
@ -0,0 +1,55 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.service; |
||||
|
||||
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
||||
import com.logpm.statistics.entity.ExpenseWarehouseTransitEntity; |
||||
import com.logpm.statistics.query.ExpenseWarehouseTransitQuery; |
||||
import com.logpm.statistics.vo.ExpenseWarehouseTransitVO; |
||||
import com.logpm.statistics.excel.ExpenseWarehouseTransitExcel; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
|
||||
import javax.servlet.http.HttpServletResponse; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 中转仓仓储作业明细 服务类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
public interface IExpenseWarehouseTransitService extends BaseService<ExpenseWarehouseTransitEntity> { |
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @return |
||||
*/ |
||||
IPage<ExpenseWarehouseTransitVO> selectExpenseWarehouseTransitPage(ExpenseWarehouseTransitQuery query); |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<ExpenseWarehouseTransitExcel> exportExpenseWarehouseTransit(Wrapper<ExpenseWarehouseTransitEntity> queryWrapper); |
||||
|
||||
void exportTransit(HttpServletResponse response, ExpenseWarehouseTransitQuery query); |
||||
|
||||
} |
@ -0,0 +1,54 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.service.impl; |
||||
|
||||
import com.logpm.statistics.entity.ExpenseDispatchTrainDetailChangeEntity; |
||||
import com.logpm.statistics.vo.ExpenseDispatchTrainDetailChangeVO; |
||||
import com.logpm.statistics.excel.ExpenseDispatchTrainDetailChangeExcel; |
||||
import com.logpm.statistics.mapper.ExpenseDispatchTrainDetailChangeMapper; |
||||
import com.logpm.statistics.service.IExpenseDispatchTrainDetailChangeService; |
||||
import org.springframework.stereotype.Service; |
||||
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import org.springblade.core.mp.base.BaseServiceImpl; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 配送成本-车辆成本结算表-异动记录 服务实现类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-03 |
||||
*/ |
||||
@Service |
||||
public class ExpenseDispatchTrainDetailChangeServiceImpl extends BaseServiceImpl<ExpenseDispatchTrainDetailChangeMapper, ExpenseDispatchTrainDetailChangeEntity> implements IExpenseDispatchTrainDetailChangeService { |
||||
|
||||
@Override |
||||
public IPage<ExpenseDispatchTrainDetailChangeVO> selectExpenseDispatchTrainDetailChangePage(IPage<ExpenseDispatchTrainDetailChangeVO> page, ExpenseDispatchTrainDetailChangeVO expenseDispatchTrainDetailChange) { |
||||
return page.setRecords(baseMapper.selectExpenseDispatchTrainDetailChangePage(page, expenseDispatchTrainDetailChange)); |
||||
} |
||||
|
||||
|
||||
@Override |
||||
public List<ExpenseDispatchTrainDetailChangeExcel> exportExpenseDispatchTrainDetailChange(Wrapper<ExpenseDispatchTrainDetailChangeEntity> queryWrapper) { |
||||
List<ExpenseDispatchTrainDetailChangeExcel> expenseDispatchTrainDetailChangeList = baseMapper.exportExpenseDispatchTrainDetailChange(queryWrapper); |
||||
//expenseDispatchTrainDetailChangeList.forEach(expenseDispatchTrainDetailChange -> {
|
||||
// expenseDispatchTrainDetailChange.setTypeName(DictCache.getValue(DictEnum.YES_NO, ExpenseDispatchTrainDetailChange.getType()));
|
||||
//});
|
||||
return expenseDispatchTrainDetailChangeList; |
||||
} |
||||
|
||||
} |
@ -0,0 +1,54 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.service.impl; |
||||
|
||||
import com.logpm.statistics.entity.ExpenseWarehouseTransitChangeImageEntity; |
||||
import com.logpm.statistics.vo.ExpenseWarehouseTransitChangeImageVO; |
||||
import com.logpm.statistics.excel.ExpenseWarehouseTransitChangeImageExcel; |
||||
import com.logpm.statistics.mapper.ExpenseWarehouseTransitChangeImageMapper; |
||||
import com.logpm.statistics.service.IExpenseWarehouseTransitChangeImageService; |
||||
import org.springframework.stereotype.Service; |
||||
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import org.springblade.core.mp.base.BaseServiceImpl; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 仓储成本-中转仓作业成本-操作-图片 服务实现类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
@Service |
||||
public class ExpenseWarehouseTransitChangeImageServiceImpl extends BaseServiceImpl<ExpenseWarehouseTransitChangeImageMapper, ExpenseWarehouseTransitChangeImageEntity> implements IExpenseWarehouseTransitChangeImageService { |
||||
|
||||
@Override |
||||
public IPage<ExpenseWarehouseTransitChangeImageVO> selectExpenseWarehouseTransitChangeImagePage(IPage<ExpenseWarehouseTransitChangeImageVO> page, ExpenseWarehouseTransitChangeImageVO expenseWarehouseTransitChangeImage) { |
||||
return page.setRecords(baseMapper.selectExpenseWarehouseTransitChangeImagePage(page, expenseWarehouseTransitChangeImage)); |
||||
} |
||||
|
||||
|
||||
@Override |
||||
public List<ExpenseWarehouseTransitChangeImageExcel> exportExpenseWarehouseTransitChangeImage(Wrapper<ExpenseWarehouseTransitChangeImageEntity> queryWrapper) { |
||||
List<ExpenseWarehouseTransitChangeImageExcel> expenseWarehouseTransitChangeImageList = baseMapper.exportExpenseWarehouseTransitChangeImage(queryWrapper); |
||||
//expenseWarehouseTransitChangeImageList.forEach(expenseWarehouseTransitChangeImage -> {
|
||||
// expenseWarehouseTransitChangeImage.setTypeName(DictCache.getValue(DictEnum.YES_NO, ExpenseWarehouseTransitChangeImage.getType()));
|
||||
//});
|
||||
return expenseWarehouseTransitChangeImageList; |
||||
} |
||||
|
||||
} |
@ -0,0 +1,162 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.service.impl; |
||||
|
||||
import cn.hutool.core.collection.CollUtil; |
||||
import cn.hutool.core.util.ObjectUtil; |
||||
import cn.hutool.core.util.StrUtil; |
||||
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
||||
import com.logpm.statistics.entity.ExpenseWarehouseTransitChangeEntity; |
||||
import com.logpm.statistics.entity.ExpenseWarehouseTransitChangeImageEntity; |
||||
import com.logpm.statistics.entity.ExpenseWarehouseTransitMonthEntity; |
||||
import com.logpm.statistics.excel.ExpenseWarehouseTransitChangeExcel; |
||||
import com.logpm.statistics.mapper.ExpenseWarehouseTransitChangeMapper; |
||||
import com.logpm.statistics.mapper.ExpenseWarehouseTransitMonthMapper; |
||||
import com.logpm.statistics.service.IExpenseWarehouseTransitChangeImageService; |
||||
import com.logpm.statistics.service.IExpenseWarehouseTransitChangeService; |
||||
import com.logpm.statistics.vo.ExpenseWarehouseTransitChangeImageVO; |
||||
import com.logpm.statistics.vo.ExpenseWarehouseTransitChangeVO; |
||||
import com.logpm.statistics.wrapper.ExpenseWarehouseTransitChangeImageWrapper; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springblade.core.log.exception.ServiceException; |
||||
import org.springblade.core.mp.base.BaseServiceImpl; |
||||
import org.springblade.core.secure.utils.AuthUtil; |
||||
import org.springblade.core.tool.utils.BeanUtil; |
||||
import org.springframework.stereotype.Service; |
||||
import org.springframework.transaction.annotation.Transactional; |
||||
|
||||
import java.math.BigDecimal; |
||||
import java.util.ArrayList; |
||||
import java.util.Date; |
||||
import java.util.HashMap; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
import java.util.stream.Collectors; |
||||
|
||||
/** |
||||
* 仓储成本-中转仓作业成本-操作记录 服务实现类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
@Service |
||||
@AllArgsConstructor |
||||
public class ExpenseWarehouseTransitChangeServiceImpl extends BaseServiceImpl<ExpenseWarehouseTransitChangeMapper, ExpenseWarehouseTransitChangeEntity> implements IExpenseWarehouseTransitChangeService { |
||||
|
||||
|
||||
private final ExpenseWarehouseTransitMonthMapper monthMapper; |
||||
private final IExpenseWarehouseTransitChangeImageService imageService; |
||||
|
||||
@Override |
||||
public IPage<ExpenseWarehouseTransitChangeVO> selectExpenseWarehouseTransitChangePage(IPage<ExpenseWarehouseTransitChangeVO> page, ExpenseWarehouseTransitChangeVO expenseWarehouseTransitChange) { |
||||
return page.setRecords(baseMapper.selectExpenseWarehouseTransitChangePage(page, expenseWarehouseTransitChange)); |
||||
} |
||||
|
||||
|
||||
@Override |
||||
public List<ExpenseWarehouseTransitChangeExcel> exportExpenseWarehouseTransitChange(Wrapper<ExpenseWarehouseTransitChangeEntity> queryWrapper) { |
||||
List<ExpenseWarehouseTransitChangeExcel> expenseWarehouseTransitChangeList = baseMapper.exportExpenseWarehouseTransitChange(queryWrapper); |
||||
// expenseWarehouseTransitChangeList.forEach(expenseWarehouseTransitChange -> {
|
||||
// expenseWarehouseTransitChange.setTypeName(DictCache.getValue(DictEnum.YES_NO, ExpenseWarehouseTransitChange.getType()));
|
||||
//});
|
||||
return expenseWarehouseTransitChangeList; |
||||
} |
||||
|
||||
@Override |
||||
public List<ExpenseWarehouseTransitChangeVO> listByMonthId(Long monthId, String type) { |
||||
List<ExpenseWarehouseTransitChangeVO> res = new ArrayList<>(); |
||||
List<ExpenseWarehouseTransitChangeEntity> list = this.list(Wrappers.<ExpenseWarehouseTransitChangeEntity>lambdaQuery() |
||||
.eq(ExpenseWarehouseTransitChangeEntity::getDetailId, monthId) |
||||
.eq(ExpenseWarehouseTransitChangeEntity::getType, type) |
||||
); |
||||
if (CollUtil.isNotEmpty(list)) { |
||||
List<Long> collect = list.stream().map(ExpenseWarehouseTransitChangeEntity::getId).collect(Collectors.toList()); |
||||
List<ExpenseWarehouseTransitChangeImageEntity> changeImageEntities = imageService.list(Wrappers.<ExpenseWarehouseTransitChangeImageEntity>lambdaQuery().in(ExpenseWarehouseTransitChangeImageEntity::getChangeId, collect)); |
||||
Map<Long, List<ExpenseWarehouseTransitChangeImageEntity>> imageMap = new HashMap<>(); |
||||
if (CollUtil.isNotEmpty(changeImageEntities)) { |
||||
imageMap = changeImageEntities.stream().collect(Collectors.groupingBy(ExpenseWarehouseTransitChangeImageEntity::getChangeId)); |
||||
} |
||||
for (ExpenseWarehouseTransitChangeEntity expenseWarehouseTransitChangeEntity : list) { |
||||
ExpenseWarehouseTransitChangeVO expenseWarehouseTransitChangeVO = new ExpenseWarehouseTransitChangeVO(); |
||||
expenseWarehouseTransitChangeVO.setChangeAmount(expenseWarehouseTransitChangeEntity.getChangeAmount()); |
||||
expenseWarehouseTransitChangeVO.setChangeNote(expenseWarehouseTransitChangeEntity.getChangeNote()); |
||||
expenseWarehouseTransitChangeVO.setChangeOperator(expenseWarehouseTransitChangeEntity.getChangeOperator()); |
||||
expenseWarehouseTransitChangeVO.setChangeTime(expenseWarehouseTransitChangeEntity.getChangeTime()); |
||||
expenseWarehouseTransitChangeVO.setChangeImageList(ExpenseWarehouseTransitChangeImageWrapper.build().listVO(imageMap.get(expenseWarehouseTransitChangeEntity.getId()))); |
||||
res.add(expenseWarehouseTransitChangeVO); |
||||
} |
||||
} |
||||
return res; |
||||
} |
||||
|
||||
@Override |
||||
@Transactional |
||||
public boolean saveDetail(ExpenseWarehouseTransitChangeVO expenseWarehouseTransitChange) { |
||||
String type = expenseWarehouseTransitChange.getType(); |
||||
if (StrUtil.isEmpty(type)) { |
||||
throw new ServiceException("类型不能为空"); |
||||
} |
||||
Long detailId = expenseWarehouseTransitChange.getDetailId(); |
||||
if (ObjectUtil.isNotEmpty(detailId)) { |
||||
ExpenseWarehouseTransitMonthEntity expenseWarehouseTransitMonthEntity = monthMapper.selectById(detailId); |
||||
if (ObjectUtil.isEmpty(expenseWarehouseTransitMonthEntity)) { |
||||
throw new ServiceException("结算单不存在"); |
||||
} |
||||
BigDecimal settledAmount = ObjectUtil.isEmpty(expenseWarehouseTransitMonthEntity.getSettledAmount()) ? BigDecimal.ZERO : expenseWarehouseTransitMonthEntity.getSettledAmount(); |
||||
BigDecimal pendingSettlementAmount = expenseWarehouseTransitMonthEntity.getPendingSettlementAmount(); |
||||
BigDecimal monthChangeAmount = ObjectUtil.isNotEmpty(expenseWarehouseTransitMonthEntity.getChangeAmount()) ? expenseWarehouseTransitMonthEntity.getChangeAmount() : BigDecimal.ZERO; |
||||
BigDecimal changeAmount = expenseWarehouseTransitChange.getChangeAmount(); |
||||
ExpenseWarehouseTransitChangeEntity changeEntity = new ExpenseWarehouseTransitChangeEntity(); |
||||
BeanUtil.copyProperties(expenseWarehouseTransitChange, changeEntity); |
||||
changeEntity.setChangeTime(new Date()); |
||||
changeEntity.setChangeOperator(AuthUtil.getNickName()); |
||||
this.save(changeEntity); |
||||
// 保存图片
|
||||
List<ExpenseWarehouseTransitChangeImageVO> changeImageList = expenseWarehouseTransitChange.getChangeImageList(); |
||||
if (CollUtil.isNotEmpty(changeImageList)) { |
||||
List<ExpenseWarehouseTransitChangeImageEntity> imageEntities = changeImageList.stream().map(changeImage -> { |
||||
ExpenseWarehouseTransitChangeImageEntity imageEntity = new ExpenseWarehouseTransitChangeImageEntity(); |
||||
imageEntity.setChangeId(changeEntity.getId()); |
||||
imageEntity.setImageUrl(changeImage.getImageUrl()); |
||||
return imageEntity; |
||||
}).collect(Collectors.toList()); |
||||
if (CollUtil.isNotEmpty(imageEntities)) { |
||||
imageService.saveBatch(imageEntities); |
||||
} |
||||
} |
||||
// 计算剩余待结算金额
|
||||
ExpenseWarehouseTransitMonthEntity updateEntity = new ExpenseWarehouseTransitMonthEntity(); |
||||
if ("异常".equals(type)) { |
||||
updateEntity.setPendingSettlementAmount(pendingSettlementAmount.add(changeAmount)); |
||||
updateEntity.setChangeAmount(monthChangeAmount.add(changeAmount)); |
||||
} else { |
||||
updateEntity.setSettledAmount(settledAmount.add(changeAmount)); |
||||
updateEntity.setPendingSettlementAmount(pendingSettlementAmount.subtract(changeAmount)); |
||||
updateEntity.setSettlementUser(AuthUtil.getNickName()); |
||||
updateEntity.setSettlementTime(new Date()); |
||||
} |
||||
updateEntity.setId(detailId); |
||||
updateEntity.setSettlementStatus("部分结算"); |
||||
monthMapper.updateById(updateEntity); |
||||
return true; |
||||
} |
||||
return false; |
||||
} |
||||
|
||||
} |
@ -0,0 +1,103 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.service.impl; |
||||
|
||||
import cn.hutool.core.util.ObjectUtil; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import com.logpm.statistics.entity.ExpenseWarehouseTransitMonthEntity; |
||||
import com.logpm.statistics.mapper.ExpenseWarehouseTransitMonthMapper; |
||||
import com.logpm.statistics.query.ExpenseWarehouseTransitMonthQuery; |
||||
import com.logpm.statistics.service.IExpenseWarehouseTransitChangeService; |
||||
import com.logpm.statistics.service.IExpenseWarehouseTransitMonthService; |
||||
import com.logpm.statistics.vo.ExpenseWarehouseTransitChangeVO; |
||||
import com.logpm.statistics.vo.ExpenseWarehouseTransitMonthVO; |
||||
import com.logpm.statistics.wrapper.ExpenseWarehouseTransitMonthWrapper; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springblade.core.excel.util.ExcelUtil; |
||||
import org.springblade.core.log.exception.ServiceException; |
||||
import org.springblade.core.mp.base.BaseServiceImpl; |
||||
import org.springblade.core.mp.support.Condition; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
import javax.servlet.http.HttpServletResponse; |
||||
import java.math.BigDecimal; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 中转仓月度仓储作业账单 服务实现类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
@Service |
||||
@AllArgsConstructor |
||||
public class ExpenseWarehouseTransitMonthServiceImpl extends BaseServiceImpl<ExpenseWarehouseTransitMonthMapper, ExpenseWarehouseTransitMonthEntity> implements IExpenseWarehouseTransitMonthService { |
||||
|
||||
private final IExpenseWarehouseTransitChangeService expenseWarehouseTransitChangeService; |
||||
|
||||
@Override |
||||
public IPage<ExpenseWarehouseTransitMonthVO> selectExpenseWarehouseTransitMonthPage(ExpenseWarehouseTransitMonthQuery query) { |
||||
IPage<ExpenseWarehouseTransitMonthVO> page = Condition.getPage(query); |
||||
return page.setRecords(baseMapper.selectExpenseWarehouseTransitMonthPage(page, query)); |
||||
} |
||||
|
||||
@Override |
||||
public ExpenseWarehouseTransitMonthVO detail(Long id, String type) { |
||||
if (ObjectUtil.isEmpty(id)) { |
||||
throw new ServiceException("主键不能为空"); |
||||
} |
||||
ExpenseWarehouseTransitMonthEntity expenseWarehouseTransitMonthEntity = baseMapper.selectById(id); |
||||
if (ObjectUtil.isEmpty(expenseWarehouseTransitMonthEntity)) { |
||||
throw new ServiceException("结算单不存在"); |
||||
} |
||||
List<ExpenseWarehouseTransitChangeVO> changeVOS = expenseWarehouseTransitChangeService.listByMonthId(id, type); |
||||
ExpenseWarehouseTransitMonthVO expenseWarehouseTransitMonthVO = ExpenseWarehouseTransitMonthWrapper.build().entityVO(expenseWarehouseTransitMonthEntity); |
||||
expenseWarehouseTransitMonthVO.setChangeList(changeVOS); |
||||
return expenseWarehouseTransitMonthVO; |
||||
} |
||||
|
||||
@Override |
||||
public void exportTransitMonth(HttpServletResponse response, ExpenseWarehouseTransitMonthQuery query) { |
||||
IPage<ExpenseWarehouseTransitMonthVO> page = Condition.getPage(query); |
||||
page.setSize(-1); |
||||
page.setCurrent(1); |
||||
List<ExpenseWarehouseTransitMonthVO> list = baseMapper.selectExpenseWarehouseTransitMonthPage(page, query); |
||||
ExcelUtil.export(response, list, ExpenseWarehouseTransitMonthVO.class); |
||||
} |
||||
|
||||
@Override |
||||
public boolean confirmSettlement(ExpenseWarehouseTransitMonthVO vo) { |
||||
if (ObjectUtil.isEmpty(vo.getId())) { |
||||
throw new ServiceException("唯一标识不能为空"); |
||||
} |
||||
ExpenseWarehouseTransitMonthEntity expenseWarehouseTransitMonthEntity = baseMapper.selectById(vo.getId()); |
||||
if(ObjectUtil.isEmpty(expenseWarehouseTransitMonthEntity)){ |
||||
throw new ServiceException("结算单不存在"); |
||||
} |
||||
// 校验待结算金额是否为0
|
||||
if(expenseWarehouseTransitMonthEntity.getPendingSettlementAmount().compareTo(BigDecimal.ZERO) != 0){ |
||||
throw new ServiceException("待结算金额不为0,无法确认结算"); |
||||
} |
||||
ExpenseWarehouseTransitMonthEntity entity = new ExpenseWarehouseTransitMonthEntity(); |
||||
entity.setSettlementStatus("已结算"); |
||||
entity.setId(vo.getId()); |
||||
baseMapper.updateById(entity); |
||||
return true; |
||||
} |
||||
|
||||
|
||||
} |
@ -0,0 +1,69 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.service.impl; |
||||
|
||||
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import com.logpm.statistics.entity.ExpenseWarehouseTransitEntity; |
||||
import com.logpm.statistics.excel.ExpenseWarehouseTransitExcel; |
||||
import com.logpm.statistics.mapper.ExpenseWarehouseTransitMapper; |
||||
import com.logpm.statistics.query.ExpenseWarehouseTransitQuery; |
||||
import com.logpm.statistics.service.IExpenseWarehouseTransitService; |
||||
import com.logpm.statistics.vo.ExpenseWarehouseTransitVO; |
||||
import org.springblade.core.excel.util.ExcelUtil; |
||||
import org.springblade.core.mp.base.BaseServiceImpl; |
||||
import org.springblade.core.mp.support.Condition; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
import javax.servlet.http.HttpServletResponse; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 中转仓仓储作业明细 服务实现类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
@Service |
||||
public class ExpenseWarehouseTransitServiceImpl extends BaseServiceImpl<ExpenseWarehouseTransitMapper, ExpenseWarehouseTransitEntity> implements IExpenseWarehouseTransitService { |
||||
|
||||
@Override |
||||
public IPage<ExpenseWarehouseTransitVO> selectExpenseWarehouseTransitPage(ExpenseWarehouseTransitQuery query) { |
||||
IPage<ExpenseWarehouseTransitVO> page = Condition.getPage(query); |
||||
return page.setRecords(baseMapper.selectExpenseWarehouseTransitPage(page, query)); |
||||
} |
||||
|
||||
|
||||
@Override |
||||
public List<ExpenseWarehouseTransitExcel> exportExpenseWarehouseTransit(Wrapper<ExpenseWarehouseTransitEntity> queryWrapper) { |
||||
List<ExpenseWarehouseTransitExcel> expenseWarehouseTransitList = baseMapper.exportExpenseWarehouseTransit(queryWrapper); |
||||
//expenseWarehouseTransitList.forEach(expenseWarehouseTransit -> {
|
||||
// expenseWarehouseTransit.setTypeName(DictCache.getValue(DictEnum.YES_NO, ExpenseWarehouseTransit.getType()));
|
||||
//});
|
||||
return expenseWarehouseTransitList; |
||||
} |
||||
|
||||
@Override |
||||
public void exportTransit(HttpServletResponse response, ExpenseWarehouseTransitQuery query) { |
||||
IPage<ExpenseWarehouseTransitVO> page = Condition.getPage(query); |
||||
page.setSize(-1); |
||||
page.setCurrent(1); |
||||
List<ExpenseWarehouseTransitVO> list = baseMapper.selectExpenseWarehouseTransitPage(page, query); |
||||
ExcelUtil.export(response, list, ExpenseWarehouseTransitVO.class); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,53 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.vo; |
||||
|
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
import javax.validation.constraints.NotEmpty; |
||||
import javax.validation.constraints.NotNull; |
||||
|
||||
/** |
||||
* 配送成本-车辆成本结算表-异动记录 视图实体类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-03 |
||||
*/ |
||||
@Data |
||||
public class ExpenseDispatchTrainDetailChangeSaveVO { |
||||
|
||||
/** |
||||
* 异动金额 |
||||
*/ |
||||
@NotNull(message = "异动费用不能为空") |
||||
@ApiModelProperty(value = "异动费用") |
||||
private Double changeAmount; |
||||
/** |
||||
* 异动备注 |
||||
*/ |
||||
@NotEmpty(message = "异动费用备注不能为空") |
||||
@ApiModelProperty(value = "异动费用备注") |
||||
private String changeNote; |
||||
/** |
||||
* 结算id |
||||
*/ |
||||
@NotNull(message = "结算id不能为空") |
||||
@ApiModelProperty(value = "结算id") |
||||
private Long id; |
||||
|
||||
} |
@ -0,0 +1,35 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.vo; |
||||
|
||||
import com.logpm.statistics.entity.ExpenseDispatchTrainDetailChangeEntity; |
||||
import org.springblade.core.tool.node.INode; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 配送成本-车辆成本结算表-异动记录 视图实体类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-03 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class ExpenseDispatchTrainDetailChangeVO extends ExpenseDispatchTrainDetailChangeEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
} |
@ -0,0 +1,43 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.vo; |
||||
|
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
/** |
||||
* 仓储成本-中转仓作业成本-操作-图片 视图实体类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
@Data |
||||
public class ExpenseWarehouseTransitChangeImageVO { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
/** |
||||
* 主键 |
||||
*/ |
||||
@ApiModelProperty(value = "主键") |
||||
private Long id; |
||||
/** |
||||
* 图片url |
||||
*/ |
||||
@ApiModelProperty(value = "图片url") |
||||
private String imageUrl; |
||||
|
||||
} |
@ -0,0 +1,80 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.vo; |
||||
|
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
import javax.validation.constraints.NotNull; |
||||
import java.math.BigDecimal; |
||||
import java.util.Date; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 仓储成本-中转仓作业成本-操作记录 视图实体类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
@Data |
||||
public class ExpenseWarehouseTransitChangeVO { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
/** |
||||
* 主键 |
||||
*/ |
||||
@ApiModelProperty(value = "主键") |
||||
private Long id; |
||||
/** |
||||
* 类型(异动/结算) |
||||
*/ |
||||
@ApiModelProperty(value = "类型(异动/结算)") |
||||
private String type; |
||||
/** |
||||
* 金额 |
||||
*/ |
||||
@ApiModelProperty(value = "金额") |
||||
@NotNull(message = "金额不能为空") |
||||
private BigDecimal changeAmount; |
||||
/** |
||||
* 时间 |
||||
*/ |
||||
@ApiModelProperty(value = "时间") |
||||
private Date changeTime; |
||||
/** |
||||
* 备注 |
||||
*/ |
||||
@ApiModelProperty(value = "备注") |
||||
private String changeNote; |
||||
/** |
||||
* 操作人 |
||||
*/ |
||||
@ApiModelProperty(value = "操作人") |
||||
private String changeOperator; |
||||
/** |
||||
* 结算表id |
||||
*/ |
||||
@ApiModelProperty(value = "结算表id") |
||||
private Long detailId; |
||||
|
||||
/** |
||||
* 图片 |
||||
*/ |
||||
@ApiModelProperty(value = "图片") |
||||
private List<ExpenseWarehouseTransitChangeImageVO> changeImageList; |
||||
|
||||
} |
@ -0,0 +1,109 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.vo; |
||||
|
||||
import com.alibaba.excel.annotation.ExcelIgnore; |
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* 中转仓仓储作业明细 视图实体类 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
@Data |
||||
public class ExpenseWarehouseTransitVO { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
/** |
||||
* 主键 |
||||
*/ |
||||
@ApiModelProperty(value = "主键") |
||||
@ExcelIgnore |
||||
private Long id; |
||||
/** |
||||
* 中转仓 |
||||
*/ |
||||
@ApiModelProperty(value = "中转仓") |
||||
@ExcelProperty("中转仓") |
||||
private String transitWarehouseName; |
||||
/** |
||||
* 目的仓 |
||||
*/ |
||||
@ApiModelProperty(value = "目的仓") |
||||
@ExcelProperty("目的仓") |
||||
private String destinationWarehouseName; |
||||
/** |
||||
* 作业类型 |
||||
*/ |
||||
@ApiModelProperty(value = "作业类型") |
||||
@ExcelProperty("作业类型") |
||||
private String workType; |
||||
/** |
||||
* 包件类型 |
||||
*/ |
||||
@ApiModelProperty(value = "包件类型") |
||||
@ExcelProperty("包件类型") |
||||
private String packageType; |
||||
/** |
||||
* 包条码 |
||||
*/ |
||||
@ApiModelProperty(value = "包条码") |
||||
@ExcelProperty("包条码") |
||||
private String packageCode; |
||||
/** |
||||
* 订单 |
||||
*/ |
||||
@ApiModelProperty(value = "订单") |
||||
@ExcelProperty("订单") |
||||
private String orderCode; |
||||
/** |
||||
* 运单编号 |
||||
*/ |
||||
@ApiModelProperty(value = "运单编号") |
||||
@ExcelProperty("运单编号") |
||||
private String waybillNumber; |
||||
/** |
||||
* 车次号 |
||||
*/ |
||||
@ApiModelProperty(value = "车次号") |
||||
@ExcelProperty("车次号") |
||||
private String trainNumber; |
||||
/** |
||||
* 件数 |
||||
*/ |
||||
@ApiModelProperty(value = "件数") |
||||
@ExcelProperty("件数") |
||||
private Integer num; |
||||
/** |
||||
* 操作时间 |
||||
*/ |
||||
@ApiModelProperty(value = "操作时间") |
||||
@ExcelProperty("操作时间") |
||||
private Date taskTime; |
||||
/** |
||||
* 确认分摊时间 |
||||
*/ |
||||
@ApiModelProperty(value = "确认分摊时间") |
||||
@ExcelProperty("确认分摊时间") |
||||
private Date confirmAllocationTime; |
||||
|
||||
} |
@ -0,0 +1,50 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.wrapper; |
||||
|
||||
import org.springblade.core.mp.support.BaseEntityWrapper; |
||||
import org.springblade.core.tool.utils.BeanUtil; |
||||
import com.logpm.statistics.entity.ExpenseDispatchTrainDetailChangeEntity; |
||||
import com.logpm.statistics.vo.ExpenseDispatchTrainDetailChangeVO; |
||||
import java.util.Objects; |
||||
|
||||
/** |
||||
* 配送成本-车辆成本结算表-异动记录 包装类,返回视图层所需的字段 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-03 |
||||
*/ |
||||
public class ExpenseDispatchTrainDetailChangeWrapper extends BaseEntityWrapper<ExpenseDispatchTrainDetailChangeEntity, ExpenseDispatchTrainDetailChangeVO> { |
||||
|
||||
public static ExpenseDispatchTrainDetailChangeWrapper build() { |
||||
return new ExpenseDispatchTrainDetailChangeWrapper(); |
||||
} |
||||
|
||||
@Override |
||||
public ExpenseDispatchTrainDetailChangeVO entityVO(ExpenseDispatchTrainDetailChangeEntity expenseDispatchTrainDetailChange) { |
||||
ExpenseDispatchTrainDetailChangeVO expenseDispatchTrainDetailChangeVO = Objects.requireNonNull(BeanUtil.copy(expenseDispatchTrainDetailChange, ExpenseDispatchTrainDetailChangeVO.class)); |
||||
|
||||
//User createUser = UserCache.getUser(expenseDispatchTrainDetailChange.getCreateUser());
|
||||
//User updateUser = UserCache.getUser(expenseDispatchTrainDetailChange.getUpdateUser());
|
||||
//expenseDispatchTrainDetailChangeVO.setCreateUserName(createUser.getName());
|
||||
//expenseDispatchTrainDetailChangeVO.setUpdateUserName(updateUser.getName());
|
||||
|
||||
return expenseDispatchTrainDetailChangeVO; |
||||
} |
||||
|
||||
|
||||
} |
@ -0,0 +1,49 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.wrapper; |
||||
|
||||
import org.springblade.core.mp.support.BaseEntityWrapper; |
||||
import org.springblade.core.tool.utils.BeanUtil; |
||||
import com.logpm.statistics.entity.ExpenseWarehouseTransitChangeImageEntity; |
||||
import com.logpm.statistics.vo.ExpenseWarehouseTransitChangeImageVO; |
||||
import java.util.Objects; |
||||
|
||||
/** |
||||
* 仓储成本-中转仓作业成本-操作-图片 包装类,返回视图层所需的字段 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
public class ExpenseWarehouseTransitChangeImageWrapper extends BaseEntityWrapper<ExpenseWarehouseTransitChangeImageEntity, ExpenseWarehouseTransitChangeImageVO> { |
||||
|
||||
public static ExpenseWarehouseTransitChangeImageWrapper build() { |
||||
return new ExpenseWarehouseTransitChangeImageWrapper(); |
||||
} |
||||
|
||||
@Override |
||||
public ExpenseWarehouseTransitChangeImageVO entityVO(ExpenseWarehouseTransitChangeImageEntity expenseWarehouseTransitChangeImage) { |
||||
ExpenseWarehouseTransitChangeImageVO expenseWarehouseTransitChangeImageVO = Objects.requireNonNull(BeanUtil.copy(expenseWarehouseTransitChangeImage, ExpenseWarehouseTransitChangeImageVO.class)); |
||||
|
||||
//User createUser = UserCache.getUser(expenseWarehouseTransitChangeImage.getCreateUser());
|
||||
//User updateUser = UserCache.getUser(expenseWarehouseTransitChangeImage.getUpdateUser());
|
||||
//expenseWarehouseTransitChangeImageVO.setCreateUserName(createUser.getName());
|
||||
//expenseWarehouseTransitChangeImageVO.setUpdateUserName(updateUser.getName());
|
||||
|
||||
return expenseWarehouseTransitChangeImageVO; |
||||
} |
||||
|
||||
} |
@ -0,0 +1,50 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.wrapper; |
||||
|
||||
import org.springblade.core.mp.support.BaseEntityWrapper; |
||||
import org.springblade.core.tool.utils.BeanUtil; |
||||
import com.logpm.statistics.entity.ExpenseWarehouseTransitChangeEntity; |
||||
import com.logpm.statistics.vo.ExpenseWarehouseTransitChangeVO; |
||||
import java.util.Objects; |
||||
|
||||
/** |
||||
* 仓储成本-中转仓作业成本-操作记录 包装类,返回视图层所需的字段 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
public class ExpenseWarehouseTransitChangeWrapper extends BaseEntityWrapper<ExpenseWarehouseTransitChangeEntity, ExpenseWarehouseTransitChangeVO> { |
||||
|
||||
public static ExpenseWarehouseTransitChangeWrapper build() { |
||||
return new ExpenseWarehouseTransitChangeWrapper(); |
||||
} |
||||
|
||||
@Override |
||||
public ExpenseWarehouseTransitChangeVO entityVO(ExpenseWarehouseTransitChangeEntity expenseWarehouseTransitChange) { |
||||
ExpenseWarehouseTransitChangeVO expenseWarehouseTransitChangeVO = Objects.requireNonNull(BeanUtil.copy(expenseWarehouseTransitChange, ExpenseWarehouseTransitChangeVO.class)); |
||||
|
||||
//User createUser = UserCache.getUser(expenseWarehouseTransitChange.getCreateUser());
|
||||
//User updateUser = UserCache.getUser(expenseWarehouseTransitChange.getUpdateUser());
|
||||
//expenseWarehouseTransitChangeVO.setCreateUserName(createUser.getName());
|
||||
//expenseWarehouseTransitChangeVO.setUpdateUserName(updateUser.getName());
|
||||
|
||||
return expenseWarehouseTransitChangeVO; |
||||
} |
||||
|
||||
|
||||
} |
@ -0,0 +1,50 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.wrapper; |
||||
|
||||
import org.springblade.core.mp.support.BaseEntityWrapper; |
||||
import org.springblade.core.tool.utils.BeanUtil; |
||||
import com.logpm.statistics.entity.ExpenseWarehouseTransitMonthEntity; |
||||
import com.logpm.statistics.vo.ExpenseWarehouseTransitMonthVO; |
||||
import java.util.Objects; |
||||
|
||||
/** |
||||
* 中转仓月度仓储作业账单 包装类,返回视图层所需的字段 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
public class ExpenseWarehouseTransitMonthWrapper extends BaseEntityWrapper<ExpenseWarehouseTransitMonthEntity, ExpenseWarehouseTransitMonthVO> { |
||||
|
||||
public static ExpenseWarehouseTransitMonthWrapper build() { |
||||
return new ExpenseWarehouseTransitMonthWrapper(); |
||||
} |
||||
|
||||
@Override |
||||
public ExpenseWarehouseTransitMonthVO entityVO(ExpenseWarehouseTransitMonthEntity expenseWarehouseTransitMonth) { |
||||
ExpenseWarehouseTransitMonthVO expenseWarehouseTransitMonthVO = Objects.requireNonNull(BeanUtil.copy(expenseWarehouseTransitMonth, ExpenseWarehouseTransitMonthVO.class)); |
||||
|
||||
//User createUser = UserCache.getUser(expenseWarehouseTransitMonth.getCreateUser());
|
||||
//User updateUser = UserCache.getUser(expenseWarehouseTransitMonth.getUpdateUser());
|
||||
//expenseWarehouseTransitMonthVO.setCreateUserName(createUser.getName());
|
||||
//expenseWarehouseTransitMonthVO.setUpdateUserName(updateUser.getName());
|
||||
|
||||
return expenseWarehouseTransitMonthVO; |
||||
} |
||||
|
||||
|
||||
} |
@ -0,0 +1,50 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.statistics.wrapper; |
||||
|
||||
import org.springblade.core.mp.support.BaseEntityWrapper; |
||||
import org.springblade.core.tool.utils.BeanUtil; |
||||
import com.logpm.statistics.entity.ExpenseWarehouseTransitEntity; |
||||
import com.logpm.statistics.vo.ExpenseWarehouseTransitVO; |
||||
import java.util.Objects; |
||||
|
||||
/** |
||||
* 中转仓仓储作业明细 包装类,返回视图层所需的字段 |
||||
* |
||||
* @author zqb |
||||
* @since 2024-12-09 |
||||
*/ |
||||
public class ExpenseWarehouseTransitWrapper extends BaseEntityWrapper<ExpenseWarehouseTransitEntity, ExpenseWarehouseTransitVO> { |
||||
|
||||
public static ExpenseWarehouseTransitWrapper build() { |
||||
return new ExpenseWarehouseTransitWrapper(); |
||||
} |
||||
|
||||
@Override |
||||
public ExpenseWarehouseTransitVO entityVO(ExpenseWarehouseTransitEntity expenseWarehouseTransit) { |
||||
ExpenseWarehouseTransitVO expenseWarehouseTransitVO = Objects.requireNonNull(BeanUtil.copy(expenseWarehouseTransit, ExpenseWarehouseTransitVO.class)); |
||||
|
||||
//User createUser = UserCache.getUser(expenseWarehouseTransit.getCreateUser());
|
||||
//User updateUser = UserCache.getUser(expenseWarehouseTransit.getUpdateUser());
|
||||
//expenseWarehouseTransitVO.setCreateUserName(createUser.getName());
|
||||
//expenseWarehouseTransitVO.setUpdateUserName(updateUser.getName());
|
||||
|
||||
return expenseWarehouseTransitVO; |
||||
} |
||||
|
||||
|
||||
} |
Loading…
Reference in new issue