Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
iBiz商业中心
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz商业套件
iBiz商业中心
提交
3dae0240
提交
3dae0240
编写于
11月 03, 2020
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
xignzi006 发布系统代码 [Spring Boot]
上级
c8f8e7b4
变更
1
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
30 行增加
和
0 行删除
+30
-0
Res_config_settings.java
...esscentral/core/odoo_base/domain/Res_config_settings.java
+30
-0
未找到文件。
businesscentral-core/src/main/java/cn/ibizlab/businesscentral/core/odoo_base/domain/Res_config_settings.java
浏览文件 @
3dae0240
...
...
@@ -1520,6 +1520,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"company_currency_id"
)
@JsonProperty
(
"company_currency_id"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_company
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_companyService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"company_id"
,
backFillName
=
"currency_id"
)
private
Long
companyCurrencyId
;
/**
* 现金收付制
...
...
@@ -1527,6 +1528,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"tax_exigibility"
)
@JsonProperty
(
"tax_exigibility"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_company
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_companyService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"company_id"
,
backFillName
=
"tax_exigibility"
)
private
Boolean
taxExigibility
;
/**
* 最后更新者
...
...
@@ -1534,6 +1536,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"write_uid_text"
)
@JsonProperty
(
"write_uid_text"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_users
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_usersService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"write_uid"
,
backFillName
=
"name"
)
private
String
writeUidText
;
/**
* 银行核销阈值
...
...
@@ -1542,6 +1545,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
locale
=
"zh"
,
timezone
=
"GMT+8"
)
@JSONField
(
name
=
"account_bank_reconciliation_start"
,
format
=
"yyyy-MM-dd"
)
@JsonProperty
(
"account_bank_reconciliation_start"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_company
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_companyService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"company_id"
,
backFillName
=
"account_bank_reconciliation_start"
)
private
Timestamp
accountBankReconciliationStart
;
/**
* 税率现金收付制日记账
...
...
@@ -1549,6 +1553,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"tax_cash_basis_journal_id"
)
@JsonProperty
(
"tax_cash_basis_journal_id"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_company
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_companyService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"company_id"
,
backFillName
=
"tax_cash_basis_journal_id"
)
private
Long
taxCashBasisJournalId
;
/**
* 采购提前时间
...
...
@@ -1556,6 +1561,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"po_lead"
)
@JsonProperty
(
"po_lead"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_company
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_companyService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"company_id"
,
backFillName
=
"po_lead"
)
private
Double
poLead
;
/**
* 彩色打印
...
...
@@ -1563,6 +1569,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"snailmail_color"
)
@JsonProperty
(
"snailmail_color"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_company
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_companyService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"company_id"
,
backFillName
=
"snailmail_color"
)
private
Boolean
snailmailColor
;
/**
* 纸张格式
...
...
@@ -1570,6 +1577,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"paperformat_id"
)
@JsonProperty
(
"paperformat_id"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_company
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_companyService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"company_id"
,
backFillName
=
"paperformat_id"
)
private
Integer
paperformatId
;
/**
* 在线签名
...
...
@@ -1577,6 +1585,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"portal_confirmation_sign"
)
@JsonProperty
(
"portal_confirmation_sign"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_company
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_companyService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"company_id"
,
backFillName
=
"portal_confirmation_sign"
)
private
Boolean
portalConfirmationSign
;
/**
* 币种
...
...
@@ -1584,6 +1593,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"currency_id"
)
@JsonProperty
(
"currency_id"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_company
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_companyService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"company_id"
,
backFillName
=
"currency_id"
)
private
Long
currencyId
;
/**
* 摘要邮件
...
...
@@ -1605,6 +1615,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"invoice_is_print"
)
@JsonProperty
(
"invoice_is_print"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_company
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_companyService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"company_id"
,
backFillName
=
"invoice_is_print"
)
private
Boolean
invoiceIsPrint
;
/**
* 押金产品
...
...
@@ -1619,6 +1630,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"resource_calendar_id"
)
@JsonProperty
(
"resource_calendar_id"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_company
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_companyService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"company_id"
,
backFillName
=
"resource_calendar_id"
)
private
Long
resourceCalendarId
;
/**
* 采购订单修改 *
...
...
@@ -1626,6 +1638,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"po_lock"
)
@JsonProperty
(
"po_lock"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_company
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_companyService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"company_id"
,
backFillName
=
"po_lock"
)
private
String
poLock
;
/**
* 透过邮递
...
...
@@ -1633,6 +1646,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"invoice_is_snailmail"
)
@JsonProperty
(
"invoice_is_snailmail"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_company
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_companyService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"company_id"
,
backFillName
=
"invoice_is_snailmail"
)
private
Boolean
invoiceIsSnailmail
;
/**
* 制造提前期(日)
...
...
@@ -1640,6 +1654,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"manufacturing_lead"
)
@JsonProperty
(
"manufacturing_lead"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_company
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_companyService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"company_id"
,
backFillName
=
"manufacturing_lead"
)
private
Double
manufacturingLead
;
/**
* 审批层级 *
...
...
@@ -1647,6 +1662,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"po_double_validation"
)
@JsonProperty
(
"po_double_validation"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_company
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_companyService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"company_id"
,
backFillName
=
"po_double_validation"
)
private
String
poDoubleValidation
;
/**
* 自定义报表页脚
...
...
@@ -1654,6 +1670,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"report_footer"
)
@JsonProperty
(
"report_footer"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_company
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_companyService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"company_id"
,
backFillName
=
"report_footer"
)
private
String
reportFooter
;
/**
* EMail模板
...
...
@@ -1668,6 +1685,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"invoice_is_email"
)
@JsonProperty
(
"invoice_is_email"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_company
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_companyService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"company_id"
,
backFillName
=
"invoice_is_email"
)
private
Boolean
invoiceIsEmail
;
/**
* 在线支付
...
...
@@ -1675,6 +1693,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"portal_confirmation_pay"
)
@JsonProperty
(
"portal_confirmation_pay"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_company
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_companyService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"company_id"
,
backFillName
=
"portal_confirmation_pay"
)
private
Boolean
portalConfirmationPay
;
/**
* 显示SEPA QR码
...
...
@@ -1682,6 +1701,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"qr_code"
)
@JsonProperty
(
"qr_code"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_company
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_companyService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"company_id"
,
backFillName
=
"qr_code"
)
private
Boolean
qrCode
;
/**
* 双面打印
...
...
@@ -1689,6 +1709,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"snailmail_duplex"
)
@JsonProperty
(
"snailmail_duplex"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_company
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_companyService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"company_id"
,
backFillName
=
"snailmail_duplex"
)
private
Boolean
snailmailDuplex
;
/**
* 创建人
...
...
@@ -1703,6 +1724,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"company_id_text"
)
@JsonProperty
(
"company_id_text"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_company
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_companyService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"company_id"
,
backFillName
=
"name"
)
private
String
companyIdText
;
/**
* 安全时间
...
...
@@ -1710,6 +1732,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"security_lead"
)
@JsonProperty
(
"security_lead"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_company
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_companyService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"company_id"
,
backFillName
=
"security_lead"
)
private
Double
securityLead
;
/**
* 文档模板
...
...
@@ -1717,6 +1740,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"external_report_layout_id"
)
@JsonProperty
(
"external_report_layout_id"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_company
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_companyService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"company_id"
,
backFillName
=
"external_report_layout_id"
)
private
Integer
externalReportLayoutId
;
/**
* 默认进项税
...
...
@@ -1724,6 +1748,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"purchase_tax_id"
)
@JsonProperty
(
"purchase_tax_id"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_company
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_companyService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"company_id"
,
backFillName
=
"account_purchase_tax_id"
)
private
Long
purchaseTaxId
;
/**
* 默认报价有效期(日)
...
...
@@ -1731,6 +1756,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"quotation_validity_days"
)
@JsonProperty
(
"quotation_validity_days"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_company
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_companyService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"company_id"
,
backFillName
=
"quotation_validity_days"
)
private
Integer
quotationValidityDays
;
/**
* 税率计算的舍入方法
...
...
@@ -1738,6 +1764,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"tax_calculation_rounding_method"
)
@JsonProperty
(
"tax_calculation_rounding_method"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_company
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_companyService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"company_id"
,
backFillName
=
"tax_calculation_rounding_method"
)
private
String
taxCalculationRoundingMethod
;
/**
* 汇兑损益
...
...
@@ -1745,6 +1772,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"currency_exchange_journal_id"
)
@JsonProperty
(
"currency_exchange_journal_id"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_company
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_companyService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"company_id"
,
backFillName
=
"currency_exchange_journal_id"
)
private
Long
currencyExchangeJournalId
;
/**
* 最小金额
...
...
@@ -1752,6 +1780,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"po_double_validation_amount"
)
@JsonProperty
(
"po_double_validation_amount"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_company
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_companyService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"company_id"
,
backFillName
=
"po_double_validation_amount"
)
private
BigDecimal
poDoubleValidationAmount
;
/**
* 模板
...
...
@@ -1766,6 +1795,7 @@ public class Res_config_settings extends EntityMP implements Serializable {
@TableField
(
exist
=
false
)
@JSONField
(
name
=
"sale_tax_id"
)
@JsonProperty
(
"sale_tax_id"
)
@BackFillProperty
(
reference
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
domain
.
Res_company
,
referenceService
=
cn
.
ibizlab
.
businesscentral
.
core
.
odoo_base
.
service
.
IRes_companyService
.
class
,
referenceKey
=
"id"
,
referenceName
=
"company_id"
,
backFillName
=
"account_sale_tax_id"
)
private
Long
saleTaxId
;
/**
* 默认模板
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录