|
@@ -43,6 +43,7 @@ import org.springframework.validation.annotation.Validated;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
|
|
+import java.math.BigDecimal;
|
|
|
import java.text.ParseException;
|
|
import java.text.ParseException;
|
|
|
import java.util.ArrayList;
|
|
import java.util.ArrayList;
|
|
|
import java.util.Arrays;
|
|
import java.util.Arrays;
|
|
@@ -182,7 +183,7 @@ public class FsStoreOrderScrmController extends BaseController
|
|
|
if (vo.getUserAddress()!=null){
|
|
if (vo.getUserAddress()!=null){
|
|
|
vo.setUserAddress(ParseUtils.parseAddress(vo.getUserAddress()));
|
|
vo.setUserAddress(ParseUtils.parseAddress(vo.getUserAddress()));
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
|
|
+ vo.setCost(BigDecimal.ZERO);
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -391,6 +392,7 @@ public class FsStoreOrderScrmController extends BaseController
|
|
|
catch (Exception e){
|
|
catch (Exception e){
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
+ vo.setCost(BigDecimal.ZERO);
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
ExcelUtil<FsStoreOrderItemExportVO> util = new ExcelUtil<FsStoreOrderItemExportVO>(FsStoreOrderItemExportVO.class);
|
|
ExcelUtil<FsStoreOrderItemExportVO> util = new ExcelUtil<FsStoreOrderItemExportVO>(FsStoreOrderItemExportVO.class);
|