Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
iBiz商业中心
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz商业套件
iBiz商业中心
提交
dcec9d7f
提交
dcec9d7f
编写于
11月 03, 2020
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
xignzi006 发布系统代码 [Spring Boot]
上级
292f8a4b
变更
14
展开全部
显示空白字符变更
内嵌
并排
正在显示
14 个修改的文件
包含
128 行增加
和
131 行删除
+128
-131
Purchase_order_line.java
...entral/core/odoo_purchase/domain/Purchase_order_line.java
+1
-9
Purchase_requisition.java
...ntral/core/odoo_purchase/domain/Purchase_requisition.java
+1
-9
Purchase_requisition_line.java
.../core/odoo_purchase/domain/Purchase_requisition_line.java
+1
-9
IPurchase_requisitionService.java
...e/odoo_purchase/service/IPurchase_requisitionService.java
+2
-0
IPurchase_requisition_lineService.java
...o_purchase/service/IPurchase_requisition_lineService.java
+2
-0
Purchase_requisitionServiceImpl.java
...urchase/service/impl/Purchase_requisitionServiceImpl.java
+19
-0
Purchase_requisition_lineServiceImpl.java
...se/service/impl/Purchase_requisition_lineServiceImpl.java
+19
-0
systemResource.json
...al-core/src/main/resources/permission/systemResource.json
+3
-3
iBizBusinessCentral.json
...core/src/main/resources/sysmodel/iBizBusinessCentral.json
+3
-0
Purchase_order_lineDTO.java
...zlab/businesscentral/core/dto/Purchase_order_lineDTO.java
+0
-8
Purchase_requisitionDTO.java
...lab/businesscentral/core/dto/Purchase_requisitionDTO.java
+0
-8
Purchase_requisition_lineDTO.java
...usinesscentral/core/dto/Purchase_requisition_lineDTO.java
+0
-8
Purchase_requisitionResource.java
...sinesscentral/core/rest/Purchase_requisitionResource.java
+22
-22
Purchase_requisition_lineResource.java
...scentral/core/rest/Purchase_requisition_lineResource.java
+55
-55
未找到文件。
businesscentral-core/src/main/java/cn/ibizlab/businesscentral/core/odoo_purchase/domain/Purchase_order_line.java
浏览文件 @
dcec9d7f
...
@@ -316,7 +316,7 @@ public class Purchase_order_line extends EntityMP implements Serializable {
...
@@ -316,7 +316,7 @@ public class Purchase_order_line extends EntityMP implements Serializable {
/**
/**
* 公司
* 公司
*/
*/
@DEField
(
name
=
"company_id"
)
@DEField
(
name
=
"company_id"
,
preType
=
DEPredefinedFieldType
.
ORGID
)
@TableField
(
value
=
"company_id"
)
@TableField
(
value
=
"company_id"
)
@JSONField
(
name
=
"company_id"
)
@JSONField
(
name
=
"company_id"
)
@JsonProperty
(
"company_id"
)
@JsonProperty
(
"company_id"
)
...
@@ -621,14 +621,6 @@ public class Purchase_order_line extends EntityMP implements Serializable {
...
@@ -621,14 +621,6 @@ public class Purchase_order_line extends EntityMP implements Serializable {
this
.
modify
(
"qty_invoiced"
,
qtyInvoiced
);
this
.
modify
(
"qty_invoiced"
,
qtyInvoiced
);
}
}
/**
* 设置 [公司]
*/
public
void
setCompanyId
(
Long
companyId
){
this
.
companyId
=
companyId
;
this
.
modify
(
"company_id"
,
companyId
);
}
/**
/**
* 设置 [分析账户]
* 设置 [分析账户]
*/
*/
...
...
businesscentral-core/src/main/java/cn/ibizlab/businesscentral/core/odoo_purchase/domain/Purchase_requisition.java
浏览文件 @
dcec9d7f
...
@@ -220,7 +220,7 @@ public class Purchase_requisition extends EntityMP implements Serializable {
...
@@ -220,7 +220,7 @@ public class Purchase_requisition extends EntityMP implements Serializable {
/**
/**
* 公司
* 公司
*/
*/
@DEField
(
name
=
"company_id"
)
@DEField
(
name
=
"company_id"
,
preType
=
DEPredefinedFieldType
.
ORGID
)
@TableField
(
value
=
"company_id"
)
@TableField
(
value
=
"company_id"
)
@JSONField
(
name
=
"company_id"
)
@JSONField
(
name
=
"company_id"
)
@JsonProperty
(
"company_id"
)
@JsonProperty
(
"company_id"
)
...
@@ -492,14 +492,6 @@ public class Purchase_requisition extends EntityMP implements Serializable {
...
@@ -492,14 +492,6 @@ public class Purchase_requisition extends EntityMP implements Serializable {
this
.
modify
(
"user_id"
,
userId
);
this
.
modify
(
"user_id"
,
userId
);
}
}
/**
* 设置 [公司]
*/
public
void
setCompanyId
(
Long
companyId
){
this
.
companyId
=
companyId
;
this
.
modify
(
"company_id"
,
companyId
);
}
/**
/**
* 设置 [ID]
* 设置 [ID]
*/
*/
...
...
businesscentral-core/src/main/java/cn/ibizlab/businesscentral/core/odoo_purchase/domain/Purchase_requisition_line.java
浏览文件 @
dcec9d7f
...
@@ -158,7 +158,7 @@ public class Purchase_requisition_line extends EntityMP implements Serializable
...
@@ -158,7 +158,7 @@ public class Purchase_requisition_line extends EntityMP implements Serializable
/**
/**
* 公司
* 公司
*/
*/
@DEField
(
name
=
"company_id"
)
@DEField
(
name
=
"company_id"
,
preType
=
DEPredefinedFieldType
.
ORGID
)
@TableField
(
value
=
"company_id"
)
@TableField
(
value
=
"company_id"
)
@JSONField
(
name
=
"company_id"
)
@JSONField
(
name
=
"company_id"
)
@JsonProperty
(
"company_id"
)
@JsonProperty
(
"company_id"
)
...
@@ -399,14 +399,6 @@ public class Purchase_requisition_line extends EntityMP implements Serializable
...
@@ -399,14 +399,6 @@ public class Purchase_requisition_line extends EntityMP implements Serializable
this
.
modify
(
"requisition_id"
,
requisitionId
);
this
.
modify
(
"requisition_id"
,
requisitionId
);
}
}
/**
* 设置 [公司]
*/
public
void
setCompanyId
(
Long
companyId
){
this
.
companyId
=
companyId
;
this
.
modify
(
"company_id"
,
companyId
);
}
/**
/**
* 设置 [说明]
* 设置 [说明]
*/
*/
...
...
businesscentral-core/src/main/java/cn/ibizlab/businesscentral/core/odoo_purchase/service/IPurchase_requisitionService.java
浏览文件 @
dcec9d7f
...
@@ -76,6 +76,8 @@ public interface IPurchase_requisitionService extends IService<Purchase_requisit
...
@@ -76,6 +76,8 @@ public interface IPurchase_requisitionService extends IService<Purchase_requisit
*/
*/
boolean
execute
(
String
sql
,
Map
param
);
boolean
execute
(
String
sql
,
Map
param
);
List
<
Purchase_requisition
>
getPurchaseRequisitionByIds
(
List
<
Long
>
ids
)
;
List
<
Purchase_requisition
>
getPurchaseRequisitionByEntities
(
List
<
Purchase_requisition
>
entities
)
;
}
}
businesscentral-core/src/main/java/cn/ibizlab/businesscentral/core/odoo_purchase/service/IPurchase_requisition_lineService.java
浏览文件 @
dcec9d7f
...
@@ -69,6 +69,8 @@ public interface IPurchase_requisition_lineService extends IService<Purchase_req
...
@@ -69,6 +69,8 @@ public interface IPurchase_requisition_lineService extends IService<Purchase_req
*/
*/
boolean
execute
(
String
sql
,
Map
param
);
boolean
execute
(
String
sql
,
Map
param
);
List
<
Purchase_requisition_line
>
getPurchaseRequisitionLineByIds
(
List
<
Long
>
ids
)
;
List
<
Purchase_requisition_line
>
getPurchaseRequisitionLineByEntities
(
List
<
Purchase_requisition_line
>
entities
)
;
}
}
businesscentral-core/src/main/java/cn/ibizlab/businesscentral/core/odoo_purchase/service/impl/Purchase_requisitionServiceImpl.java
浏览文件 @
dcec9d7f
...
@@ -458,6 +458,25 @@ public class Purchase_requisitionServiceImpl extends EBSServiceImpl<Purchase_req
...
@@ -458,6 +458,25 @@ public class Purchase_requisitionServiceImpl extends EBSServiceImpl<Purchase_req
return
true
;
return
true
;
}
}
@Override
public
List
<
Purchase_requisition
>
getPurchaseRequisitionByIds
(
List
<
Long
>
ids
)
{
return
this
.
listByIds
(
ids
);
}
@Override
public
List
<
Purchase_requisition
>
getPurchaseRequisitionByEntities
(
List
<
Purchase_requisition
>
entities
)
{
List
ids
=
new
ArrayList
();
for
(
Purchase_requisition
entity
:
entities
){
Serializable
id
=
entity
.
getId
();
if
(!
ObjectUtils
.
isEmpty
(
id
)){
ids
.
add
(
id
);
}
}
if
(
ids
.
size
()>
0
)
return
this
.
listByIds
(
ids
);
else
return
entities
;
}
...
...
businesscentral-core/src/main/java/cn/ibizlab/businesscentral/core/odoo_purchase/service/impl/Purchase_requisition_lineServiceImpl.java
浏览文件 @
dcec9d7f
...
@@ -418,6 +418,25 @@ public class Purchase_requisition_lineServiceImpl extends EBSServiceImpl<Purchas
...
@@ -418,6 +418,25 @@ public class Purchase_requisition_lineServiceImpl extends EBSServiceImpl<Purchas
return
true
;
return
true
;
}
}
@Override
public
List
<
Purchase_requisition_line
>
getPurchaseRequisitionLineByIds
(
List
<
Long
>
ids
)
{
return
this
.
listByIds
(
ids
);
}
@Override
public
List
<
Purchase_requisition_line
>
getPurchaseRequisitionLineByEntities
(
List
<
Purchase_requisition_line
>
entities
)
{
List
ids
=
new
ArrayList
();
for
(
Purchase_requisition_line
entity
:
entities
){
Serializable
id
=
entity
.
getId
();
if
(!
ObjectUtils
.
isEmpty
(
id
)){
ids
.
add
(
id
);
}
}
if
(
ids
.
size
()>
0
)
return
this
.
listByIds
(
ids
);
else
return
entities
;
}
...
...
businesscentral-core/src/main/resources/permission/systemResource.json
浏览文件 @
dcec9d7f
...
@@ -1105,7 +1105,7 @@
...
@@ -1105,7 +1105,7 @@
"sysmoudle"
:{
"id"
:
"ODOO_PURCHASE"
,
"name"
:
"[ODOO]采购"
},
"sysmoudle"
:{
"id"
:
"ODOO_PURCHASE"
,
"name"
:
"[ODOO]采购"
},
"dedataset"
:[{
"id"
:
"Default"
,
"name"
:
"数据集"
}],
"dedataset"
:[{
"id"
:
"Default"
,
"name"
:
"数据集"
}],
"deaction"
:[{
"id"
:
"Create"
,
"name"
:
"Create"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Update"
,
"name"
:
"Update"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Remove"
,
"name"
:
"Remove"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Get"
,
"name"
:
"Get"
,
"type"
:
"BUILTIN"
},{
"id"
:
"GetDraft"
,
"name"
:
"GetDraft"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Action_cancel"
,
"name"
:
"取消"
,
"type"
:
"USERCUSTOM"
},{
"id"
:
"Action_done"
,
"name"
:
"关闭"
,
"type"
:
"USERCUSTOM"
},{
"id"
:
"Action_draft"
,
"name"
:
"重置为草稿"
,
"type"
:
"USERCUSTOM"
},{
"id"
:
"Action_in_progress"
,
"name"
:
"确认"
,
"type"
:
"USERCUSTOM"
},{
"id"
:
"Action_open"
,
"name"
:
"验证"
,
"type"
:
"USERCUSTOM"
},{
"id"
:
"CheckKey"
,
"name"
:
"CheckKey"
,
"type"
:
"BUILTIN"
},{
"id"
:
"MasterTabCount"
,
"name"
:
"主数据分页计数"
,
"type"
:
"USERCUSTOM"
},{
"id"
:
"Save"
,
"name"
:
"Save"
,
"type"
:
"BUILTIN"
}],
"deaction"
:[{
"id"
:
"Create"
,
"name"
:
"Create"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Update"
,
"name"
:
"Update"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Remove"
,
"name"
:
"Remove"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Get"
,
"name"
:
"Get"
,
"type"
:
"BUILTIN"
},{
"id"
:
"GetDraft"
,
"name"
:
"GetDraft"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Action_cancel"
,
"name"
:
"取消"
,
"type"
:
"USERCUSTOM"
},{
"id"
:
"Action_done"
,
"name"
:
"关闭"
,
"type"
:
"USERCUSTOM"
},{
"id"
:
"Action_draft"
,
"name"
:
"重置为草稿"
,
"type"
:
"USERCUSTOM"
},{
"id"
:
"Action_in_progress"
,
"name"
:
"确认"
,
"type"
:
"USERCUSTOM"
},{
"id"
:
"Action_open"
,
"name"
:
"验证"
,
"type"
:
"USERCUSTOM"
},{
"id"
:
"CheckKey"
,
"name"
:
"CheckKey"
,
"type"
:
"BUILTIN"
},{
"id"
:
"MasterTabCount"
,
"name"
:
"主数据分页计数"
,
"type"
:
"USERCUSTOM"
},{
"id"
:
"Save"
,
"name"
:
"Save"
,
"type"
:
"BUILTIN"
}],
"datascope"
:[{
"id"
:
"all"
,
"name"
:
"全部数据"
}]
"datascope"
:[{
"id"
:
"all"
,
"name"
:
"全部数据"
}
,
{
"id"
:
"curorg"
,
"name"
:
"当前单位"
},{
"id"
:
"porg"
,
"name"
:
"上级单位"
},{
"id"
:
"sorg"
,
"name"
:
"下级单位"
}
]
}
}
,
{
,
{
"dename"
:
"Account_invoice_tax"
,
"dename"
:
"Account_invoice_tax"
,
...
@@ -1793,7 +1793,7 @@
...
@@ -1793,7 +1793,7 @@
"sysmoudle"
:{
"id"
:
"ODOO_PURCHASE"
,
"name"
:
"[ODOO]采购"
},
"sysmoudle"
:{
"id"
:
"ODOO_PURCHASE"
,
"name"
:
"[ODOO]采购"
},
"dedataset"
:[{
"id"
:
"Default"
,
"name"
:
"数据集"
}],
"dedataset"
:[{
"id"
:
"Default"
,
"name"
:
"数据集"
}],
"deaction"
:[{
"id"
:
"Create"
,
"name"
:
"Create"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Update"
,
"name"
:
"Update"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Remove"
,
"name"
:
"Remove"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Get"
,
"name"
:
"Get"
,
"type"
:
"BUILTIN"
},{
"id"
:
"GetDraft"
,
"name"
:
"GetDraft"
,
"type"
:
"BUILTIN"
},{
"id"
:
"CheckKey"
,
"name"
:
"CheckKey"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Save"
,
"name"
:
"Save"
,
"type"
:
"BUILTIN"
}],
"deaction"
:[{
"id"
:
"Create"
,
"name"
:
"Create"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Update"
,
"name"
:
"Update"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Remove"
,
"name"
:
"Remove"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Get"
,
"name"
:
"Get"
,
"type"
:
"BUILTIN"
},{
"id"
:
"GetDraft"
,
"name"
:
"GetDraft"
,
"type"
:
"BUILTIN"
},{
"id"
:
"CheckKey"
,
"name"
:
"CheckKey"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Save"
,
"name"
:
"Save"
,
"type"
:
"BUILTIN"
}],
"datascope"
:[{
"id"
:
"all"
,
"name"
:
"全部数据"
}]
"datascope"
:[{
"id"
:
"all"
,
"name"
:
"全部数据"
}
,
{
"id"
:
"curorg"
,
"name"
:
"当前单位"
},{
"id"
:
"porg"
,
"name"
:
"上级单位"
},{
"id"
:
"sorg"
,
"name"
:
"下级单位"
}
]
}
}
,
{
,
{
"dename"
:
"Crm_activity_report"
,
"dename"
:
"Crm_activity_report"
,
...
@@ -2105,7 +2105,7 @@
...
@@ -2105,7 +2105,7 @@
"sysmoudle"
:{
"id"
:
"ODOO_PURCHASE"
,
"name"
:
"[ODOO]采购"
},
"sysmoudle"
:{
"id"
:
"ODOO_PURCHASE"
,
"name"
:
"[ODOO]采购"
},
"dedataset"
:[{
"id"
:
"Calc_order_amount"
,
"name"
:
"calc_order_amount"
},{
"id"
:
"Default"
,
"name"
:
"数据集"
}],
"dedataset"
:[{
"id"
:
"Calc_order_amount"
,
"name"
:
"calc_order_amount"
},{
"id"
:
"Default"
,
"name"
:
"数据集"
}],
"deaction"
:[{
"id"
:
"Create"
,
"name"
:
"建立数据"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Update"
,
"name"
:
"更新数据"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Remove"
,
"name"
:
"删除数据"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Get"
,
"name"
:
"获取数据"
,
"type"
:
"BUILTIN"
},{
"id"
:
"GetDraft"
,
"name"
:
"GetDraft"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Calc_amount"
,
"name"
:
"计算订单金额"
,
"type"
:
"DELOGIC"
},{
"id"
:
"Calc_price"
,
"name"
:
"计算金额"
,
"type"
:
"USERCUSTOM"
},{
"id"
:
"CheckKey"
,
"name"
:
"CheckKey"
,
"type"
:
"BUILTIN"
},{
"id"
:
"CreateBatch"
,
"name"
:
"批建立数据"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Product_change"
,
"name"
:
"选择产品"
,
"type"
:
"USERCUSTOM"
},{
"id"
:
"RemoveBatch"
,
"name"
:
"批删除数据"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Save"
,
"name"
:
"Save"
,
"type"
:
"BUILTIN"
},{
"id"
:
"UpdateBatch"
,
"name"
:
"批更新数据"
,
"type"
:
"BUILTIN"
}],
"deaction"
:[{
"id"
:
"Create"
,
"name"
:
"建立数据"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Update"
,
"name"
:
"更新数据"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Remove"
,
"name"
:
"删除数据"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Get"
,
"name"
:
"获取数据"
,
"type"
:
"BUILTIN"
},{
"id"
:
"GetDraft"
,
"name"
:
"GetDraft"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Calc_amount"
,
"name"
:
"计算订单金额"
,
"type"
:
"DELOGIC"
},{
"id"
:
"Calc_price"
,
"name"
:
"计算金额"
,
"type"
:
"USERCUSTOM"
},{
"id"
:
"CheckKey"
,
"name"
:
"CheckKey"
,
"type"
:
"BUILTIN"
},{
"id"
:
"CreateBatch"
,
"name"
:
"批建立数据"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Product_change"
,
"name"
:
"选择产品"
,
"type"
:
"USERCUSTOM"
},{
"id"
:
"RemoveBatch"
,
"name"
:
"批删除数据"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Save"
,
"name"
:
"Save"
,
"type"
:
"BUILTIN"
},{
"id"
:
"UpdateBatch"
,
"name"
:
"批更新数据"
,
"type"
:
"BUILTIN"
}],
"datascope"
:[{
"id"
:
"all"
,
"name"
:
"全部数据"
},
{
"id"
:
"createman"
,
"name"
:
"创建人"
}]
"datascope"
:[{
"id"
:
"all"
,
"name"
:
"全部数据"
},
{
"id"
:
"c
urorg"
,
"name"
:
"当前单位"
},{
"id"
:
"porg"
,
"name"
:
"上级单位"
},{
"id"
:
"sorg"
,
"name"
:
"下级单位"
}
,
{
"id"
:
"c
reateman"
,
"name"
:
"创建人"
}]
}
}
,
{
,
{
"dename"
:
"Survey_survey"
,
"dename"
:
"Survey_survey"
,
...
...
businesscentral-core/src/main/resources/sysmodel/iBizBusinessCentral.json
浏览文件 @
dcec9d7f
...
@@ -134235,6 +134235,7 @@
...
@@ -134235,6 +134235,7 @@
"nullable":1,
"nullable":1,
"physical_field":1,
"physical_field":1,
"data_type":"BIGINT",
"data_type":"BIGINT",
"predefined":"ORGID",
"key_field":0,
"key_field":0,
"show_order":1000,
"show_order":1000,
"major_field":0
"major_field":0
...
@@ -135687,6 +135688,7 @@
...
@@ -135687,6 +135688,7 @@
"nullable":1,
"nullable":1,
"physical_field":1,
"physical_field":1,
"data_type":"BIGINT",
"data_type":"BIGINT",
"predefined":"ORGID",
"key_field":0,
"key_field":0,
"show_order":1000,
"show_order":1000,
"major_field":0
"major_field":0
...
@@ -136092,6 +136094,7 @@
...
@@ -136092,6 +136094,7 @@
"nullable":1,
"nullable":1,
"physical_field":1,
"physical_field":1,
"data_type":"BIGINT",
"data_type":"BIGINT",
"predefined":"ORGID",
"key_field":0,
"key_field":0,
"show_order":1000,
"show_order":1000,
"major_field":0
"major_field":0
businesscentral-provider/businesscentral-provider-core/src/main/java/cn/ibizlab/businesscentral/core/dto/Purchase_order_lineDTO.java
浏览文件 @
dcec9d7f
...
@@ -563,14 +563,6 @@ public class Purchase_order_lineDTO extends DTOBase implements Serializable {
...
@@ -563,14 +563,6 @@ public class Purchase_order_lineDTO extends DTOBase implements Serializable {
this
.
modify
(
"qty_invoiced"
,
qtyInvoiced
);
this
.
modify
(
"qty_invoiced"
,
qtyInvoiced
);
}
}
/**
* 设置 [COMPANY_ID]
*/
public
void
setCompanyId
(
Long
companyId
){
this
.
companyId
=
companyId
;
this
.
modify
(
"company_id"
,
companyId
);
}
/**
/**
* 设置 [ACCOUNT_ANALYTIC_ID]
* 设置 [ACCOUNT_ANALYTIC_ID]
*/
*/
...
...
businesscentral-provider/businesscentral-provider-core/src/main/java/cn/ibizlab/businesscentral/core/dto/Purchase_requisitionDTO.java
浏览文件 @
dcec9d7f
...
@@ -386,14 +386,6 @@ public class Purchase_requisitionDTO extends DTOBase implements Serializable {
...
@@ -386,14 +386,6 @@ public class Purchase_requisitionDTO extends DTOBase implements Serializable {
this
.
modify
(
"user_id"
,
userId
);
this
.
modify
(
"user_id"
,
userId
);
}
}
/**
* 设置 [COMPANY_ID]
*/
public
void
setCompanyId
(
Long
companyId
){
this
.
companyId
=
companyId
;
this
.
modify
(
"company_id"
,
companyId
);
}
/**
/**
* 设置 [CURRENCY_ID]
* 设置 [CURRENCY_ID]
*/
*/
...
...
businesscentral-provider/businesscentral-provider-core/src/main/java/cn/ibizlab/businesscentral/core/dto/Purchase_requisition_lineDTO.java
浏览文件 @
dcec9d7f
...
@@ -315,14 +315,6 @@ public class Purchase_requisition_lineDTO extends DTOBase implements Serializabl
...
@@ -315,14 +315,6 @@ public class Purchase_requisition_lineDTO extends DTOBase implements Serializabl
this
.
modify
(
"requisition_id"
,
requisitionId
);
this
.
modify
(
"requisition_id"
,
requisitionId
);
}
}
/**
* 设置 [COMPANY_ID]
*/
public
void
setCompanyId
(
Long
companyId
){
this
.
companyId
=
companyId
;
this
.
modify
(
"company_id"
,
companyId
);
}
/**
/**
* 设置 [MOVE_DEST_ID]
* 设置 [MOVE_DEST_ID]
*/
*/
...
...
businesscentral-provider/businesscentral-provider-core/src/main/java/cn/ibizlab/businesscentral/core/rest/Purchase_requisitionResource.java
浏览文件 @
dcec9d7f
此差异已折叠。
点击以展开。
businesscentral-provider/businesscentral-provider-core/src/main/java/cn/ibizlab/businesscentral/core/rest/Purchase_requisition_lineResource.java
浏览文件 @
dcec9d7f
此差异已折叠。
点击以展开。
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录