记得上下班打卡 | git大法好,push需谨慎
Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liquidnet-bus-v1
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
董敬伟
liquidnet-bus-v1
Commits
27f158ac
Commit
27f158ac
authored
Nov 08, 2022
by
张国柄
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
+api:店铺商品管理:批量导入数据;
parent
c699e5dc
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
378 additions
and
0 deletions
+378
-0
GoblinGoodsImportDto.java
...om/liquidnet/service/goblin/dto/GoblinGoodsImportDto.java
+30
-0
GoblinStoreMgtGoodsImportController.java
...ontroller/manage/GoblinStoreMgtGoodsImportController.java
+64
-0
GoblinStoreMgtGoodsImportService.java
...service/impl/manage/GoblinStoreMgtGoodsImportService.java
+276
-0
GoblinMongoUtils.java
...a/com/liquidnet/service/goblin/util/GoblinMongoUtils.java
+8
-0
No files found.
liquidnet-bus-api/liquidnet-service-goblin-api/src/main/java/com/liquidnet/service/goblin/dto/GoblinGoodsImportDto.java
0 → 100644
View file @
27f158ac
package
com
.
liquidnet
.
service
.
goblin
.
dto
;
import
com.alibaba.excel.annotation.ExcelProperty
;
import
lombok.Data
;
import
java.math.BigDecimal
;
@Data
public
class
GoblinGoodsImportDto
{
@ExcelProperty
(
value
=
"商品编码"
)
private
String
spuCode
;
@ExcelProperty
(
value
=
"商品名称"
)
private
String
spuName
;
@ExcelProperty
(
value
=
"商品图片"
)
private
String
spuImgs
;
@ExcelProperty
(
value
=
"商品规格"
)
private
String
skuSpec
;
@ExcelProperty
(
value
=
"规格编码"
)
private
String
skuCode
;
@ExcelProperty
(
value
=
"价格"
)
private
BigDecimal
price
;
@ExcelProperty
(
value
=
"库存"
)
private
Integer
stock
;
@ExcelProperty
(
value
=
"规格图片"
)
private
String
skuImg
;
@ExcelProperty
(
value
=
"规格条码"
)
private
String
skuBarCode
;
// @ExcelProperty(value = "商品条码")
// private String spuBarCode;
}
liquidnet-bus-service/liquidnet-service-goblin/liquidnet-service-goblin-impl/src/main/java/com/liquidnet/service/goblin/controller/manage/GoblinStoreMgtGoodsImportController.java
0 → 100644
View file @
27f158ac
package
com
.
liquidnet
.
service
.
goblin
.
controller
.
manage
;
import
com.liquidnet.common.exception.LiquidnetServiceException
;
import
com.liquidnet.commons.lang.util.CurrentUtil
;
import
com.liquidnet.service.base.ErrorMapping
;
import
com.liquidnet.service.base.ResponseDto
;
import
com.liquidnet.service.goblin.service.impl.manage.GoblinStoreMgtGoodsImportService
;
import
com.liquidnet.service.goblin.util.GoblinRedisUtils
;
import
io.swagger.annotations.Api
;
import
io.swagger.annotations.ApiImplicitParam
;
import
io.swagger.annotations.ApiImplicitParams
;
import
io.swagger.annotations.ApiOperation
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RequestParam
;
import
org.springframework.web.bind.annotation.RestController
;
import
org.springframework.web.multipart.MultipartFile
;
import
javax.validation.constraints.NotBlank
;
import
java.io.IOException
;
@Api
(
tags
=
"店铺商品管理"
)
@Slf4j
@RestController
@RequestMapping
(
"store/mgt/goods"
)
public
class
GoblinStoreMgtGoodsImportController
{
@Autowired
GoblinRedisUtils
goblinRedisUtils
;
@Autowired
private
GoblinStoreMgtGoodsImportService
goblinStoreMgtGoodsImportService
;
@PostMapping
(
"/upload"
)
@ApiOperation
(
value
=
"批量导入数据"
,
notes
=
""
)
@ApiImplicitParams
({
@ApiImplicitParam
(
type
=
"form"
,
dataType
=
"File"
,
name
=
"file"
,
value
=
"文件"
,
required
=
true
),
@ApiImplicitParam
(
type
=
"form"
,
dataType
=
"Integer"
,
name
=
"dataType"
,
value
=
"导入数据类型[1-商品数据]"
,
example
=
"1"
),
@ApiImplicitParam
(
type
=
"form"
,
dataType
=
"String"
,
name
=
"storeId"
,
value
=
"店铺ID"
),
})
public
ResponseDto
<
String
>
upload
(
@RequestParam
MultipartFile
file
,
@RequestParam
int
dataType
,
@RequestParam
@NotBlank
(
message
=
"店铺ID不能为空"
)
String
storeId
)
{
String
currentUid
=
CurrentUtil
.
getCurrentUid
();
if
(!
goblinRedisUtils
.
hasStoreId
(
currentUid
,
storeId
))
{
return
ResponseDto
.
failure
(
ErrorMapping
.
get
(
"149002"
));
}
try
{
switch
(
dataType
)
{
case
1
:
goblinStoreMgtGoodsImportService
.
goodsInformationDataAnalysisProcessing
(
file
,
currentUid
,
storeId
);
break
;
case
2
:
default
:
return
ResponseDto
.
failure
(
ErrorMapping
.
get
(
"39001"
));
}
}
catch
(
LiquidnetServiceException
e
)
{
return
ResponseDto
.
failure
(
e
.
getMessage
());
}
catch
(
IOException
e
)
{
log
.
error
(
"店铺商品管理:批量导入数据:异常[UID={},dataType={},fileName={}]"
,
currentUid
,
dataType
,
file
.
getOriginalFilename
(),
e
);
return
ResponseDto
.
failure
(
"数据错误,解析失败"
);
}
return
ResponseDto
.
success
();
}
}
liquidnet-bus-service/liquidnet-service-goblin/liquidnet-service-goblin-impl/src/main/java/com/liquidnet/service/goblin/service/impl/manage/GoblinStoreMgtGoodsImportService.java
0 → 100644
View file @
27f158ac
This diff is collapsed.
Click to expand it.
liquidnet-bus-service/liquidnet-service-goblin/liquidnet-service-goblin-impl/src/main/java/com/liquidnet/service/goblin/util/GoblinMongoUtils.java
View file @
27f158ac
...
@@ -506,6 +506,10 @@ public class GoblinMongoUtils {
...
@@ -506,6 +506,10 @@ public class GoblinMongoUtils {
return
mongoTemplate
.
insert
(
vo
,
GoblinGoodsInfoVo
.
class
.
getSimpleName
());
return
mongoTemplate
.
insert
(
vo
,
GoblinGoodsInfoVo
.
class
.
getSimpleName
());
}
}
public
List
<
GoblinGoodsInfoVo
>
insertMgtGoodsInfoVos
(
List
<
GoblinGoodsInfoVo
>
vos
)
{
return
(
List
<
GoblinGoodsInfoVo
>)
mongoTemplate
.
insert
(
vos
,
GoblinGoodsInfoVo
.
class
.
getSimpleName
());
}
public
void
upsertGoodsInfoVo
(
GoblinGoodsInfoVo
vo
)
{
public
void
upsertGoodsInfoVo
(
GoblinGoodsInfoVo
vo
)
{
Document
document
=
(
Document
)
mongoConverter
.
convertToMongoType
(
vo
);
Document
document
=
(
Document
)
mongoConverter
.
convertToMongoType
(
vo
);
Update
update
=
Update
.
fromDocument
(
document
);
Update
update
=
Update
.
fromDocument
(
document
);
...
@@ -739,6 +743,10 @@ public class GoblinMongoUtils {
...
@@ -739,6 +743,10 @@ public class GoblinMongoUtils {
return
mongoTemplate
.
insert
(
vo
,
GoblinGoodsSkuInfoVo
.
class
.
getSimpleName
());
return
mongoTemplate
.
insert
(
vo
,
GoblinGoodsSkuInfoVo
.
class
.
getSimpleName
());
}
}
public
List
<
GoblinGoodsSkuInfoVo
>
insertMgtGoodsSkuInfoVos
(
List
<
GoblinGoodsSkuInfoVo
>
vos
)
{
return
(
List
<
GoblinGoodsSkuInfoVo
>)
mongoTemplate
.
insert
(
vos
,
GoblinGoodsSkuInfoVo
.
class
.
getSimpleName
());
}
public
UpdateResult
upsertGoodsSkuInfoVo
(
GoblinGoodsSkuInfoVo
vo
)
{
public
UpdateResult
upsertGoodsSkuInfoVo
(
GoblinGoodsSkuInfoVo
vo
)
{
Document
document
=
(
Document
)
mongoConverter
.
convertToMongoType
(
vo
);
Document
document
=
(
Document
)
mongoConverter
.
convertToMongoType
(
vo
);
Update
update
=
Update
.
fromDocument
(
document
);
Update
update
=
Update
.
fromDocument
(
document
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment