Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
iBiz商业中心
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz商业套件
iBiz商业中心
提交
9eee95e3
提交
9eee95e3
编写于
10月 26, 2020
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
xignzi006 发布系统代码
上级
18452399
变更
4
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
54 行增加
和
0 行删除
+54
-0
Res_supplierExService.java
...entral/core/extensions/service/Res_supplierExService.java
+35
-0
IRes_supplierService.java
...scentral/core/odoo_base/service/IRes_supplierService.java
+1
-0
Res_supplierServiceImpl.java
.../core/odoo_base/service/impl/Res_supplierServiceImpl.java
+7
-0
Res_supplierResource.java
...izlab/businesscentral/core/rest/Res_supplierResource.java
+11
-0
未找到文件。
businesscentral-core/src/main/java/cn/ibizlab/businesscentral/core/extensions/service/Res_supplierExService.java
0 → 100644
浏览文件 @
9eee95e3
package
cn
.
ibizlab
.
businesscentral
.
core
.
extensions
.
service
;
import
cn.ibizlab.businesscentral.core.odoo_base.service.impl.Res_supplierServiceImpl
;
import
lombok.extern.slf4j.Slf4j
;
import
cn.ibizlab.businesscentral.core.odoo_base.domain.Res_supplier
;
import
org.springframework.stereotype.Service
;
import
org.springframework.transaction.annotation.Transactional
;
import
org.springframework.context.annotation.Primary
;
import
java.util.*
;
/**
* 实体[供应商] 自定义服务对象
*/
@Slf4j
@Primary
@Service
(
"Res_supplierExService"
)
public
class
Res_supplierExService
extends
Res_supplierServiceImpl
{
@Override
protected
Class
currentModelClass
()
{
return
com
.
baomidou
.
mybatisplus
.
core
.
toolkit
.
ReflectionKit
.
getSuperClassGenericType
(
this
.
getClass
().
getSuperclass
(),
1
);
}
/**
* 自定义行为[MasterTabCount]用户扩展
* @param et
* @return
*/
@Override
@Transactional
public
Res_supplier
masterTabCount
(
Res_supplier
et
)
{
return
super
.
masterTabCount
(
et
);
}
}
businesscentral-core/src/main/java/cn/ibizlab/businesscentral/core/odoo_base/service/IRes_supplierService.java
浏览文件 @
9eee95e3
...
...
@@ -35,6 +35,7 @@ public interface IRes_supplierService extends IService<Res_supplier>{
Res_supplier
get
(
Long
key
)
;
Res_supplier
getDraft
(
Res_supplier
et
)
;
boolean
checkKey
(
Res_supplier
et
)
;
Res_supplier
masterTabCount
(
Res_supplier
et
)
;
boolean
save
(
Res_supplier
et
)
;
void
saveBatch
(
List
<
Res_supplier
>
list
)
;
Page
<
Res_supplier
>
searchDefault
(
Res_supplierSearchContext
context
)
;
...
...
businesscentral-core/src/main/java/cn/ibizlab/businesscentral/core/odoo_base/service/impl/Res_supplierServiceImpl.java
浏览文件 @
9eee95e3
...
...
@@ -162,6 +162,13 @@ public class Res_supplierServiceImpl extends EBSServiceImpl<Res_supplierMapper,
public
boolean
checkKey
(
Res_supplier
et
)
{
return
(!
ObjectUtils
.
isEmpty
(
et
.
getId
()))&&(!
Objects
.
isNull
(
this
.
getById
(
et
.
getId
())));
}
@Override
@Transactional
public
Res_supplier
masterTabCount
(
Res_supplier
et
)
{
//自定义代码
return
et
;
}
@Override
@Transactional
public
boolean
save
(
Res_supplier
et
)
{
...
...
businesscentral-provider/businesscentral-provider-core/src/main/java/cn/ibizlab/businesscentral/core/rest/Res_supplierResource.java
浏览文件 @
9eee95e3
...
...
@@ -120,6 +120,17 @@ public class Res_supplierResource {
return
ResponseEntity
.
status
(
HttpStatus
.
OK
).
body
(
res_supplierService
.
checkKey
(
res_supplierMapping
.
toDomain
(
res_supplierdto
)));
}
@PreAuthorize
(
"hasAnyAuthority('ROLE_SUPERADMIN','iBizBusinessCentral-Res_supplier-MasterTabCount-all')"
)
@ApiOperation
(
value
=
"MasterTabCount"
,
tags
=
{
"供应商"
},
notes
=
"MasterTabCount"
)
@RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"/res_suppliers/{res_supplier_id}/mastertabcount"
)
public
ResponseEntity
<
Res_supplierDTO
>
masterTabCount
(
@PathVariable
(
"res_supplier_id"
)
Long
res_supplier_id
,
@RequestBody
Res_supplierDTO
res_supplierdto
)
{
Res_supplier
domain
=
res_supplierMapping
.
toDomain
(
res_supplierdto
);
domain
.
setId
(
res_supplier_id
);
domain
=
res_supplierService
.
masterTabCount
(
domain
);
res_supplierdto
=
res_supplierMapping
.
toDto
(
domain
);
return
ResponseEntity
.
status
(
HttpStatus
.
OK
).
body
(
res_supplierdto
);
}
@PreAuthorize
(
"hasAnyAuthority('ROLE_SUPERADMIN','iBizBusinessCentral-Res_supplier-Save-all')"
)
@ApiOperation
(
value
=
"保存供应商"
,
tags
=
{
"供应商"
},
notes
=
"保存供应商"
)
@RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"/res_suppliers/save"
)
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录