This commit is contained in:
linfso 2024-10-13 19:02:32 +08:00
parent b150283c9d
commit 535e0166ef
2 changed files with 18 additions and 1 deletions

View File

@ -60,7 +60,7 @@ public class EmisTmsCostFee extends BaseEntity
/* 成本费 */
private BigDecimal costFee;
/* 交易时间 */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(pattern = "yyyy-MM-dd")
private Date tradeDate;
/* 总票数 */
private Integer sendPieceSum;

View File

@ -190,6 +190,23 @@ public class EmisTmsCostFeeServiceImpl implements IEmisTmsCostFeeService
}
/**
* 重算每一单成本分摊重算
* @param billCode
* @return
* @throws EmisBizError
*/
@Override
public int reCalcCostFeeByBillCode(String billCode) throws EmisBizError {
// 更新信息
return 1;
}
/**
* 修改TMS运输成本账单
*