新增供应商库存相关。新增资质证书兼容pdf,word文档

master
anthonywj 2 years ago
parent de29bc6f1a
commit a070d33548

@ -85,6 +85,9 @@ public class InvWarehouseEntity {
*/ */
@TableField(value = "advanceType") @TableField(value = "advanceType")
private Boolean advanceType; private Boolean advanceType;
@TableField(value = "spUse")
private Boolean spUse;
@TableField(exist = false) @TableField(exist = false)
public String thirdName; public String thirdName;

@ -19,6 +19,27 @@ public class DownloadController {
public void getImage(HttpServletResponse response public void getImage(HttpServletResponse response
, @RequestParam String type , @RequestParam String type
, @RequestParam String name) throws IOException { , @RequestParam String name) throws IOException {
if (name.endsWith("pdf")) {
OutputStream os = null;
try {
FileInputStream input = new FileInputStream(new File("d:/1s/udiwms/register/file/" + type + "/" + name));
OutputStream out = response.getOutputStream();
byte[] b = new byte[2048];
int len;
while ((len = input.read(b)) != -1) {
out.write(b, 0, len);
}
input.close();
} catch (IOException e) {
} finally {
if (os != null) {
os.flush();
os.close();
}
}
} else {
OutputStream os = null; OutputStream os = null;
try { try {
// 读取图片 // 读取图片
@ -40,6 +61,9 @@ public class DownloadController {
} }
} }
}
@GetMapping(value = "/udiwms/donwload/file") @GetMapping(value = "/udiwms/donwload/file")
public void download(HttpServletResponse response, public void download(HttpServletResponse response,
@RequestParam String fileName) throws IOException { @RequestParam String fileName) throws IOException {

@ -112,8 +112,8 @@ public class uploadController {
String fileName = file.getOriginalFilename(); String fileName = file.getOriginalFilename();
String fileType = fileName.substring(fileName.lastIndexOf(".")); String fileType = fileName.substring(fileName.lastIndexOf("."));
// 文件类型判断 // 文件类型判断
if (StringUtils.isBlank(fileType) || !fileType.equals(".jpg") && !fileType.equals(".png")) { if (StringUtils.isBlank(fileType) || (!fileType.equals(".jpg") && !fileType.equals(".png") && !fileType.equals(".doc") &&!fileType.equals(".pdf"))) {
return ResultVOUtils.error(ResultEnum.DATA_ERROR, "上传文件只能是 .jpg,.png 格式"); return ResultVOUtils.error(ResultEnum.DATA_ERROR, "上传文件只能是 jpg,png,doc,pdf 格式");
} }
String newName = UUID.randomUUID() + fileType;//生成新文件名 String newName = UUID.randomUUID() + fileType;//生成新文件名
String savePath = "d:/1s/udiwms/register/file/" + type; String savePath = "d:/1s/udiwms/register/file/" + type;

@ -211,7 +211,8 @@
<insert id="importInvSubWarehouse" parameterType="java.util.List"> <insert id="importInvSubWarehouse" parameterType="java.util.List">
replace replace
into auth_warehouse into auth_warehouse
(id, code, `name`, parentId, remark, defaultInv, parentCode, advanceType, thirdId, thirdId1, thirdId2, thirdId3, (id, code, `name`, parentId, remark, defaultInv, parentCode, advanceType, spUse, thirdId, thirdId1,
thirdId2, thirdId3,
thirdId4) thirdId4)
values values
@ -225,6 +226,7 @@
#{item.defaultInv}, #{item.defaultInv},
#{item.parentCode}, #{item.parentCode},
#{item.advanceType}, #{item.advanceType},
#{item.spUse},
#{item.thirdId}, #{item.thirdId},
#{item.thirdId1}, #{item.thirdId1},
#{item.thirdId2}, #{item.thirdId2},
@ -362,6 +364,9 @@
<if test="advanceType != null"> <if test="advanceType != null">
AND auth_warehouse.advanceType = #{advanceType} AND auth_warehouse.advanceType = #{advanceType}
</if> </if>
<if test="spUse != null">
AND auth_warehouse.spUse = #{spUse}
</if>
</where> </where>
</select> </select>

@ -9,6 +9,8 @@ CALL Pro_Temp_ColumnWork('thr_system_bus_api', 'thirdBuyName', 'varchar(255) ',
CALL Pro_Temp_ColumnWork('io_order_detail_biz', 'bindRlIds', 'varchar(255) ', 1); CALL Pro_Temp_ColumnWork('io_order_detail_biz', 'bindRlIds', 'varchar(255) ', 1);
CALL Pro_Temp_ColumnWork('auth_warehouse', 'advanceType', 'tinyint', 1); CALL Pro_Temp_ColumnWork('auth_warehouse', 'advanceType', 'tinyint', 1);
CALL Pro_Temp_ColumnWork('auth_warehouse', 'spUse', 'tinyint', 1);
CALL Pro_Temp_ColumnWork('basic_udirel', 'relCode', 'varchar(255) ', 1); CALL Pro_Temp_ColumnWork('basic_udirel', 'relCode', 'varchar(255) ', 1);
CALL Pro_Temp_ColumnWork('basic_udirel', 'lowStockNum', 'varchar(255) ', 1); CALL Pro_Temp_ColumnWork('basic_udirel', 'lowStockNum', 'varchar(255) ', 1);

Loading…
Cancel
Save