md
This commit is contained in:
parent
1d71fe0bfc
commit
a6e45086e5
@ -55,6 +55,7 @@ import javax.servlet.http.HttpServletRequest;
|
|||||||
import javax.servlet.http.HttpServletResponse;
|
import javax.servlet.http.HttpServletResponse;
|
||||||
import javax.validation.Valid;
|
import javax.validation.Valid;
|
||||||
import java.io.*;
|
import java.io.*;
|
||||||
|
import java.math.BigDecimal;
|
||||||
import java.nio.charset.Charset;
|
import java.nio.charset.Charset;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
|
|
||||||
@ -345,6 +346,11 @@ public class WaybillController extends BaseController
|
|||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
EmisWaybill emisWaybillSave = waybillOrder.toDb();
|
EmisWaybill emisWaybillSave = waybillOrder.toDb();
|
||||||
|
|
||||||
|
|
||||||
|
if(emisWaybillSave.getTotalVolume()==null){
|
||||||
|
emisWaybillSave.setTotalVolume(BigDecimal.ZERO);
|
||||||
|
}
|
||||||
List<Map> estList=emisWaybillService.preCalcWaybillFee(emisWaybillSave);
|
List<Map> estList=emisWaybillService.preCalcWaybillFee(emisWaybillSave);
|
||||||
|
|
||||||
// 如果没有报价,则使用该路线下的产品作为列表
|
// 如果没有报价,则使用该路线下的产品作为列表
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user