Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
T
traffic-front
Project
Project
Details
Activity
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wangxiaoming
traffic-front
Commits
14fafc39
Commit
14fafc39
authored
Apr 03, 2019
by
zhkwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CIT导入及预览优化
parent
9b09dfab
Hide whitespace changes
Inline
Side-by-side
Showing
23 changed files
with
1925 additions
and
820 deletions
+1925
-820
CitImportExcelServiceImpl.java
.../taxtech/atms/service/impl/CitImportExcelServiceImpl.java
+55
-29
BalanceSheetPrcAdjust.xlsx
.../resources/Document/DataImport/BalanceSheetPrcAdjust.xlsx
+0
-0
ProfitPrcAdjust.xlsx
...c/main/resources/Document/DataImport/ProfitPrcAdjust.xlsx
+0
-0
SalaryAdvance.xlsx
...src/main/resources/Document/DataImport/SalaryAdvance.xlsx
+0
-0
CitJournalEntryAdjust.java
...n/java/pwc/taxtech/atms/entity/CitJournalEntryAdjust.java
+20
-0
CitSalaryAdvance.java
...c/main/java/pwc/taxtech/atms/entity/CitSalaryAdvance.java
+338
-86
CitSalaryAdvanceExample.java
...java/pwc/taxtech/atms/entity/CitSalaryAdvanceExample.java
+692
-192
CitSalaryAdvanceMapper.xml
...resources/pwc/taxtech/atms/dao/CitSalaryAdvanceMapper.xml
+203
-92
CitJournalAdjustExtendsMapper.xml
...axtech/atms/dao/extends/CitJournalAdjustExtendsMapper.xml
+23
-3
CitSalaryAdvanceExtendsMapper.xml
...axtech/atms/dao/extends/CitSalaryAdvanceExtendsMapper.xml
+36
-8
cit.json
atms-web/src/main/webapp/app-resources/i18n/en-us/cit.json
+3
-1
cit.json
atms-web/src/main/webapp/app-resources/i18n/zh-CN/cit.json
+2
-1
cit-import-asset-list-search.html
...t/cit-import-asset-list/cit-import-asset-list-search.html
+2
-1
cit-import-asset-list.ctrl.js
...mport/cit-import-asset-list/cit-import-asset-list.ctrl.js
+1
-1
cit-import-asset-list.less
...t/import/cit-import-asset-list/cit-import-asset-list.less
+498
-362
cit-preview-balanceSheet.less
...ew/cit-preview-balanceSheet/cit-preview-balanceSheet.less
+0
-1
cit-preview-journal-merge.ctrl.js
...t-preview-journal-merge/cit-preview-journal-merge.ctrl.js
+49
-37
cit-preview-journal-merge.html
.../cit-preview-journal-merge/cit-preview-journal-merge.html
+3
-1
cit-preview-journal-merge.less
.../cit-preview-journal-merge/cit-preview-journal-merge.less
+0
-1
cit-preview-tb-generate-ver.less
...-preview-tb-generate-ver/cit-preview-tb-generate-ver.less
+0
-1
cit-preview-tb-mapping-ver.less
...it-preview-tb-mapping-ver/cit-preview-tb-mapping-ver.less
+0
-1
cit-asset-eam-mapping.less
...eduction/cit-asset-eam-mapping/cit-asset-eam-mapping.less
+0
-1
cit-distribution-table.less
...uction/cit-distribution-table/cit-distribution-table.less
+0
-1
No files found.
atms-api/src/main/java/pwc/taxtech/atms/service/impl/CitImportExcelServiceImpl.java
View file @
14fafc39
...
...
@@ -234,7 +234,7 @@ public class CitImportExcelServiceImpl extends BaseService {
citDataImportLogList
.
add
(
citDataImportLogError
);
continue
;
}
citJournal
.
setOrgCode
(
cellValue
.
toString
());
citJournal
.
setOrgCode
(
cellValue
.
toString
()
.
replace
(
".0"
,
""
)
);
citJournal
.
setSegment2
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
10
)).
toString
());
cellValue
=
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
11
));
if
(
""
.
equals
(
cellValue
)){
...
...
@@ -401,7 +401,7 @@ public class CitImportExcelServiceImpl extends BaseService {
}
DecimalFormat
df
=
new
DecimalFormat
(
"0"
);
String
companyCode
=
df
.
format
(
cellValue
);
String
companyCode
=
cellValue
.
toString
().
replace
(
".0"
,
""
);
//根据code(主体)获取机构相关信息
List
<
Organization
>
organizations
=
getOrganizationByCode
(
companyCode
);
String
companyName
=
""
;
...
...
@@ -428,7 +428,7 @@ public class CitImportExcelServiceImpl extends BaseService {
continue
;
}
if
(
StringUtils
.
isBlank
(
projectId
)){
noProjectMap
.
put
(
sb
.
toString
(),
companyFailMap
.
containsKey
(
sb
.
toString
())?
companyFail
Map
.
get
(
sb
.
toString
())+
1
:
1
);
noProjectMap
.
put
(
sb
.
toString
(),
noProjectMap
.
containsKey
(
sb
.
toString
())?
noProject
Map
.
get
(
sb
.
toString
())+
1
:
1
);
continue
;
}
projectIdList
.
add
(
projectId
);
...
...
@@ -448,7 +448,7 @@ public class CitImportExcelServiceImpl extends BaseService {
continue
;
}
trialBalance
.
setAccountCode
(
df
.
format
(
cellValue
));
trialBalance
.
setAccountCode
(
cellValue
.
toString
().
substring
(
0
,
cellValue
.
toString
().
indexOf
(
"."
)
));
trialBalance
.
setAccountDescription
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
17
)).
toString
());
//此期间默认为12
trialBalance
.
setAccountPeriod
(
12
);
...
...
@@ -656,19 +656,29 @@ public class CitImportExcelServiceImpl extends BaseService {
List
<
CitBalanceSheetPrcAdjust
>
citBSPrcAdjustList
=
new
ArrayList
<>();
List
<
CitDataImportLog
>
citDataImportLogList
=
new
ArrayList
<>();
// Integer period = CitCommonUtil.getPeriod();
String
companyName
=
CitCommonUtil
.
getValue
(
sheet
.
getRow
(
5
).
getCell
(
1
)).
toString
();
if
(
""
.
equals
(
companyName
)){
// String companyName = CitCommonUtil.getValue(sheet.getRow(5).getCell(1)).toString();
// String companyCode = CitCommonUtil.getValue(sheet.getRow(5).getCell(1)).toString();
// if("".equals(companyCode)){
// saveResult.setResult(false);
// saveResult.setResultMsg(ErrorMessageCN.NoCompanyError);
// return saveResult;
// }
// List<Organization> organizations = getOrganizationByCode(companyCode).stream().filter(r->r.getCode()!=null&&!("".equals(r.getCode()))).collect(Collectors.toList());
String
companyCode
=
CitCommonUtil
.
getValue
(
sheet
.
getRow
(
5
).
getCell
(
1
)).
toString
();
if
(
""
.
equals
(
companyCode
)){
saveResult
.
setResult
(
false
);
saveResult
.
setResultMsg
(
ErrorMessageCN
.
NoCompanyError
);
return
saveResult
;
}
List
<
Organization
>
organizations
=
getOrganizationByName
(
companyName
).
stream
().
filter
(
r
->
r
.
getCode
()!=
null
&&!(
""
.
equals
(
r
.
getCode
()))).
collect
(
Collectors
.
toList
());
String
companyCode
=
""
;
companyCode
=
companyCode
.
contains
(
"."
)?
companyCode
.
substring
(
0
,
companyCode
.
indexOf
(
"."
)):
companyCode
;
List
<
Organization
>
organizations
=
getOrganizationByCode
(
companyCode
);
String
companyName
=
""
;
String
orgId
=
""
;
String
projectId
=
""
;
String
taxPayerId
=
""
;
if
(
organizations
!=
null
&&
organizations
.
size
()
>
0
)
{
company
Code
=
organizations
.
get
(
0
).
getCod
e
();
company
Name
=
organizations
.
get
(
0
).
getNam
e
();
orgId
=
organizations
.
get
(
0
).
getId
();
projectId
=
getProjectId
(
orgId
,
period
);
...
...
@@ -797,7 +807,7 @@ public class CitImportExcelServiceImpl extends BaseService {
List
<
CitProfitPrcAdjust
>
citProfitPrcAdjustList
=
new
ArrayList
<>();
List
<
CitDataImportLog
>
citDataImportLogList
=
new
ArrayList
<>();
// Integer period = CitCommonUtil.getPeriod();
String
companyName
=
CitCommonUtil
.
getValue
(
sheet
.
getRow
(
4
).
getCell
(
1
)).
toString
();
//
String companyName = CitCommonUtil.getValue(sheet.getRow(4).getCell(1)).toString();
String
companyCode
=
CitCommonUtil
.
getValue
(
sheet
.
getRow
(
5
).
getCell
(
1
)).
toString
();
if
(
""
.
equals
(
companyCode
)){
saveResult
.
setResult
(
false
);
...
...
@@ -806,11 +816,13 @@ public class CitImportExcelServiceImpl extends BaseService {
}
companyCode
=
companyCode
.
contains
(
"."
)?
companyCode
.
substring
(
0
,
companyCode
.
indexOf
(
"."
)):
companyCode
;
List
<
Organization
>
organizations
=
getOrganizationByCode
(
companyCode
);
String
companyName
=
""
;
String
orgId
=
""
;
String
projectId
=
""
;
String
taxPayerId
=
""
;
if
(
organizations
!=
null
&&
organizations
.
size
()
>
0
)
{
orgId
=
organizations
.
get
(
0
).
getId
();
companyName
=
organizations
.
get
(
0
).
getName
();
if
(!
orgList
.
contains
(
orgId
)){
saveResult
.
setResult
(
false
);
...
...
@@ -1067,8 +1079,7 @@ public class CitImportExcelServiceImpl extends BaseService {
citDataImportLogList
.
add
(
citDataImportLogError
);
continue
;
}
// String companyCode = cellValueCode.toString().replace(".0","");
String
companyCode
=
df
.
format
(
cellValueCode
);
String
companyCode
=
cellValueCode
.
toString
().
replace
(
".0"
,
""
);
//根据code(主体)获取机构相关信息
List
<
Organization
>
organizations
=
getOrganizationByCode
(
companyCode
);
String
companyName
=
""
;
...
...
@@ -1099,7 +1110,7 @@ public class CitImportExcelServiceImpl extends BaseService {
//因预提传过来的时间带着月份,所以要算出年份来查询卡片
projectId
=
getProjectId
(
orgId
,
period
/
100
);
if
(
StringUtils
.
isBlank
(
projectId
)){
noProjectMap
.
put
(
sb
.
toString
(),
companyFailMap
.
containsKey
(
sb
.
toString
())?
companyFail
Map
.
get
(
sb
.
toString
())+
1
:
1
);
noProjectMap
.
put
(
sb
.
toString
(),
noProjectMap
.
containsKey
(
sb
.
toString
())?
noProject
Map
.
get
(
sb
.
toString
())+
1
:
1
);
continue
;
}
companySuccessMap
.
put
(
sb
.
toString
(),
companySuccessMap
.
containsKey
(
sb
.
toString
())?
companySuccessMap
.
get
(
sb
.
toString
())+
1
:
1
);
...
...
@@ -1125,16 +1136,17 @@ public class CitImportExcelServiceImpl extends BaseService {
continue
;
}
//当单元格是常规格式时会有小数点,需去掉小数点
citSalaryAdvance
.
setPoNo
(
df
.
format
(
cellValue
));
citSalaryAdvance
.
setPoRow
(
df
.
format
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
1
))));
citSalaryAdvance
.
setPoNo
(
cellValue
.
toString
().
replace
(
".0"
,
""
));
cellValue
=
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
1
));
citSalaryAdvance
.
setPoRow
(
cellValue
.
toString
().
replace
(
".0"
,
""
));
cellValue
=
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
2
));
if
(
cellValue
!=
null
){
if
(
!
""
.
equals
(
cellValue
)
){
citSalaryAdvance
.
setPoCreateTime
(
sdf
.
parse
(
cellValue
.
toString
()));
}
citSalaryAdvance
.
setLadingBillPerson
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
3
)).
toString
());
citSalaryAdvance
.
setPurchasePerson
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
4
)).
toString
());
citSalaryAdvance
.
setPoSubjectCode
(
df
.
format
(
cellValueCode
)
);
citSalaryAdvance
.
setPoSubjectCode
(
companyCode
);
cellValue
=
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
6
));
if
(
""
.
equals
(
cellValue
)){
...
...
@@ -1142,15 +1154,19 @@ public class CitImportExcelServiceImpl extends BaseService {
citDataImportLogList
.
add
(
citDataImportLogError
);
continue
;
}
citSalaryAdvance
.
setPoSubjectName
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
6
))
.
toString
());
citSalaryAdvance
.
setPoSubjectName
(
cellValue
.
toString
());
citSalaryAdvance
.
setCostCenterCode
(
df
.
format
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
7
))));
cellValue
=
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
7
));
citSalaryAdvance
.
setCostCenterCode
(
cellValue
.
toString
().
replace
(
".0"
,
""
));
citSalaryAdvance
.
setCostCenter
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
8
)).
toString
());
citSalaryAdvance
.
setSupplier
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
9
)).
toString
());
citSalaryAdvance
.
setItem
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
10
)).
toString
());
citSalaryAdvance
.
setStandardMoney
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
11
)).
toString
());
citSalaryAdvance
.
setCurrency
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
12
)).
toString
());
citSalaryAdvance
.
setOrderAmount
(
new
BigDecimal
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
13
)).
toString
()));
cellValue
=
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
13
));
if
(!
""
.
equals
(
cellValue
)){
citSalaryAdvance
.
setOrderAmount
(
new
BigDecimal
(
cellValue
.
toString
()));
}
citSalaryAdvance
.
setExecutedServiceSchedule
(
new
BigDecimal
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
14
)).
toString
()));
citSalaryAdvance
.
setCoupaTotalAccept
(
new
BigDecimal
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
15
)).
toString
()));
...
...
@@ -1167,15 +1183,25 @@ public class CitImportExcelServiceImpl extends BaseService {
citSalaryAdvance
.
setUsableInvoiceAmount
(
new
BigDecimal
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
20
)).
toString
()));
citSalaryAdvance
.
setUsableBalance
(
new
BigDecimal
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
21
)).
toString
()));
citSalaryAdvance
.
setAdvanceWriteOff
(
new
BigDecimal
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
22
)).
toString
()));
citSalaryAdvance
.
setCheckOne
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
23
)).
toString
());
citSalaryAdvance
.
setReclassifyAmount
(
new
BigDecimal
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
24
)).
toString
()));
citSalaryAdvance
.
setExchangeRate
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
25
)).
toString
());
citSalaryAdvance
.
setLedgerId
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
26
)).
toString
());
citSalaryAdvance
.
setDebitAdvanceGene
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
27
)).
toString
());
citSalaryAdvance
.
setCreditPrepaidAccounts
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
28
)).
toString
());
citSalaryAdvance
.
setRemark
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
29
)).
toString
());
citSalaryAdvance
.
setSegment1
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
30
)).
toString
());
citSalaryAdvance
.
setSegment2
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
31
)).
toString
());
citSalaryAdvance
.
setSubjectCode
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
27
)).
toString
());
citSalaryAdvance
.
setSubjectDescription
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
28
)).
toString
());
citSalaryAdvance
.
setAuxiliarySubject
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
29
)).
toString
());
citSalaryAdvance
.
setAuxiliarySubjectDescription
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
30
)).
toString
());
citSalaryAdvance
.
setProfitCenter
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
31
)).
toString
());
citSalaryAdvance
.
setProfitCenterDescription
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
32
)).
toString
());
citSalaryAdvance
.
setProduct
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
33
)).
toString
());
citSalaryAdvance
.
setProductDescription
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
34
)).
toString
());
//项目,不是卡片
citSalaryAdvance
.
setProject
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
35
)).
toString
());
citSalaryAdvance
.
setProjectDescription
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
36
)).
toString
());
citSalaryAdvance
.
setCompany
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
37
)).
toString
());
citSalaryAdvance
.
setCompanyDescription
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
38
)).
toString
());
citSalaryAdvance
.
setSegment1
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
39
)).
toString
());
citSalaryAdvance
.
setSegment1Description
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
40
)).
toString
());
citSalaryAdvance
.
setSegment2
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
41
)).
toString
());
citSalaryAdvance
.
setSegment2Description
(
CitCommonUtil
.
getValue
(
rowData
.
getCell
(
42
)).
toString
());
citSalaryAdvanceList
.
add
(
citSalaryAdvance
);
}
...
...
atms-api/src/main/resources/Document/DataImport/BalanceSheetPrcAdjust.xlsx
View file @
14fafc39
No preview for this file type
atms-api/src/main/resources/Document/DataImport/ProfitPrcAdjust.xlsx
View file @
14fafc39
No preview for this file type
atms-api/src/main/resources/Document/DataImport/SalaryAdvance.xlsx
View file @
14fafc39
No preview for this file type
atms-dao/src/main/java/pwc/taxtech/atms/entity/CitJournalEntryAdjust.java
View file @
14fafc39
...
...
@@ -787,6 +787,26 @@ public class CitJournalEntryAdjust extends BaseEntity implements Serializable {
*/
private
Date
updateTime
;
private
Integer
periodStart
;
private
Integer
periodEnd
;
public
Integer
getPeriodStart
()
{
return
periodStart
;
}
public
void
setPeriodStart
(
Integer
periodStart
)
{
this
.
periodStart
=
periodStart
;
}
public
Integer
getPeriodEnd
()
{
return
periodEnd
;
}
public
void
setPeriodEnd
(
Integer
periodEnd
)
{
this
.
periodEnd
=
periodEnd
;
}
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table cit_journal_entry_adjust
...
...
atms-dao/src/main/java/pwc/taxtech/atms/entity/CitSalaryAdvance.java
View file @
14fafc39
...
...
@@ -322,84 +322,139 @@ public class CitSalaryAdvance extends BaseEntity implements Serializable {
/**
* Database Column Remarks:
*
校验1
*
科目
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cit_salary_advance.
check_on
e
* This field corresponds to the database column cit_salary_advance.
subject_cod
e
*
* @mbg.generated
*/
private
String
checkOn
e
;
private
String
subjectCod
e
;
/**
* Database Column Remarks:
*
重分类金额
*
科目描述
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cit_salary_advance.
reclassify_amount
* This field corresponds to the database column cit_salary_advance.
subject_description
*
* @mbg.generated
*/
private
BigDecimal
reclassifyAmount
;
private
String
subjectDescription
;
/**
* Database Column Remarks:
*
汇率
*
辅助科目
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cit_salary_advance.
exchange_rate
* This field corresponds to the database column cit_salary_advance.
auxiliary_subject
*
* @mbg.generated
*/
private
String
exchangeRate
;
private
String
auxiliarySubject
;
/**
* Database Column Remarks:
*
账套ID
*
辅助科目描述
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cit_salary_advance.
ledger_id
* This field corresponds to the database column cit_salary_advance.
auxiliary_subject_description
*
* @mbg.generated
*/
private
String
ledgerId
;
private
String
auxiliarySubjectDescription
;
/**
* Database Column Remarks:
*
借:预提费用-系统生成
*
利润中心
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cit_salary_advance.
debit_advance_gene
* This field corresponds to the database column cit_salary_advance.
profit_center
*
* @mbg.generated
*/
private
String
debitAdvanceGene
;
private
String
profitCenter
;
/**
* Database Column Remarks:
*
贷: 预付账款
*
利润中心描述
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cit_salary_advance.
credit_prepaid_accounts
* This field corresponds to the database column cit_salary_advance.
profit_center_description
*
* @mbg.generated
*/
private
String
creditPrepaidAccounts
;
private
String
profitCenterDescription
;
/**
* Database Column Remarks:
*
摘要
*
产品
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cit_salary_advance.
remark
* This field corresponds to the database column cit_salary_advance.
product
*
* @mbg.generated
*/
private
String
remark
;
private
String
product
;
/**
* Database Column Remarks:
* 未知列1
* 产品描述
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cit_salary_advance.product_description
*
* @mbg.generated
*/
private
String
productDescription
;
/**
* Database Column Remarks:
* 项目
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cit_salary_advance.project
*
* @mbg.generated
*/
private
String
project
;
/**
* Database Column Remarks:
* 项目描述
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cit_salary_advance.project_description
*
* @mbg.generated
*/
private
String
projectDescription
;
/**
* Database Column Remarks:
* 公司间
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cit_salary_advance.company
*
* @mbg.generated
*/
private
String
company
;
/**
* Database Column Remarks:
* 项目描述
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cit_salary_advance.company_description
*
* @mbg.generated
*/
private
String
companyDescription
;
/**
* Database Column Remarks:
* 备用段1
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cit_salary_advance.segment1
...
...
@@ -410,7 +465,18 @@ public class CitSalaryAdvance extends BaseEntity implements Serializable {
/**
* Database Column Remarks:
* 未知列2
* 备用段1描述
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cit_salary_advance.segment1_description
*
* @mbg.generated
*/
private
String
segment1Description
;
/**
* Database Column Remarks:
* 备用段2
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cit_salary_advance.segment2
...
...
@@ -419,6 +485,17 @@ public class CitSalaryAdvance extends BaseEntity implements Serializable {
*/
private
String
segment2
;
/**
* Database Column Remarks:
* 备用段2描述
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cit_salary_advance.segment2_description
*
* @mbg.generated
*/
private
String
segment2Description
;
/**
* Database Column Remarks:
* 创建人
...
...
@@ -1145,170 +1222,290 @@ public class CitSalaryAdvance extends BaseEntity implements Serializable {
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cit_salary_advance.check_one
* This method returns the value of the database column cit_salary_advance.subject_code
*
* @return the value of cit_salary_advance.subject_code
*
* @mbg.generated
*/
public
String
getSubjectCode
()
{
return
subjectCode
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cit_salary_advance.subject_code
*
* @param subjectCode the value for cit_salary_advance.subject_code
*
* @mbg.generated
*/
public
void
setSubjectCode
(
String
subjectCode
)
{
this
.
subjectCode
=
subjectCode
==
null
?
null
:
subjectCode
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cit_salary_advance.subject_description
*
* @return the value of cit_salary_advance.subject_description
*
* @mbg.generated
*/
public
String
getSubjectDescription
()
{
return
subjectDescription
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cit_salary_advance.subject_description
*
* @param subjectDescription the value for cit_salary_advance.subject_description
*
* @mbg.generated
*/
public
void
setSubjectDescription
(
String
subjectDescription
)
{
this
.
subjectDescription
=
subjectDescription
==
null
?
null
:
subjectDescription
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cit_salary_advance.auxiliary_subject
*
* @return the value of cit_salary_advance.auxiliary_subject
*
* @mbg.generated
*/
public
String
getAuxiliarySubject
()
{
return
auxiliarySubject
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cit_salary_advance.auxiliary_subject
*
* @param auxiliarySubject the value for cit_salary_advance.auxiliary_subject
*
* @mbg.generated
*/
public
void
setAuxiliarySubject
(
String
auxiliarySubject
)
{
this
.
auxiliarySubject
=
auxiliarySubject
==
null
?
null
:
auxiliarySubject
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cit_salary_advance.auxiliary_subject_description
*
* @return the value of cit_salary_advance.auxiliary_subject_description
*
* @mbg.generated
*/
public
String
getAuxiliarySubjectDescription
()
{
return
auxiliarySubjectDescription
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cit_salary_advance.auxiliary_subject_description
*
* @param auxiliarySubjectDescription the value for cit_salary_advance.auxiliary_subject_description
*
* @mbg.generated
*/
public
void
setAuxiliarySubjectDescription
(
String
auxiliarySubjectDescription
)
{
this
.
auxiliarySubjectDescription
=
auxiliarySubjectDescription
==
null
?
null
:
auxiliarySubjectDescription
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cit_salary_advance.profit_center
*
* @return the value of cit_salary_advance.profit_center
*
* @mbg.generated
*/
public
String
getProfitCenter
()
{
return
profitCenter
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cit_salary_advance.profit_center
*
* @
return the value of cit_salary_advance.check_one
* @
param profitCenter the value for cit_salary_advance.profit_center
*
* @mbg.generated
*/
public
String
getCheckOne
(
)
{
return
checkOne
;
public
void
setProfitCenter
(
String
profitCenter
)
{
this
.
profitCenter
=
profitCenter
==
null
?
null
:
profitCenter
.
trim
()
;
}
/**
* This method was generated by MyBatis Generator.
* This method
sets the value of the database column cit_salary_advance.check_one
* This method
returns the value of the database column cit_salary_advance.profit_center_description
*
* @
param checkOne the value for cit_salary_advance.check_one
* @
return the value of cit_salary_advance.profit_center_description
*
* @mbg.generated
*/
public
void
setCheckOne
(
String
checkOne
)
{
this
.
checkOne
=
checkOne
==
null
?
null
:
checkOne
.
trim
()
;
public
String
getProfitCenterDescription
(
)
{
return
profitCenterDescription
;
}
/**
* This method was generated by MyBatis Generator.
* This method
returns the value of the database column cit_salary_advance.reclassify_amount
* This method
sets the value of the database column cit_salary_advance.profit_center_description
*
* @
return the value of cit_salary_advance.reclassify_amount
* @
param profitCenterDescription the value for cit_salary_advance.profit_center_description
*
* @mbg.generated
*/
public
BigDecimal
getReclassifyAmount
(
)
{
return
reclassifyAmount
;
public
void
setProfitCenterDescription
(
String
profitCenterDescription
)
{
this
.
profitCenterDescription
=
profitCenterDescription
==
null
?
null
:
profitCenterDescription
.
trim
()
;
}
/**
* This method was generated by MyBatis Generator.
* This method
sets the value of the database column cit_salary_advance.reclassify_amoun
t
* This method
returns the value of the database column cit_salary_advance.produc
t
*
* @
param reclassifyAmount the value for cit_salary_advance.reclassify_amoun
t
* @
return the value of cit_salary_advance.produc
t
*
* @mbg.generated
*/
public
void
setReclassifyAmount
(
BigDecimal
reclassifyAmount
)
{
this
.
reclassifyAmount
=
reclassifyAmoun
t
;
public
String
getProduct
(
)
{
return
produc
t
;
}
/**
* This method was generated by MyBatis Generator.
* This method
returns the value of the database column cit_salary_advance.exchange_rate
* This method
sets the value of the database column cit_salary_advance.product
*
* @
return the value of cit_salary_advance.exchange_rate
* @
param product the value for cit_salary_advance.product
*
* @mbg.generated
*/
public
String
getExchangeRate
(
)
{
return
exchangeRate
;
public
void
setProduct
(
String
product
)
{
this
.
product
=
product
==
null
?
null
:
product
.
trim
()
;
}
/**
* This method was generated by MyBatis Generator.
* This method
sets the value of the database column cit_salary_advance.exchange_rate
* This method
returns the value of the database column cit_salary_advance.product_description
*
* @
param exchangeRate the value for cit_salary_advance.exchange_rate
* @
return the value of cit_salary_advance.product_description
*
* @mbg.generated
*/
public
void
setExchangeRate
(
String
exchangeRate
)
{
this
.
exchangeRate
=
exchangeRate
==
null
?
null
:
exchangeRate
.
trim
()
;
public
String
getProductDescription
(
)
{
return
productDescription
;
}
/**
* This method was generated by MyBatis Generator.
* This method
returns the value of the database column cit_salary_advance.ledger_id
* This method
sets the value of the database column cit_salary_advance.product_description
*
* @
return the value of cit_salary_advance.ledger_id
* @
param productDescription the value for cit_salary_advance.product_description
*
* @mbg.generated
*/
public
String
getLedgerId
(
)
{
return
ledgerId
;
public
void
setProductDescription
(
String
productDescription
)
{
this
.
productDescription
=
productDescription
==
null
?
null
:
productDescription
.
trim
()
;
}
/**
* This method was generated by MyBatis Generator.
* This method
sets the value of the database column cit_salary_advance.ledger_id
* This method
returns the value of the database column cit_salary_advance.project
*
* @
param ledgerId the value for cit_salary_advance.ledger_id
* @
return the value of cit_salary_advance.project
*
* @mbg.generated
*/
public
void
setLedgerId
(
String
ledgerId
)
{
this
.
ledgerId
=
ledgerId
==
null
?
null
:
ledgerId
.
trim
()
;
public
String
getProject
(
)
{
return
project
;
}
/**
* This method was generated by MyBatis Generator.
* This method
returns the value of the database column cit_salary_advance.debit_advance_gene
* This method
sets the value of the database column cit_salary_advance.project
*
* @
return the value of cit_salary_advance.debit_advance_gene
* @
param project the value for cit_salary_advance.project
*
* @mbg.generated
*/
public
String
getDebitAdvanceGene
(
)
{
return
debitAdvanceGene
;
public
void
setProject
(
String
project
)
{
this
.
project
=
project
==
null
?
null
:
project
.
trim
()
;
}
/**
* This method was generated by MyBatis Generator.
* This method
sets the value of the database column cit_salary_advance.debit_advance_gene
* This method
returns the value of the database column cit_salary_advance.project_description
*
* @
param debitAdvanceGene the value for cit_salary_advance.debit_advance_gene
* @
return the value of cit_salary_advance.project_description
*
* @mbg.generated
*/
public
void
setDebitAdvanceGene
(
String
debitAdvanceGene
)
{
this
.
debitAdvanceGene
=
debitAdvanceGene
==
null
?
null
:
debitAdvanceGene
.
trim
()
;
public
String
getProjectDescription
(
)
{
return
projectDescription
;
}
/**
* This method was generated by MyBatis Generator.
* This method
returns the value of the database column cit_salary_advance.credit_prepaid_accounts
* This method
sets the value of the database column cit_salary_advance.project_description
*
* @
return the value of cit_salary_advance.credit_prepaid_accounts
* @
param projectDescription the value for cit_salary_advance.project_description
*
* @mbg.generated
*/
public
String
getCreditPrepaidAccounts
(
)
{
return
creditPrepaidAccounts
;
public
void
setProjectDescription
(
String
projectDescription
)
{
this
.
projectDescription
=
projectDescription
==
null
?
null
:
projectDescription
.
trim
()
;
}
/**
* This method was generated by MyBatis Generator.
* This method
sets the value of the database column cit_salary_advance.credit_prepaid_accounts
* This method
returns the value of the database column cit_salary_advance.company
*
* @
param creditPrepaidAccounts the value for cit_salary_advance.credit_prepaid_accounts
* @
return the value of cit_salary_advance.company
*
* @mbg.generated
*/
public
void
setCreditPrepaidAccounts
(
String
creditPrepaidAccounts
)
{
this
.
creditPrepaidAccounts
=
creditPrepaidAccounts
==
null
?
null
:
creditPrepaidAccounts
.
trim
()
;
public
String
getCompany
(
)
{
return
company
;
}
/**
* This method was generated by MyBatis Generator.
* This method
returns the value of the database column cit_salary_advance.remark
* This method
sets the value of the database column cit_salary_advance.company
*
* @
return the value of cit_salary_advance.remark
* @
param company the value for cit_salary_advance.company
*
* @mbg.generated
*/
public
String
getRemark
(
)
{
return
remark
;
public
void
setCompany
(
String
company
)
{
this
.
company
=
company
==
null
?
null
:
company
.
trim
()
;
}
/**
* This method was generated by MyBatis Generator.
* This method
sets the value of the database column cit_salary_advance.remark
* This method
returns the value of the database column cit_salary_advance.company_description
*
* @
param remark the value for cit_salary_advance.remark
* @
return the value of cit_salary_advance.company_description
*
* @mbg.generated
*/
public
void
setRemark
(
String
remark
)
{
this
.
remark
=
remark
==
null
?
null
:
remark
.
trim
();
public
String
getCompanyDescription
()
{
return
companyDescription
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cit_salary_advance.company_description
*
* @param companyDescription the value for cit_salary_advance.company_description
*
* @mbg.generated
*/
public
void
setCompanyDescription
(
String
companyDescription
)
{
this
.
companyDescription
=
companyDescription
==
null
?
null
:
companyDescription
.
trim
();
}
/**
...
...
@@ -1335,6 +1532,30 @@ public class CitSalaryAdvance extends BaseEntity implements Serializable {
this
.
segment1
=
segment1
==
null
?
null
:
segment1
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cit_salary_advance.segment1_description
*
* @return the value of cit_salary_advance.segment1_description
*
* @mbg.generated
*/
public
String
getSegment1Description
()
{
return
segment1Description
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cit_salary_advance.segment1_description
*
* @param segment1Description the value for cit_salary_advance.segment1_description
*
* @mbg.generated
*/
public
void
setSegment1Description
(
String
segment1Description
)
{
this
.
segment1Description
=
segment1Description
==
null
?
null
:
segment1Description
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cit_salary_advance.segment2
...
...
@@ -1359,6 +1580,30 @@ public class CitSalaryAdvance extends BaseEntity implements Serializable {
this
.
segment2
=
segment2
==
null
?
null
:
segment2
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cit_salary_advance.segment2_description
*
* @return the value of cit_salary_advance.segment2_description
*
* @mbg.generated
*/
public
String
getSegment2Description
()
{
return
segment2Description
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cit_salary_advance.segment2_description
*
* @param segment2Description the value for cit_salary_advance.segment2_description
*
* @mbg.generated
*/
public
void
setSegment2Description
(
String
segment2Description
)
{
this
.
segment2Description
=
segment2Description
==
null
?
null
:
segment2Description
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cit_salary_advance.created_by
...
...
@@ -1495,15 +1740,22 @@ public class CitSalaryAdvance extends BaseEntity implements Serializable {
sb
.
append
(
", usableInvoiceAmount="
).
append
(
usableInvoiceAmount
);
sb
.
append
(
", usableBalance="
).
append
(
usableBalance
);
sb
.
append
(
", advanceWriteOff="
).
append
(
advanceWriteOff
);
sb
.
append
(
", checkOne="
).
append
(
checkOne
);
sb
.
append
(
", reclassifyAmount="
).
append
(
reclassifyAmount
);
sb
.
append
(
", exchangeRate="
).
append
(
exchangeRate
);
sb
.
append
(
", ledgerId="
).
append
(
ledgerId
);
sb
.
append
(
", debitAdvanceGene="
).
append
(
debitAdvanceGene
);
sb
.
append
(
", creditPrepaidAccounts="
).
append
(
creditPrepaidAccounts
);
sb
.
append
(
", remark="
).
append
(
remark
);
sb
.
append
(
", subjectCode="
).
append
(
subjectCode
);
sb
.
append
(
", subjectDescription="
).
append
(
subjectDescription
);
sb
.
append
(
", auxiliarySubject="
).
append
(
auxiliarySubject
);
sb
.
append
(
", auxiliarySubjectDescription="
).
append
(
auxiliarySubjectDescription
);
sb
.
append
(
", profitCenter="
).
append
(
profitCenter
);
sb
.
append
(
", profitCenterDescription="
).
append
(
profitCenterDescription
);
sb
.
append
(
", product="
).
append
(
product
);
sb
.
append
(
", productDescription="
).
append
(
productDescription
);
sb
.
append
(
", project="
).
append
(
project
);
sb
.
append
(
", projectDescription="
).
append
(
projectDescription
);
sb
.
append
(
", company="
).
append
(
company
);
sb
.
append
(
", companyDescription="
).
append
(
companyDescription
);
sb
.
append
(
", segment1="
).
append
(
segment1
);
sb
.
append
(
", segment1Description="
).
append
(
segment1Description
);
sb
.
append
(
", segment2="
).
append
(
segment2
);
sb
.
append
(
", segment2Description="
).
append
(
segment2Description
);
sb
.
append
(
", createdBy="
).
append
(
createdBy
);
sb
.
append
(
", updatedBy="
).
append
(
updatedBy
);
sb
.
append
(
", createTime="
).
append
(
createTime
);
...
...
atms-dao/src/main/java/pwc/taxtech/atms/entity/CitSalaryAdvanceExample.java
View file @
14fafc39
...
...
@@ -2026,483 +2026,843 @@ public class CitSalaryAdvanceExample {
return
(
Criteria
)
this
;
}
public
Criteria
and
CheckOn
eIsNull
()
{
addCriterion
(
"
check_on
e is null"
);
public
Criteria
and
SubjectCod
eIsNull
()
{
addCriterion
(
"
subject_cod
e is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
CheckOn
eIsNotNull
()
{
addCriterion
(
"
check_on
e is not null"
);
public
Criteria
and
SubjectCod
eIsNotNull
()
{
addCriterion
(
"
subject_cod
e is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
CheckOn
eEqualTo
(
String
value
)
{
addCriterion
(
"
check_one ="
,
value
,
"checkOn
e"
);
public
Criteria
and
SubjectCod
eEqualTo
(
String
value
)
{
addCriterion
(
"
subject_code ="
,
value
,
"subjectCod
e"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
CheckOn
eNotEqualTo
(
String
value
)
{
addCriterion
(
"
check_one <>"
,
value
,
"checkOn
e"
);
public
Criteria
and
SubjectCod
eNotEqualTo
(
String
value
)
{
addCriterion
(
"
subject_code <>"
,
value
,
"subjectCod
e"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
CheckOn
eGreaterThan
(
String
value
)
{
addCriterion
(
"
check_one >"
,
value
,
"checkOn
e"
);
public
Criteria
and
SubjectCod
eGreaterThan
(
String
value
)
{
addCriterion
(
"
subject_code >"
,
value
,
"subjectCod
e"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
CheckOn
eGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"
check_one >="
,
value
,
"checkOn
e"
);
public
Criteria
and
SubjectCod
eGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"
subject_code >="
,
value
,
"subjectCod
e"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
CheckOn
eLessThan
(
String
value
)
{
addCriterion
(
"
check_one <"
,
value
,
"checkOn
e"
);
public
Criteria
and
SubjectCod
eLessThan
(
String
value
)
{
addCriterion
(
"
subject_code <"
,
value
,
"subjectCod
e"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
CheckOn
eLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"
check_one <="
,
value
,
"checkOn
e"
);
public
Criteria
and
SubjectCod
eLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"
subject_code <="
,
value
,
"subjectCod
e"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
CheckOn
eLike
(
String
value
)
{
addCriterion
(
"
check_one like"
,
value
,
"checkOn
e"
);
public
Criteria
and
SubjectCod
eLike
(
String
value
)
{
addCriterion
(
"
subject_code like"
,
value
,
"subjectCod
e"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
CheckOn
eNotLike
(
String
value
)
{
addCriterion
(
"
check_one not like"
,
value
,
"checkOn
e"
);
public
Criteria
and
SubjectCod
eNotLike
(
String
value
)
{
addCriterion
(
"
subject_code not like"
,
value
,
"subjectCod
e"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
CheckOn
eIn
(
List
<
String
>
values
)
{
addCriterion
(
"
check_one in"
,
values
,
"checkOn
e"
);
public
Criteria
and
SubjectCod
eIn
(
List
<
String
>
values
)
{
addCriterion
(
"
subject_code in"
,
values
,
"subjectCod
e"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
CheckOn
eNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"
check_one not in"
,
values
,
"checkOn
e"
);
public
Criteria
and
SubjectCod
eNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"
subject_code not in"
,
values
,
"subjectCod
e"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
CheckOn
eBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"
check_one between"
,
value1
,
value2
,
"checkOn
e"
);
public
Criteria
and
SubjectCod
eBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"
subject_code between"
,
value1
,
value2
,
"subjectCod
e"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
CheckOn
eNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"
check_one not between"
,
value1
,
value2
,
"checkOn
e"
);
public
Criteria
and
SubjectCod
eNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"
subject_code not between"
,
value1
,
value2
,
"subjectCod
e"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
ReclassifyAmount
IsNull
()
{
addCriterion
(
"
reclassify_amount
is null"
);
public
Criteria
and
SubjectDescription
IsNull
()
{
addCriterion
(
"
subject_description
is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
ReclassifyAmount
IsNotNull
()
{
addCriterion
(
"
reclassify_amount
is not null"
);
public
Criteria
and
SubjectDescription
IsNotNull
()
{
addCriterion
(
"
subject_description
is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
ReclassifyAmountEqualTo
(
BigDecimal
value
)
{
addCriterion
(
"
reclassify_amount ="
,
value
,
"reclassifyAmount
"
);
public
Criteria
and
SubjectDescriptionEqualTo
(
String
value
)
{
addCriterion
(
"
subject_description ="
,
value
,
"subjectDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
ReclassifyAmountNotEqualTo
(
BigDecimal
value
)
{
addCriterion
(
"
reclassify_amount <>"
,
value
,
"reclassifyAmount
"
);
public
Criteria
and
SubjectDescriptionNotEqualTo
(
String
value
)
{
addCriterion
(
"
subject_description <>"
,
value
,
"subjectDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
ReclassifyAmountGreaterThan
(
BigDecimal
value
)
{
addCriterion
(
"
reclassify_amount >"
,
value
,
"reclassifyAmount
"
);
public
Criteria
and
SubjectDescriptionGreaterThan
(
String
value
)
{
addCriterion
(
"
subject_description >"
,
value
,
"subjectDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
ReclassifyAmountGreaterThanOrEqualTo
(
BigDecimal
value
)
{
addCriterion
(
"
reclassify_amount >="
,
value
,
"reclassifyAmount
"
);
public
Criteria
and
SubjectDescriptionGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"
subject_description >="
,
value
,
"subjectDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
ReclassifyAmountLessThan
(
BigDecimal
value
)
{
addCriterion
(
"
reclassify_amount <"
,
value
,
"reclassifyAmount
"
);
public
Criteria
and
SubjectDescriptionLessThan
(
String
value
)
{
addCriterion
(
"
subject_description <"
,
value
,
"subjectDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
ReclassifyAmountLessThanOrEqualTo
(
BigDecimal
value
)
{
addCriterion
(
"
reclassify_amount <="
,
value
,
"reclassifyAmount
"
);
public
Criteria
and
SubjectDescriptionLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"
subject_description <="
,
value
,
"subjectDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
ReclassifyAmountIn
(
List
<
BigDecimal
>
values
)
{
addCriterion
(
"
reclassify_amount in"
,
values
,
"reclassifyAmount
"
);
public
Criteria
and
SubjectDescriptionLike
(
String
value
)
{
addCriterion
(
"
subject_description like"
,
value
,
"subjectDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
ReclassifyAmountNotIn
(
List
<
BigDecimal
>
values
)
{
addCriterion
(
"
reclassify_amount not in"
,
values
,
"reclassifyAmount
"
);
public
Criteria
and
SubjectDescriptionNotLike
(
String
value
)
{
addCriterion
(
"
subject_description not like"
,
value
,
"subjectDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
ReclassifyAmountBetween
(
BigDecimal
value1
,
BigDecimal
value2
)
{
addCriterion
(
"
reclassify_amount between"
,
value1
,
value2
,
"reclassifyAmount
"
);
public
Criteria
and
SubjectDescriptionIn
(
List
<
String
>
values
)
{
addCriterion
(
"
subject_description in"
,
values
,
"subjectDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
ReclassifyAmountNotBetween
(
BigDecimal
value1
,
BigDecimal
value2
)
{
addCriterion
(
"
reclassify_amount not between"
,
value1
,
value2
,
"reclassifyAmount
"
);
public
Criteria
and
SubjectDescriptionNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"
subject_description not in"
,
values
,
"subjectDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
ExchangeRateIsNull
(
)
{
addCriterion
(
"
exchange_rate is null
"
);
public
Criteria
and
SubjectDescriptionBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"
subject_description between"
,
value1
,
value2
,
"subjectDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
ExchangeRateIsNotNull
(
)
{
addCriterion
(
"
exchange_rate is not null
"
);
public
Criteria
and
SubjectDescriptionNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"
subject_description not between"
,
value1
,
value2
,
"subjectDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
ExchangeRateEqualTo
(
String
value
)
{
addCriterion
(
"
exchange_rate ="
,
value
,
"exchangeRate
"
);
public
Criteria
and
AuxiliarySubjectIsNull
(
)
{
addCriterion
(
"
auxiliary_subject is null
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
ExchangeRateNotEqualTo
(
String
value
)
{
addCriterion
(
"
exchange_rate <>"
,
value
,
"exchangeRate
"
);
public
Criteria
and
AuxiliarySubjectIsNotNull
(
)
{
addCriterion
(
"
auxiliary_subject is not null
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
ExchangeRateGreaterThan
(
String
value
)
{
addCriterion
(
"
exchange_rate >"
,
value
,
"exchangeRate
"
);
public
Criteria
and
AuxiliarySubjectEqualTo
(
String
value
)
{
addCriterion
(
"
auxiliary_subject ="
,
value
,
"auxiliarySubject
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
ExchangeRateGreaterThanOr
EqualTo
(
String
value
)
{
addCriterion
(
"
exchange_rate >="
,
value
,
"exchangeRate
"
);
public
Criteria
and
AuxiliarySubjectNot
EqualTo
(
String
value
)
{
addCriterion
(
"
auxiliary_subject <>"
,
value
,
"auxiliarySubject
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
ExchangeRateLess
Than
(
String
value
)
{
addCriterion
(
"
exchange_rate <"
,
value
,
"exchangeRate
"
);
public
Criteria
and
AuxiliarySubjectGreater
Than
(
String
value
)
{
addCriterion
(
"
auxiliary_subject >"
,
value
,
"auxiliarySubject
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
ExchangeRateLess
ThanOrEqualTo
(
String
value
)
{
addCriterion
(
"
exchange_rate <="
,
value
,
"exchangeRate
"
);
public
Criteria
and
AuxiliarySubjectGreater
ThanOrEqualTo
(
String
value
)
{
addCriterion
(
"
auxiliary_subject >="
,
value
,
"auxiliarySubject
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
ExchangeRateLike
(
String
value
)
{
addCriterion
(
"
exchange_rate like"
,
value
,
"exchangeRate
"
);
public
Criteria
and
AuxiliarySubjectLessThan
(
String
value
)
{
addCriterion
(
"
auxiliary_subject <"
,
value
,
"auxiliarySubject
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
ExchangeRateNotLike
(
String
value
)
{
addCriterion
(
"
exchange_rate not like"
,
value
,
"exchangeRate
"
);
public
Criteria
and
AuxiliarySubjectLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"
auxiliary_subject <="
,
value
,
"auxiliarySubject
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
ExchangeRateIn
(
List
<
String
>
values
)
{
addCriterion
(
"
exchange_rate in"
,
values
,
"exchangeRate
"
);
public
Criteria
and
AuxiliarySubjectLike
(
String
value
)
{
addCriterion
(
"
auxiliary_subject like"
,
value
,
"auxiliarySubject
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
ExchangeRateNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"
exchange_rate not in"
,
values
,
"exchangeRate
"
);
public
Criteria
and
AuxiliarySubjectNotLike
(
String
value
)
{
addCriterion
(
"
auxiliary_subject not like"
,
value
,
"auxiliarySubject
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
ExchangeRateBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"
exchange_rate between"
,
value1
,
value2
,
"exchangeRate
"
);
public
Criteria
and
AuxiliarySubjectIn
(
List
<
String
>
values
)
{
addCriterion
(
"
auxiliary_subject in"
,
values
,
"auxiliarySubject
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
ExchangeRateNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"
exchange_rate not between"
,
value1
,
value2
,
"exchangeRate
"
);
public
Criteria
and
AuxiliarySubjectNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"
auxiliary_subject not in"
,
values
,
"auxiliarySubject
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
LedgerIdIsNull
(
)
{
addCriterion
(
"
ledger_id is null
"
);
public
Criteria
and
AuxiliarySubjectBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"
auxiliary_subject between"
,
value1
,
value2
,
"auxiliarySubject
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
LedgerIdIsNotNull
(
)
{
addCriterion
(
"
ledger_id is not null
"
);
public
Criteria
and
AuxiliarySubjectNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"
auxiliary_subject not between"
,
value1
,
value2
,
"auxiliarySubject
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
LedgerIdEqualTo
(
String
value
)
{
addCriterion
(
"
ledger_id ="
,
value
,
"ledgerId
"
);
public
Criteria
and
AuxiliarySubjectDescriptionIsNull
(
)
{
addCriterion
(
"
auxiliary_subject_description is null
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
LedgerIdNotEqualTo
(
String
value
)
{
addCriterion
(
"
ledger_id <>"
,
value
,
"ledgerId
"
);
public
Criteria
and
AuxiliarySubjectDescriptionIsNotNull
(
)
{
addCriterion
(
"
auxiliary_subject_description is not null
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
LedgerIdGreaterThan
(
String
value
)
{
addCriterion
(
"
ledger_id >"
,
value
,
"ledgerId
"
);
public
Criteria
and
AuxiliarySubjectDescriptionEqualTo
(
String
value
)
{
addCriterion
(
"
auxiliary_subject_description ="
,
value
,
"auxiliarySubjectDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
LedgerIdGreaterThanOr
EqualTo
(
String
value
)
{
addCriterion
(
"
ledger_id >="
,
value
,
"ledgerId
"
);
public
Criteria
and
AuxiliarySubjectDescriptionNot
EqualTo
(
String
value
)
{
addCriterion
(
"
auxiliary_subject_description <>"
,
value
,
"auxiliarySubjectDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
LedgerIdLess
Than
(
String
value
)
{
addCriterion
(
"
ledger_id <"
,
value
,
"ledgerId
"
);
public
Criteria
and
AuxiliarySubjectDescriptionGreater
Than
(
String
value
)
{
addCriterion
(
"
auxiliary_subject_description >"
,
value
,
"auxiliarySubjectDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
LedgerIdLess
ThanOrEqualTo
(
String
value
)
{
addCriterion
(
"
ledger_id <="
,
value
,
"ledgerId
"
);
public
Criteria
and
AuxiliarySubjectDescriptionGreater
ThanOrEqualTo
(
String
value
)
{
addCriterion
(
"
auxiliary_subject_description >="
,
value
,
"auxiliarySubjectDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
LedgerIdLike
(
String
value
)
{
addCriterion
(
"
ledger_id like"
,
value
,
"ledgerId
"
);
public
Criteria
and
AuxiliarySubjectDescriptionLessThan
(
String
value
)
{
addCriterion
(
"
auxiliary_subject_description <"
,
value
,
"auxiliarySubjectDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
LedgerIdNotLike
(
String
value
)
{
addCriterion
(
"
ledger_id not like"
,
value
,
"ledgerId
"
);
public
Criteria
and
AuxiliarySubjectDescriptionLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"
auxiliary_subject_description <="
,
value
,
"auxiliarySubjectDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
LedgerIdIn
(
List
<
String
>
values
)
{
addCriterion
(
"
ledger_id in"
,
values
,
"ledgerId
"
);
public
Criteria
and
AuxiliarySubjectDescriptionLike
(
String
value
)
{
addCriterion
(
"
auxiliary_subject_description like"
,
value
,
"auxiliarySubjectDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
LedgerIdNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"
ledger_id not in"
,
values
,
"ledgerId
"
);
public
Criteria
and
AuxiliarySubjectDescriptionNotLike
(
String
value
)
{
addCriterion
(
"
auxiliary_subject_description not like"
,
value
,
"auxiliarySubjectDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
LedgerIdBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"
ledger_id between"
,
value1
,
value2
,
"ledgerId
"
);
public
Criteria
and
AuxiliarySubjectDescriptionIn
(
List
<
String
>
values
)
{
addCriterion
(
"
auxiliary_subject_description in"
,
values
,
"auxiliarySubjectDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
LedgerIdNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"
ledger_id not between"
,
value1
,
value2
,
"ledgerId
"
);
public
Criteria
and
AuxiliarySubjectDescriptionNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"
auxiliary_subject_description not in"
,
values
,
"auxiliarySubjectDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
DebitAdvanceGeneIsNull
(
)
{
addCriterion
(
"
debit_advance_gene is null
"
);
public
Criteria
and
AuxiliarySubjectDescriptionBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"
auxiliary_subject_description between"
,
value1
,
value2
,
"auxiliarySubjectDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
DebitAdvanceGeneIsNotNull
(
)
{
addCriterion
(
"
debit_advance_gene is not null
"
);
public
Criteria
and
AuxiliarySubjectDescriptionNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"
auxiliary_subject_description not between"
,
value1
,
value2
,
"auxiliarySubjectDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
DebitAdvanceGeneEqualTo
(
String
value
)
{
addCriterion
(
"
debit_advance_gene ="
,
value
,
"debitAdvanceGene
"
);
public
Criteria
and
ProfitCenterIsNull
(
)
{
addCriterion
(
"
profit_center is null
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
DebitAdvanceGeneNotEqualTo
(
String
value
)
{
addCriterion
(
"
debit_advance_gene <>"
,
value
,
"debitAdvanceGene
"
);
public
Criteria
and
ProfitCenterIsNotNull
(
)
{
addCriterion
(
"
profit_center is not null
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
DebitAdvanceGeneGreaterThan
(
String
value
)
{
addCriterion
(
"
debit_advance_gene >"
,
value
,
"debitAdvanceGene
"
);
public
Criteria
and
ProfitCenterEqualTo
(
String
value
)
{
addCriterion
(
"
profit_center ="
,
value
,
"profitCenter
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
DebitAdvanceGeneGreaterThanOr
EqualTo
(
String
value
)
{
addCriterion
(
"
debit_advance_gene >="
,
value
,
"debitAdvanceGene
"
);
public
Criteria
and
ProfitCenterNot
EqualTo
(
String
value
)
{
addCriterion
(
"
profit_center <>"
,
value
,
"profitCenter
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
DebitAdvanceGeneLess
Than
(
String
value
)
{
addCriterion
(
"
debit_advance_gene <"
,
value
,
"debitAdvanceGene
"
);
public
Criteria
and
ProfitCenterGreater
Than
(
String
value
)
{
addCriterion
(
"
profit_center >"
,
value
,
"profitCenter
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
DebitAdvanceGeneLess
ThanOrEqualTo
(
String
value
)
{
addCriterion
(
"
debit_advance_gene <="
,
value
,
"debitAdvanceGene
"
);
public
Criteria
and
ProfitCenterGreater
ThanOrEqualTo
(
String
value
)
{
addCriterion
(
"
profit_center >="
,
value
,
"profitCenter
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
DebitAdvanceGeneLike
(
String
value
)
{
addCriterion
(
"
debit_advance_gene like"
,
value
,
"debitAdvanceGene
"
);
public
Criteria
and
ProfitCenterLessThan
(
String
value
)
{
addCriterion
(
"
profit_center <"
,
value
,
"profitCenter
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
DebitAdvanceGeneNotLike
(
String
value
)
{
addCriterion
(
"
debit_advance_gene not like"
,
value
,
"debitAdvanceGene
"
);
public
Criteria
and
ProfitCenterLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"
profit_center <="
,
value
,
"profitCenter
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
DebitAdvanceGeneIn
(
List
<
String
>
values
)
{
addCriterion
(
"
debit_advance_gene in"
,
values
,
"debitAdvanceGene
"
);
public
Criteria
and
ProfitCenterLike
(
String
value
)
{
addCriterion
(
"
profit_center like"
,
value
,
"profitCenter
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
DebitAdvanceGeneNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"
debit_advance_gene not in"
,
values
,
"debitAdvanceGene
"
);
public
Criteria
and
ProfitCenterNotLike
(
String
value
)
{
addCriterion
(
"
profit_center not like"
,
value
,
"profitCenter
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
DebitAdvanceGeneBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"
debit_advance_gene between"
,
value1
,
value2
,
"debitAdvanceGene
"
);
public
Criteria
and
ProfitCenterIn
(
List
<
String
>
values
)
{
addCriterion
(
"
profit_center in"
,
values
,
"profitCenter
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
DebitAdvanceGeneNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"
debit_advance_gene not between"
,
value1
,
value2
,
"debitAdvanceGene
"
);
public
Criteria
and
ProfitCenterNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"
profit_center not in"
,
values
,
"profitCenter
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
CreditPrepaidAccountsIsNull
(
)
{
addCriterion
(
"
credit_prepaid_accounts is null
"
);
public
Criteria
and
ProfitCenterBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"
profit_center between"
,
value1
,
value2
,
"profitCenter
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
CreditPrepaidAccountsIsNotNull
(
)
{
addCriterion
(
"
credit_prepaid_accounts is not null
"
);
public
Criteria
and
ProfitCenterNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"
profit_center not between"
,
value1
,
value2
,
"profitCenter
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
CreditPrepaidAccountsEqualTo
(
String
value
)
{
addCriterion
(
"
credit_prepaid_accounts ="
,
value
,
"creditPrepaidAccounts
"
);
public
Criteria
and
ProfitCenterDescriptionIsNull
(
)
{
addCriterion
(
"
profit_center_description is null
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
CreditPrepaidAccountsNotEqualTo
(
String
value
)
{
addCriterion
(
"
credit_prepaid_accounts <>"
,
value
,
"creditPrepaidAccounts
"
);
public
Criteria
and
ProfitCenterDescriptionIsNotNull
(
)
{
addCriterion
(
"
profit_center_description is not null
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
CreditPrepaidAccountsGreaterThan
(
String
value
)
{
addCriterion
(
"
credit_prepaid_accounts >"
,
value
,
"creditPrepaidAccounts
"
);
public
Criteria
and
ProfitCenterDescriptionEqualTo
(
String
value
)
{
addCriterion
(
"
profit_center_description ="
,
value
,
"profitCenterDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
CreditPrepaidAccountsGreaterThanOr
EqualTo
(
String
value
)
{
addCriterion
(
"
credit_prepaid_accounts >="
,
value
,
"creditPrepaidAccounts
"
);
public
Criteria
and
ProfitCenterDescriptionNot
EqualTo
(
String
value
)
{
addCriterion
(
"
profit_center_description <>"
,
value
,
"profitCenterDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
CreditPrepaidAccountsLess
Than
(
String
value
)
{
addCriterion
(
"
credit_prepaid_accounts <"
,
value
,
"creditPrepaidAccounts
"
);
public
Criteria
and
ProfitCenterDescriptionGreater
Than
(
String
value
)
{
addCriterion
(
"
profit_center_description >"
,
value
,
"profitCenterDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
CreditPrepaidAccountsLess
ThanOrEqualTo
(
String
value
)
{
addCriterion
(
"
credit_prepaid_accounts <="
,
value
,
"creditPrepaidAccounts
"
);
public
Criteria
and
ProfitCenterDescriptionGreater
ThanOrEqualTo
(
String
value
)
{
addCriterion
(
"
profit_center_description >="
,
value
,
"profitCenterDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
CreditPrepaidAccountsLike
(
String
value
)
{
addCriterion
(
"
credit_prepaid_accounts like"
,
value
,
"creditPrepaidAccounts
"
);
public
Criteria
and
ProfitCenterDescriptionLessThan
(
String
value
)
{
addCriterion
(
"
profit_center_description <"
,
value
,
"profitCenterDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
CreditPrepaidAccountsNotLike
(
String
value
)
{
addCriterion
(
"
credit_prepaid_accounts not like"
,
value
,
"creditPrepaidAccounts
"
);
public
Criteria
and
ProfitCenterDescriptionLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"
profit_center_description <="
,
value
,
"profitCenterDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
CreditPrepaidAccountsIn
(
List
<
String
>
values
)
{
addCriterion
(
"
credit_prepaid_accounts in"
,
values
,
"creditPrepaidAccounts
"
);
public
Criteria
and
ProfitCenterDescriptionLike
(
String
value
)
{
addCriterion
(
"
profit_center_description like"
,
value
,
"profitCenterDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
CreditPrepaidAccountsNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"
credit_prepaid_accounts not in"
,
values
,
"creditPrepaidAccounts
"
);
public
Criteria
and
ProfitCenterDescriptionNotLike
(
String
value
)
{
addCriterion
(
"
profit_center_description not like"
,
value
,
"profitCenterDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
CreditPrepaidAccountsBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"
credit_prepaid_accounts between"
,
value1
,
value2
,
"creditPrepaidAccounts
"
);
public
Criteria
and
ProfitCenterDescriptionIn
(
List
<
String
>
values
)
{
addCriterion
(
"
profit_center_description in"
,
values
,
"profitCenterDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
CreditPrepaidAccountsNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"
credit_prepaid_accounts not between"
,
value1
,
value2
,
"creditPrepaidAccounts
"
);
public
Criteria
and
ProfitCenterDescriptionNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"
profit_center_description not in"
,
values
,
"profitCenterDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
RemarkIsNull
(
)
{
addCriterion
(
"
remark is null
"
);
public
Criteria
and
ProfitCenterDescriptionBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"
profit_center_description between"
,
value1
,
value2
,
"profitCenterDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
RemarkIsNotNull
(
)
{
addCriterion
(
"
remark is not null
"
);
public
Criteria
and
ProfitCenterDescriptionNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"
profit_center_description not between"
,
value1
,
value2
,
"profitCenterDescription
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
RemarkEqualTo
(
String
value
)
{
addCriterion
(
"
remark ="
,
value
,
"remark
"
);
public
Criteria
and
ProductIsNull
(
)
{
addCriterion
(
"
product is null
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
RemarkNotEqualTo
(
String
value
)
{
addCriterion
(
"
remark <>"
,
value
,
"remark
"
);
public
Criteria
and
ProductIsNotNull
(
)
{
addCriterion
(
"
product is not null
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
RemarkGreaterThan
(
String
value
)
{
addCriterion
(
"
remark >"
,
value
,
"remark
"
);
public
Criteria
and
ProductEqualTo
(
String
value
)
{
addCriterion
(
"
product ="
,
value
,
"product
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
RemarkGreaterThanOr
EqualTo
(
String
value
)
{
addCriterion
(
"
remark >="
,
value
,
"remark
"
);
public
Criteria
and
ProductNot
EqualTo
(
String
value
)
{
addCriterion
(
"
product <>"
,
value
,
"product
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
RemarkLess
Than
(
String
value
)
{
addCriterion
(
"
remark <"
,
value
,
"remark
"
);
public
Criteria
and
ProductGreater
Than
(
String
value
)
{
addCriterion
(
"
product >"
,
value
,
"product
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
RemarkLess
ThanOrEqualTo
(
String
value
)
{
addCriterion
(
"
remark <="
,
value
,
"remark
"
);
public
Criteria
and
ProductGreater
ThanOrEqualTo
(
String
value
)
{
addCriterion
(
"
product >="
,
value
,
"product
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
RemarkLike
(
String
value
)
{
addCriterion
(
"
remark like"
,
value
,
"remark
"
);
public
Criteria
and
ProductLessThan
(
String
value
)
{
addCriterion
(
"
product <"
,
value
,
"product
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
RemarkNotLike
(
String
value
)
{
addCriterion
(
"
remark not like"
,
value
,
"remark
"
);
public
Criteria
and
ProductLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"
product <="
,
value
,
"product
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
RemarkIn
(
List
<
String
>
values
)
{
addCriterion
(
"
remark in"
,
values
,
"remark
"
);
public
Criteria
and
ProductLike
(
String
value
)
{
addCriterion
(
"
product like"
,
value
,
"product
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
RemarkNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"
remark not in"
,
values
,
"remark
"
);
public
Criteria
and
ProductNotLike
(
String
value
)
{
addCriterion
(
"
product not like"
,
value
,
"product
"
);
return
(
Criteria
)
this
;
}
public
Criteria
and
RemarkBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"
remark between"
,
value1
,
value2
,
"remark
"
);
public
Criteria
and
ProductIn
(
List
<
String
>
values
)
{
addCriterion
(
"
product in"
,
values
,
"product
"
);
return
(
Criteria
)
this
;
}
public
Criteria
andRemarkNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"remark not between"
,
value1
,
value2
,
"remark"
);
public
Criteria
andProductNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"product not in"
,
values
,
"product"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProductBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"product between"
,
value1
,
value2
,
"product"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProductNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"product not between"
,
value1
,
value2
,
"product"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProductDescriptionIsNull
()
{
addCriterion
(
"product_description is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProductDescriptionIsNotNull
()
{
addCriterion
(
"product_description is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProductDescriptionEqualTo
(
String
value
)
{
addCriterion
(
"product_description ="
,
value
,
"productDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProductDescriptionNotEqualTo
(
String
value
)
{
addCriterion
(
"product_description <>"
,
value
,
"productDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProductDescriptionGreaterThan
(
String
value
)
{
addCriterion
(
"product_description >"
,
value
,
"productDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProductDescriptionGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"product_description >="
,
value
,
"productDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProductDescriptionLessThan
(
String
value
)
{
addCriterion
(
"product_description <"
,
value
,
"productDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProductDescriptionLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"product_description <="
,
value
,
"productDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProductDescriptionLike
(
String
value
)
{
addCriterion
(
"product_description like"
,
value
,
"productDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProductDescriptionNotLike
(
String
value
)
{
addCriterion
(
"product_description not like"
,
value
,
"productDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProductDescriptionIn
(
List
<
String
>
values
)
{
addCriterion
(
"product_description in"
,
values
,
"productDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProductDescriptionNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"product_description not in"
,
values
,
"productDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProductDescriptionBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"product_description between"
,
value1
,
value2
,
"productDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProductDescriptionNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"product_description not between"
,
value1
,
value2
,
"productDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectIsNull
()
{
addCriterion
(
"project is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectIsNotNull
()
{
addCriterion
(
"project is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectEqualTo
(
String
value
)
{
addCriterion
(
"project ="
,
value
,
"project"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectNotEqualTo
(
String
value
)
{
addCriterion
(
"project <>"
,
value
,
"project"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectGreaterThan
(
String
value
)
{
addCriterion
(
"project >"
,
value
,
"project"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"project >="
,
value
,
"project"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectLessThan
(
String
value
)
{
addCriterion
(
"project <"
,
value
,
"project"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"project <="
,
value
,
"project"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectLike
(
String
value
)
{
addCriterion
(
"project like"
,
value
,
"project"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectNotLike
(
String
value
)
{
addCriterion
(
"project not like"
,
value
,
"project"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectIn
(
List
<
String
>
values
)
{
addCriterion
(
"project in"
,
values
,
"project"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"project not in"
,
values
,
"project"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"project between"
,
value1
,
value2
,
"project"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"project not between"
,
value1
,
value2
,
"project"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectDescriptionIsNull
()
{
addCriterion
(
"project_description is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectDescriptionIsNotNull
()
{
addCriterion
(
"project_description is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectDescriptionEqualTo
(
String
value
)
{
addCriterion
(
"project_description ="
,
value
,
"projectDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectDescriptionNotEqualTo
(
String
value
)
{
addCriterion
(
"project_description <>"
,
value
,
"projectDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectDescriptionGreaterThan
(
String
value
)
{
addCriterion
(
"project_description >"
,
value
,
"projectDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectDescriptionGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"project_description >="
,
value
,
"projectDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectDescriptionLessThan
(
String
value
)
{
addCriterion
(
"project_description <"
,
value
,
"projectDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectDescriptionLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"project_description <="
,
value
,
"projectDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectDescriptionLike
(
String
value
)
{
addCriterion
(
"project_description like"
,
value
,
"projectDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectDescriptionNotLike
(
String
value
)
{
addCriterion
(
"project_description not like"
,
value
,
"projectDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectDescriptionIn
(
List
<
String
>
values
)
{
addCriterion
(
"project_description in"
,
values
,
"projectDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectDescriptionNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"project_description not in"
,
values
,
"projectDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectDescriptionBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"project_description between"
,
value1
,
value2
,
"projectDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectDescriptionNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"project_description not between"
,
value1
,
value2
,
"projectDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyIsNull
()
{
addCriterion
(
"company is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyIsNotNull
()
{
addCriterion
(
"company is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyEqualTo
(
String
value
)
{
addCriterion
(
"company ="
,
value
,
"company"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyNotEqualTo
(
String
value
)
{
addCriterion
(
"company <>"
,
value
,
"company"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyGreaterThan
(
String
value
)
{
addCriterion
(
"company >"
,
value
,
"company"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"company >="
,
value
,
"company"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyLessThan
(
String
value
)
{
addCriterion
(
"company <"
,
value
,
"company"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"company <="
,
value
,
"company"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyLike
(
String
value
)
{
addCriterion
(
"company like"
,
value
,
"company"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyNotLike
(
String
value
)
{
addCriterion
(
"company not like"
,
value
,
"company"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyIn
(
List
<
String
>
values
)
{
addCriterion
(
"company in"
,
values
,
"company"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"company not in"
,
values
,
"company"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"company between"
,
value1
,
value2
,
"company"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"company not between"
,
value1
,
value2
,
"company"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyDescriptionIsNull
()
{
addCriterion
(
"company_description is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyDescriptionIsNotNull
()
{
addCriterion
(
"company_description is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyDescriptionEqualTo
(
String
value
)
{
addCriterion
(
"company_description ="
,
value
,
"companyDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyDescriptionNotEqualTo
(
String
value
)
{
addCriterion
(
"company_description <>"
,
value
,
"companyDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyDescriptionGreaterThan
(
String
value
)
{
addCriterion
(
"company_description >"
,
value
,
"companyDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyDescriptionGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"company_description >="
,
value
,
"companyDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyDescriptionLessThan
(
String
value
)
{
addCriterion
(
"company_description <"
,
value
,
"companyDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyDescriptionLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"company_description <="
,
value
,
"companyDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyDescriptionLike
(
String
value
)
{
addCriterion
(
"company_description like"
,
value
,
"companyDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyDescriptionNotLike
(
String
value
)
{
addCriterion
(
"company_description not like"
,
value
,
"companyDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyDescriptionIn
(
List
<
String
>
values
)
{
addCriterion
(
"company_description in"
,
values
,
"companyDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyDescriptionNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"company_description not in"
,
values
,
"companyDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyDescriptionBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"company_description between"
,
value1
,
value2
,
"companyDescription"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyDescriptionNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"company_description not between"
,
value1
,
value2
,
"companyDescription"
);
return
(
Criteria
)
this
;
}
...
...
@@ -2576,6 +2936,76 @@ public class CitSalaryAdvanceExample {
return
(
Criteria
)
this
;
}
public
Criteria
andSegment1DescriptionIsNull
()
{
addCriterion
(
"segment1_description is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSegment1DescriptionIsNotNull
()
{
addCriterion
(
"segment1_description is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSegment1DescriptionEqualTo
(
String
value
)
{
addCriterion
(
"segment1_description ="
,
value
,
"segment1Description"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSegment1DescriptionNotEqualTo
(
String
value
)
{
addCriterion
(
"segment1_description <>"
,
value
,
"segment1Description"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSegment1DescriptionGreaterThan
(
String
value
)
{
addCriterion
(
"segment1_description >"
,
value
,
"segment1Description"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSegment1DescriptionGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"segment1_description >="
,
value
,
"segment1Description"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSegment1DescriptionLessThan
(
String
value
)
{
addCriterion
(
"segment1_description <"
,
value
,
"segment1Description"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSegment1DescriptionLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"segment1_description <="
,
value
,
"segment1Description"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSegment1DescriptionLike
(
String
value
)
{
addCriterion
(
"segment1_description like"
,
value
,
"segment1Description"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSegment1DescriptionNotLike
(
String
value
)
{
addCriterion
(
"segment1_description not like"
,
value
,
"segment1Description"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSegment1DescriptionIn
(
List
<
String
>
values
)
{
addCriterion
(
"segment1_description in"
,
values
,
"segment1Description"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSegment1DescriptionNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"segment1_description not in"
,
values
,
"segment1Description"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSegment1DescriptionBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"segment1_description between"
,
value1
,
value2
,
"segment1Description"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSegment1DescriptionNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"segment1_description not between"
,
value1
,
value2
,
"segment1Description"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSegment2IsNull
()
{
addCriterion
(
"segment2 is null"
);
return
(
Criteria
)
this
;
...
...
@@ -2646,6 +3076,76 @@ public class CitSalaryAdvanceExample {
return
(
Criteria
)
this
;
}
public
Criteria
andSegment2DescriptionIsNull
()
{
addCriterion
(
"segment2_description is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSegment2DescriptionIsNotNull
()
{
addCriterion
(
"segment2_description is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSegment2DescriptionEqualTo
(
String
value
)
{
addCriterion
(
"segment2_description ="
,
value
,
"segment2Description"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSegment2DescriptionNotEqualTo
(
String
value
)
{
addCriterion
(
"segment2_description <>"
,
value
,
"segment2Description"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSegment2DescriptionGreaterThan
(
String
value
)
{
addCriterion
(
"segment2_description >"
,
value
,
"segment2Description"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSegment2DescriptionGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"segment2_description >="
,
value
,
"segment2Description"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSegment2DescriptionLessThan
(
String
value
)
{
addCriterion
(
"segment2_description <"
,
value
,
"segment2Description"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSegment2DescriptionLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"segment2_description <="
,
value
,
"segment2Description"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSegment2DescriptionLike
(
String
value
)
{
addCriterion
(
"segment2_description like"
,
value
,
"segment2Description"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSegment2DescriptionNotLike
(
String
value
)
{
addCriterion
(
"segment2_description not like"
,
value
,
"segment2Description"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSegment2DescriptionIn
(
List
<
String
>
values
)
{
addCriterion
(
"segment2_description in"
,
values
,
"segment2Description"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSegment2DescriptionNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"segment2_description not in"
,
values
,
"segment2Description"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSegment2DescriptionBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"segment2_description between"
,
value1
,
value2
,
"segment2Description"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSegment2DescriptionNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"segment2_description not between"
,
value1
,
value2
,
"segment2Description"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreatedByIsNull
()
{
addCriterion
(
"created_by is null"
);
return
(
Criteria
)
this
;
...
...
atms-dao/src/main/resources/pwc/taxtech/atms/dao/CitSalaryAdvanceMapper.xml
View file @
14fafc39
...
...
@@ -34,15 +34,22 @@
<result
column=
"usable_invoice_amount"
jdbcType=
"DECIMAL"
property=
"usableInvoiceAmount"
/>
<result
column=
"usable_balance"
jdbcType=
"DECIMAL"
property=
"usableBalance"
/>
<result
column=
"advance_write_off"
jdbcType=
"DECIMAL"
property=
"advanceWriteOff"
/>
<result
column=
"check_one"
jdbcType=
"VARCHAR"
property=
"checkOne"
/>
<result
column=
"reclassify_amount"
jdbcType=
"DECIMAL"
property=
"reclassifyAmount"
/>
<result
column=
"exchange_rate"
jdbcType=
"VARCHAR"
property=
"exchangeRate"
/>
<result
column=
"ledger_id"
jdbcType=
"VARCHAR"
property=
"ledgerId"
/>
<result
column=
"debit_advance_gene"
jdbcType=
"VARCHAR"
property=
"debitAdvanceGene"
/>
<result
column=
"credit_prepaid_accounts"
jdbcType=
"VARCHAR"
property=
"creditPrepaidAccounts"
/>
<result
column=
"remark"
jdbcType=
"VARCHAR"
property=
"remark"
/>
<result
column=
"subject_code"
jdbcType=
"VARCHAR"
property=
"subjectCode"
/>
<result
column=
"subject_description"
jdbcType=
"VARCHAR"
property=
"subjectDescription"
/>
<result
column=
"auxiliary_subject"
jdbcType=
"VARCHAR"
property=
"auxiliarySubject"
/>
<result
column=
"auxiliary_subject_description"
jdbcType=
"VARCHAR"
property=
"auxiliarySubjectDescription"
/>
<result
column=
"profit_center"
jdbcType=
"VARCHAR"
property=
"profitCenter"
/>
<result
column=
"profit_center_description"
jdbcType=
"VARCHAR"
property=
"profitCenterDescription"
/>
<result
column=
"product"
jdbcType=
"VARCHAR"
property=
"product"
/>
<result
column=
"product_description"
jdbcType=
"VARCHAR"
property=
"productDescription"
/>
<result
column=
"project"
jdbcType=
"VARCHAR"
property=
"project"
/>
<result
column=
"project_description"
jdbcType=
"VARCHAR"
property=
"projectDescription"
/>
<result
column=
"company"
jdbcType=
"VARCHAR"
property=
"company"
/>
<result
column=
"company_description"
jdbcType=
"VARCHAR"
property=
"companyDescription"
/>
<result
column=
"segment1"
jdbcType=
"VARCHAR"
property=
"segment1"
/>
<result
column=
"segment1_description"
jdbcType=
"VARCHAR"
property=
"segment1Description"
/>
<result
column=
"segment2"
jdbcType=
"VARCHAR"
property=
"segment2"
/>
<result
column=
"segment2_description"
jdbcType=
"VARCHAR"
property=
"segment2Description"
/>
<result
column=
"created_by"
jdbcType=
"VARCHAR"
property=
"createdBy"
/>
<result
column=
"updated_by"
jdbcType=
"VARCHAR"
property=
"updatedBy"
/>
<result
column=
"create_time"
jdbcType=
"TIMESTAMP"
property=
"createTime"
/>
...
...
@@ -123,9 +130,11 @@
purchase_person, po_subject_code, po_subject_name, cost_center_code, cost_center,
supplier, item, standard_money, currency, order_amount, executed_service_schedule,
coupa_total_accept, advance, unexecuted_service_schedule, approved_standard_invoice_amount,
paid_invoice_amount, usable_invoice_amount, usable_balance, advance_write_off, check_one,
reclassify_amount, exchange_rate, ledger_id, debit_advance_gene, credit_prepaid_accounts,
remark, segment1, segment2, created_by, updated_by, create_time, update_time
paid_invoice_amount, usable_invoice_amount, usable_balance, advance_write_off, subject_code,
subject_description, auxiliary_subject, auxiliary_subject_description, profit_center,
profit_center_description, product, product_description, project, project_description,
company, company_description, segment1, segment1_description, segment2, segment2_description,
created_by, updated_by, create_time, update_time
</sql>
<select
id=
"selectByExample"
parameterType=
"pwc.taxtech.atms.entity.CitSalaryAdvanceExample"
resultMap=
"BaseResultMap"
>
<!--
...
...
@@ -187,12 +196,14 @@
order_amount, executed_service_schedule, coupa_total_accept,
advance, unexecuted_service_schedule, approved_standard_invoice_amount,
paid_invoice_amount, usable_invoice_amount,
usable_balance, advance_write_off, check_one,
reclassify_amount, exchange_rate, ledger_id,
debit_advance_gene, credit_prepaid_accounts,
remark, segment1, segment2,
created_by, updated_by, create_time,
update_time)
usable_balance, advance_write_off, subject_code,
subject_description, auxiliary_subject, auxiliary_subject_description,
profit_center, profit_center_description,
product, product_description, project,
project_description, company, company_description,
segment1, segment1_description, segment2,
segment2_description, created_by, updated_by,
create_time, update_time)
values (#{id,jdbcType=BIGINT}, #{organizationId,jdbcType=VARCHAR}, #{projectId,jdbcType=VARCHAR},
#{period,jdbcType=INTEGER}, #{source,jdbcType=VARCHAR}, #{poNo,jdbcType=VARCHAR},
#{poRow,jdbcType=VARCHAR}, #{poCreateTime,jdbcType=TIMESTAMP}, #{ladingBillPerson,jdbcType=VARCHAR},
...
...
@@ -202,12 +213,14 @@
#{orderAmount,jdbcType=DECIMAL}, #{executedServiceSchedule,jdbcType=DECIMAL}, #{coupaTotalAccept,jdbcType=DECIMAL},
#{advance,jdbcType=DECIMAL}, #{unexecutedServiceSchedule,jdbcType=DECIMAL}, #{approvedStandardInvoiceAmount,jdbcType=DECIMAL},
#{paidInvoiceAmount,jdbcType=DECIMAL}, #{usableInvoiceAmount,jdbcType=DECIMAL},
#{usableBalance,jdbcType=DECIMAL}, #{advanceWriteOff,jdbcType=DECIMAL}, #{checkOne,jdbcType=VARCHAR},
#{reclassifyAmount,jdbcType=DECIMAL}, #{exchangeRate,jdbcType=VARCHAR}, #{ledgerId,jdbcType=VARCHAR},
#{debitAdvanceGene,jdbcType=VARCHAR}, #{creditPrepaidAccounts,jdbcType=VARCHAR},
#{remark,jdbcType=VARCHAR}, #{segment1,jdbcType=VARCHAR}, #{segment2,jdbcType=VARCHAR},
#{createdBy,jdbcType=VARCHAR}, #{updatedBy,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP},
#{updateTime,jdbcType=TIMESTAMP})
#{usableBalance,jdbcType=DECIMAL}, #{advanceWriteOff,jdbcType=DECIMAL}, #{subjectCode,jdbcType=VARCHAR},
#{subjectDescription,jdbcType=VARCHAR}, #{auxiliarySubject,jdbcType=VARCHAR}, #{auxiliarySubjectDescription,jdbcType=VARCHAR},
#{profitCenter,jdbcType=VARCHAR}, #{profitCenterDescription,jdbcType=VARCHAR},
#{product,jdbcType=VARCHAR}, #{productDescription,jdbcType=VARCHAR}, #{project,jdbcType=VARCHAR},
#{projectDescription,jdbcType=VARCHAR}, #{company,jdbcType=VARCHAR}, #{companyDescription,jdbcType=VARCHAR},
#{segment1,jdbcType=VARCHAR}, #{segment1Description,jdbcType=VARCHAR}, #{segment2,jdbcType=VARCHAR},
#{segment2Description,jdbcType=VARCHAR}, #{createdBy,jdbcType=VARCHAR}, #{updatedBy,jdbcType=VARCHAR},
#{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP})
</insert>
<insert
id=
"insertSelective"
parameterType=
"pwc.taxtech.atms.entity.CitSalaryAdvance"
>
<!--
...
...
@@ -300,33 +313,54 @@
<if
test=
"advanceWriteOff != null"
>
advance_write_off,
</if>
<if
test=
"
checkOn
e != null"
>
check_on
e,
<if
test=
"
subjectCod
e != null"
>
subject_cod
e,
</if>
<if
test=
"
reclassifyAmount
!= null"
>
reclassify_amount
,
<if
test=
"
subjectDescription
!= null"
>
subject_description
,
</if>
<if
test=
"
exchangeRate
!= null"
>
exchange_rate
,
<if
test=
"
auxiliarySubject
!= null"
>
auxiliary_subject
,
</if>
<if
test=
"
ledgerId
!= null"
>
ledger_id
,
<if
test=
"
auxiliarySubjectDescription
!= null"
>
auxiliary_subject_description
,
</if>
<if
test=
"
debitAdvanceGene
!= null"
>
debit_advance_gene
,
<if
test=
"
profitCenter
!= null"
>
profit_center
,
</if>
<if
test=
"
creditPrepaidAccounts
!= null"
>
credit_prepaid_accounts
,
<if
test=
"
profitCenterDescription
!= null"
>
profit_center_description
,
</if>
<if
test=
"remark != null"
>
remark,
<if
test=
"product != null"
>
product,
</if>
<if
test=
"productDescription != null"
>
product_description,
</if>
<if
test=
"project != null"
>
project,
</if>
<if
test=
"projectDescription != null"
>
project_description,
</if>
<if
test=
"company != null"
>
company,
</if>
<if
test=
"companyDescription != null"
>
company_description,
</if>
<if
test=
"segment1 != null"
>
segment1,
</if>
<if
test=
"segment1Description != null"
>
segment1_description,
</if>
<if
test=
"segment2 != null"
>
segment2,
</if>
<if
test=
"segment2Description != null"
>
segment2_description,
</if>
<if
test=
"createdBy != null"
>
created_by,
</if>
...
...
@@ -425,33 +459,54 @@
<if
test=
"advanceWriteOff != null"
>
#{advanceWriteOff,jdbcType=DECIMAL},
</if>
<if
test=
"
checkOn
e != null"
>
#{
checkOn
e,jdbcType=VARCHAR},
<if
test=
"
subjectCod
e != null"
>
#{
subjectCod
e,jdbcType=VARCHAR},
</if>
<if
test=
"
reclassifyAmount
!= null"
>
#{
reclassifyAmount,jdbcType=DECIMAL
},
<if
test=
"
subjectDescription
!= null"
>
#{
subjectDescription,jdbcType=VARCHAR
},
</if>
<if
test=
"
exchangeRate
!= null"
>
#{
exchangeRate
,jdbcType=VARCHAR},
<if
test=
"
auxiliarySubject
!= null"
>
#{
auxiliarySubject
,jdbcType=VARCHAR},
</if>
<if
test=
"
ledgerId
!= null"
>
#{
ledgerId
,jdbcType=VARCHAR},
<if
test=
"
auxiliarySubjectDescription
!= null"
>
#{
auxiliarySubjectDescription
,jdbcType=VARCHAR},
</if>
<if
test=
"
debitAdvanceGene
!= null"
>
#{
debitAdvanceGene
,jdbcType=VARCHAR},
<if
test=
"
profitCenter
!= null"
>
#{
profitCenter
,jdbcType=VARCHAR},
</if>
<if
test=
"
creditPrepaidAccounts
!= null"
>
#{
creditPrepaidAccounts
,jdbcType=VARCHAR},
<if
test=
"
profitCenterDescription
!= null"
>
#{
profitCenterDescription
,jdbcType=VARCHAR},
</if>
<if
test=
"remark != null"
>
#{remark,jdbcType=VARCHAR},
<if
test=
"product != null"
>
#{product,jdbcType=VARCHAR},
</if>
<if
test=
"productDescription != null"
>
#{productDescription,jdbcType=VARCHAR},
</if>
<if
test=
"project != null"
>
#{project,jdbcType=VARCHAR},
</if>
<if
test=
"projectDescription != null"
>
#{projectDescription,jdbcType=VARCHAR},
</if>
<if
test=
"company != null"
>
#{company,jdbcType=VARCHAR},
</if>
<if
test=
"companyDescription != null"
>
#{companyDescription,jdbcType=VARCHAR},
</if>
<if
test=
"segment1 != null"
>
#{segment1,jdbcType=VARCHAR},
</if>
<if
test=
"segment1Description != null"
>
#{segment1Description,jdbcType=VARCHAR},
</if>
<if
test=
"segment2 != null"
>
#{segment2,jdbcType=VARCHAR},
</if>
<if
test=
"segment2Description != null"
>
#{segment2Description,jdbcType=VARCHAR},
</if>
<if
test=
"createdBy != null"
>
#{createdBy,jdbcType=VARCHAR},
</if>
...
...
@@ -567,33 +622,54 @@
<if
test=
"record.advanceWriteOff != null"
>
advance_write_off = #{record.advanceWriteOff,jdbcType=DECIMAL},
</if>
<if
test=
"record.
checkOn
e != null"
>
check_one = #{record.checkOn
e,jdbcType=VARCHAR},
<if
test=
"record.
subjectCod
e != null"
>
subject_code = #{record.subjectCod
e,jdbcType=VARCHAR},
</if>
<if
test=
"record.
reclassifyAmount
!= null"
>
reclassify_amount = #{record.reclassifyAmount,jdbcType=DECIMAL
},
<if
test=
"record.
subjectDescription
!= null"
>
subject_description = #{record.subjectDescription,jdbcType=VARCHAR
},
</if>
<if
test=
"record.
exchangeRate
!= null"
>
exchange_rate = #{record.exchangeRate
,jdbcType=VARCHAR},
<if
test=
"record.
auxiliarySubject
!= null"
>
auxiliary_subject = #{record.auxiliarySubject
,jdbcType=VARCHAR},
</if>
<if
test=
"record.
ledgerId
!= null"
>
ledger_id = #{record.ledgerId
,jdbcType=VARCHAR},
<if
test=
"record.
auxiliarySubjectDescription
!= null"
>
auxiliary_subject_description = #{record.auxiliarySubjectDescription
,jdbcType=VARCHAR},
</if>
<if
test=
"record.
debitAdvanceGene
!= null"
>
debit_advance_gene = #{record.debitAdvanceGene
,jdbcType=VARCHAR},
<if
test=
"record.
profitCenter
!= null"
>
profit_center = #{record.profitCenter
,jdbcType=VARCHAR},
</if>
<if
test=
"record.
creditPrepaidAccounts
!= null"
>
credit_prepaid_accounts = #{record.creditPrepaidAccounts
,jdbcType=VARCHAR},
<if
test=
"record.
profitCenterDescription
!= null"
>
profit_center_description = #{record.profitCenterDescription
,jdbcType=VARCHAR},
</if>
<if
test=
"record.remark != null"
>
remark = #{record.remark,jdbcType=VARCHAR},
<if
test=
"record.product != null"
>
product = #{record.product,jdbcType=VARCHAR},
</if>
<if
test=
"record.productDescription != null"
>
product_description = #{record.productDescription,jdbcType=VARCHAR},
</if>
<if
test=
"record.project != null"
>
project = #{record.project,jdbcType=VARCHAR},
</if>
<if
test=
"record.projectDescription != null"
>
project_description = #{record.projectDescription,jdbcType=VARCHAR},
</if>
<if
test=
"record.company != null"
>
company = #{record.company,jdbcType=VARCHAR},
</if>
<if
test=
"record.companyDescription != null"
>
company_description = #{record.companyDescription,jdbcType=VARCHAR},
</if>
<if
test=
"record.segment1 != null"
>
segment1 = #{record.segment1,jdbcType=VARCHAR},
</if>
<if
test=
"record.segment1Description != null"
>
segment1_description = #{record.segment1Description,jdbcType=VARCHAR},
</if>
<if
test=
"record.segment2 != null"
>
segment2 = #{record.segment2,jdbcType=VARCHAR},
</if>
<if
test=
"record.segment2Description != null"
>
segment2_description = #{record.segment2Description,jdbcType=VARCHAR},
</if>
<if
test=
"record.createdBy != null"
>
created_by = #{record.createdBy,jdbcType=VARCHAR},
</if>
...
...
@@ -645,15 +721,22 @@
usable_invoice_amount = #{record.usableInvoiceAmount,jdbcType=DECIMAL},
usable_balance = #{record.usableBalance,jdbcType=DECIMAL},
advance_write_off = #{record.advanceWriteOff,jdbcType=DECIMAL},
check_one = #{record.checkOne,jdbcType=VARCHAR},
reclassify_amount = #{record.reclassifyAmount,jdbcType=DECIMAL},
exchange_rate = #{record.exchangeRate,jdbcType=VARCHAR},
ledger_id = #{record.ledgerId,jdbcType=VARCHAR},
debit_advance_gene = #{record.debitAdvanceGene,jdbcType=VARCHAR},
credit_prepaid_accounts = #{record.creditPrepaidAccounts,jdbcType=VARCHAR},
remark = #{record.remark,jdbcType=VARCHAR},
subject_code = #{record.subjectCode,jdbcType=VARCHAR},
subject_description = #{record.subjectDescription,jdbcType=VARCHAR},
auxiliary_subject = #{record.auxiliarySubject,jdbcType=VARCHAR},
auxiliary_subject_description = #{record.auxiliarySubjectDescription,jdbcType=VARCHAR},
profit_center = #{record.profitCenter,jdbcType=VARCHAR},
profit_center_description = #{record.profitCenterDescription,jdbcType=VARCHAR},
product = #{record.product,jdbcType=VARCHAR},
product_description = #{record.productDescription,jdbcType=VARCHAR},
project = #{record.project,jdbcType=VARCHAR},
project_description = #{record.projectDescription,jdbcType=VARCHAR},
company = #{record.company,jdbcType=VARCHAR},
company_description = #{record.companyDescription,jdbcType=VARCHAR},
segment1 = #{record.segment1,jdbcType=VARCHAR},
segment1_description = #{record.segment1Description,jdbcType=VARCHAR},
segment2 = #{record.segment2,jdbcType=VARCHAR},
segment2_description = #{record.segment2Description,jdbcType=VARCHAR},
created_by = #{record.createdBy,jdbcType=VARCHAR},
updated_by = #{record.updatedBy,jdbcType=VARCHAR},
create_time = #{record.createTime,jdbcType=TIMESTAMP},
...
...
@@ -750,33 +833,54 @@
<if
test=
"advanceWriteOff != null"
>
advance_write_off = #{advanceWriteOff,jdbcType=DECIMAL},
</if>
<if
test=
"
checkOn
e != null"
>
check_one = #{checkOn
e,jdbcType=VARCHAR},
<if
test=
"
subjectCod
e != null"
>
subject_code = #{subjectCod
e,jdbcType=VARCHAR},
</if>
<if
test=
"
reclassifyAmount
!= null"
>
reclassify_amount = #{reclassifyAmount,jdbcType=DECIMAL
},
<if
test=
"
subjectDescription
!= null"
>
subject_description = #{subjectDescription,jdbcType=VARCHAR
},
</if>
<if
test=
"
exchangeRate
!= null"
>
exchange_rate = #{exchangeRate
,jdbcType=VARCHAR},
<if
test=
"
auxiliarySubject
!= null"
>
auxiliary_subject = #{auxiliarySubject
,jdbcType=VARCHAR},
</if>
<if
test=
"
ledgerId
!= null"
>
ledger_id = #{ledgerId
,jdbcType=VARCHAR},
<if
test=
"
auxiliarySubjectDescription
!= null"
>
auxiliary_subject_description = #{auxiliarySubjectDescription
,jdbcType=VARCHAR},
</if>
<if
test=
"
debitAdvanceGene
!= null"
>
debit_advance_gene = #{debitAdvanceGene
,jdbcType=VARCHAR},
<if
test=
"
profitCenter
!= null"
>
profit_center = #{profitCenter
,jdbcType=VARCHAR},
</if>
<if
test=
"
creditPrepaidAccounts
!= null"
>
credit_prepaid_accounts = #{creditPrepaidAccounts
,jdbcType=VARCHAR},
<if
test=
"
profitCenterDescription
!= null"
>
profit_center_description = #{profitCenterDescription
,jdbcType=VARCHAR},
</if>
<if
test=
"remark != null"
>
remark = #{remark,jdbcType=VARCHAR},
<if
test=
"product != null"
>
product = #{product,jdbcType=VARCHAR},
</if>
<if
test=
"productDescription != null"
>
product_description = #{productDescription,jdbcType=VARCHAR},
</if>
<if
test=
"project != null"
>
project = #{project,jdbcType=VARCHAR},
</if>
<if
test=
"projectDescription != null"
>
project_description = #{projectDescription,jdbcType=VARCHAR},
</if>
<if
test=
"company != null"
>
company = #{company,jdbcType=VARCHAR},
</if>
<if
test=
"companyDescription != null"
>
company_description = #{companyDescription,jdbcType=VARCHAR},
</if>
<if
test=
"segment1 != null"
>
segment1 = #{segment1,jdbcType=VARCHAR},
</if>
<if
test=
"segment1Description != null"
>
segment1_description = #{segment1Description,jdbcType=VARCHAR},
</if>
<if
test=
"segment2 != null"
>
segment2 = #{segment2,jdbcType=VARCHAR},
</if>
<if
test=
"segment2Description != null"
>
segment2_description = #{segment2Description,jdbcType=VARCHAR},
</if>
<if
test=
"createdBy != null"
>
created_by = #{createdBy,jdbcType=VARCHAR},
</if>
...
...
@@ -825,15 +929,22 @@
usable_invoice_amount = #{usableInvoiceAmount,jdbcType=DECIMAL},
usable_balance = #{usableBalance,jdbcType=DECIMAL},
advance_write_off = #{advanceWriteOff,jdbcType=DECIMAL},
check_one = #{checkOne,jdbcType=VARCHAR},
reclassify_amount = #{reclassifyAmount,jdbcType=DECIMAL},
exchange_rate = #{exchangeRate,jdbcType=VARCHAR},
ledger_id = #{ledgerId,jdbcType=VARCHAR},
debit_advance_gene = #{debitAdvanceGene,jdbcType=VARCHAR},
credit_prepaid_accounts = #{creditPrepaidAccounts,jdbcType=VARCHAR},
remark = #{remark,jdbcType=VARCHAR},
subject_code = #{subjectCode,jdbcType=VARCHAR},
subject_description = #{subjectDescription,jdbcType=VARCHAR},
auxiliary_subject = #{auxiliarySubject,jdbcType=VARCHAR},
auxiliary_subject_description = #{auxiliarySubjectDescription,jdbcType=VARCHAR},
profit_center = #{profitCenter,jdbcType=VARCHAR},
profit_center_description = #{profitCenterDescription,jdbcType=VARCHAR},
product = #{product,jdbcType=VARCHAR},
product_description = #{productDescription,jdbcType=VARCHAR},
project = #{project,jdbcType=VARCHAR},
project_description = #{projectDescription,jdbcType=VARCHAR},
company = #{company,jdbcType=VARCHAR},
company_description = #{companyDescription,jdbcType=VARCHAR},
segment1 = #{segment1,jdbcType=VARCHAR},
segment1_description = #{segment1Description,jdbcType=VARCHAR},
segment2 = #{segment2,jdbcType=VARCHAR},
segment2_description = #{segment2Description,jdbcType=VARCHAR},
created_by = #{createdBy,jdbcType=VARCHAR},
updated_by = #{updatedBy,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=TIMESTAMP},
...
...
atms-dao/src/main/resources/pwc/taxtech/atms/dao/extends/CitJournalAdjustExtendsMapper.xml
View file @
14fafc39
...
...
@@ -344,7 +344,11 @@
id, organization_id, project_id, period, date, source, ledger_id, ledger_name, currency_code,
status, header_id, line_num, approval_status, posted_status, account_period, accounting_date,
journal_source, category, name, voucher_num, description, org_code, subject_code,
org_name, subject_name, accounted_dr, accounted_cr,
org_name, segment2_name, subject_name, segment4_name, segment5_name, segment6_name, segment7_name, segment8_name,
segment9_name, segment10_name, journal_currency_code, sob_currency_code, accounted_dr, accounted_cr,
entered_dr, entered_cr, cf_item, attribute1, attribute2, attribute3, attribute4, attribute5,
attribute6, attribute7, attribute8, attribute9, attribute10, attribute11, attribute12, attribute13, attribute14, attribute15,
attribute16,
created_by, created_date, late_updated_by,
late_updated_date, create_time, update_time,is_select
from cit_journal_entry_adjust where project_id = #{projectId,jdbcType=VARCHAR}
...
...
@@ -360,13 +364,22 @@
<if
test=
"subjectName != null"
>
and subject_name = #{subjectName,jdbcType=VARCHAR}
</if>
<if
test=
"periodStart!=null"
>
AND account_period
>
= #{periodStart,jdbcType=INTEGER}
</if>
<if
test=
"periodEnd!=null"
>
AND account_period
<
= #{periodEnd,jdbcType=INTEGER}
</if>
UNION ALL
select
id, organization_id, project_id, tms_period as period ,date,source, ledger_id, ledger_name, currency_code,
status, header_id, line_num, approval_status, posted_status, period as account_period, accounting_date,
journal_source, category, name, voucher_num, description, segment1 as org_code, segment3 as subject_code,
segment1_name as org_name, segment3_name as subject_name, accounted_dr, accounted_cr,
created_by, created_date, late_updated_by, late_updated_date, create_time, update_time, is_select
segment1_name as org_name, segment2_name, segment3_name as subject_name, segment4_name, segment5_name, segment6_name,
segment7_name, segment8_name, segment9_name, segment10_name, journal_currency_code, sob_currency_code,
accounted_dr, accounted_cr, entered_dr, entered_cr, cf_item, attribute1, attribute2, attribute3, attribute4, attribute5,
attribute6, attribute7, attribute8, attribute9, attribute10, attribute11, attribute12, attribute13, attribute14, attribute15,
attribute16, created_by, created_date, late_updated_by, late_updated_date, create_time, update_time, is_select
from journal_entry where project_id = #{projectId,jdbcType=VARCHAR}
<if
test=
"orgCode != null"
>
and segment1 = #{orgCode,jdbcType=VARCHAR}
...
...
@@ -380,6 +393,12 @@
<if
test=
"subjectName != null"
>
and segment3_name = #{subjectName,jdbcType=VARCHAR}
</if>
<if
test=
"periodStart!=null"
>
AND period
>
= #{periodStart,jdbcType=INTEGER}
</if>
<if
test=
"periodEnd!=null"
>
AND period
<
= #{periodEnd,jdbcType=INTEGER}
</if>
</select>
</mapper>
\ No newline at end of file
atms-dao/src/main/resources/pwc/taxtech/atms/dao/extends/CitSalaryAdvanceExtendsMapper.xml
View file @
14fafc39
...
...
@@ -139,41 +139,69 @@
<otherwise>
0,
</otherwise>
</choose>
<choose>
<when
test=
"item.
checkOne != null"
>
#{item.checkOn
e,jdbcType=VARCHAR},
</when>
<when
test=
"item.
subjectCode != null"
>
#{item.subjectCod
e,jdbcType=VARCHAR},
</when>
<otherwise>
'',
</otherwise>
</choose>
<choose>
<when
test=
"item.reclassifyAmount != null"
>
#{item.reclassifyAmount,jdbcType=DECIMAL},
</when>
<otherwise>
0,
</otherwise>
<when
test=
"item.subjectDescription != null"
>
#{item.subjectDescription,jdbcType=VARCHAR},
</when>
<otherwise>
'',
</otherwise>
</choose>
<choose>
<when
test=
"item.auxiliarySubject != null"
>
#{item.auxiliarySubject,jdbcType=VARCHAR},
</when>
<otherwise>
'',
</otherwise>
</choose>
<choose>
<when
test=
"item.auxiliarySubjectDescription != null"
>
#{item.auxiliarySubjectDescription,jdbcType=VARCHAR},
</when>
<otherwise>
'',
</otherwise>
</choose>
<choose>
<when
test=
"item.profitCenter != null"
>
#{item.profitCenter,jdbcType=VARCHAR},
</when>
<otherwise>
'',
</otherwise>
</choose>
<choose>
<when
test=
"item.
exchangeRate != null"
>
#{item.exchangeRate
,jdbcType=VARCHAR},
</when>
<when
test=
"item.
profitCenterDescription != null"
>
#{item.profitCenterDescription
,jdbcType=VARCHAR},
</when>
<otherwise>
'',
</otherwise>
</choose>
<choose>
<when
test=
"item.
ledgerId != null"
>
#{item.ledgerId
,jdbcType=VARCHAR},
</when>
<when
test=
"item.
product != null"
>
#{item.product
,jdbcType=VARCHAR},
</when>
<otherwise>
'',
</otherwise>
</choose>
<choose>
<when
test=
"item.
debitAdvanceGene != null"
>
#{item.debitAdvanceGene
,jdbcType=VARCHAR},
</when>
<when
test=
"item.
productDescription != null"
>
#{item.productDescription
,jdbcType=VARCHAR},
</when>
<otherwise>
'',
</otherwise>
</choose>
<choose>
<when
test=
"item.
creditPrepaidAccounts != null"
>
#{item.creditPrepaidAccounts
,jdbcType=VARCHAR},
</when>
<when
test=
"item.
project != null"
>
#{item.project
,jdbcType=VARCHAR},
</when>
<otherwise>
'',
</otherwise>
</choose>
<choose>
<when
test=
"item.remark != null"
>
#{item.remark,jdbcType=VARCHAR},
</when>
<when
test=
"item.projectDescription != null"
>
#{item.projectDescription,jdbcType=VARCHAR},
</when>
<otherwise>
'',
</otherwise>
</choose>
<choose>
<when
test=
"item.company != null"
>
#{item.company,jdbcType=VARCHAR},
</when>
<otherwise>
'',
</otherwise>
</choose>
<choose>
<when
test=
"item.companyDescription != null"
>
#{item.companyDescription,jdbcType=VARCHAR},
</when>
<otherwise>
'',
</otherwise>
</choose>
<choose>
<when
test=
"item.segment1 != null"
>
#{item.segment1,jdbcType=VARCHAR},
</when>
<otherwise>
'',
</otherwise>
</choose>
<choose>
<when
test=
"item.segment1Description != null"
>
#{item.segment1Description,jdbcType=VARCHAR},
</when>
<otherwise>
'',
</otherwise>
</choose>
<choose>
<when
test=
"item.segment2 != null"
>
#{item.segment2,jdbcType=VARCHAR},
</when>
<otherwise>
'',
</otherwise>
</choose>
<choose>
<when
test=
"item.segment2Description != null"
>
#{item.segment2Description,jdbcType=VARCHAR},
</when>
<otherwise>
'',
</otherwise>
</choose>
<choose>
<when
test=
"item.createdBy != null"
>
#{item.createdBy,jdbcType=VARCHAR},
</when>
<otherwise>
'',
</otherwise>
...
...
atms-web/src/main/webapp/app-resources/i18n/en-us/cit.json
View file @
14fafc39
...
...
@@ -1150,5 +1150,6 @@
"DistributionAmount"
:
"Distribution Amount"
,
"Subtotal"
:
"Total"
,
"AssetEamMapping"
:
"Asset Eam Mapping"
,
"ItemData"
:
"Item Data"
"ItemData"
:
"Item Data"
,
"GenerateJournalMergeAndTB"
:
"Handle Journal"
}
\ No newline at end of file
atms-web/src/main/webapp/app-resources/i18n/zh-CN/cit.json
View file @
14fafc39
...
...
@@ -1203,7 +1203,8 @@
"DistributionRatio"
:
"分配比例"
,
"DistributionAmount"
:
"分配税额"
,
"AssetEamMapping"
:
"固资损失计算"
,
"ItemData"
:
"条数据"
"ItemData"
:
"条数据"
,
"GenerateJournalMergeAndTB"
:
"处理日记账"
...
...
atms-web/src/main/webapp/app/cit/import/cit-import-asset-list/cit-import-asset-list-search.html
View file @
14fafc39
<div
class=
"popover"
>
<div
class=
"popover-import-asset"
>
<div
class=
"arrow"
></div>
<div
class=
"popover-content"
>
<div>
<table
class=
" table table-responsive"
>
...
...
atms-web/src/main/webapp/app/cit/import/cit-import-asset-list/cit-import-asset-list.ctrl.js
View file @
14fafc39
...
...
@@ -489,7 +489,7 @@
{
caption
:
$translate
.
instant
(
'ResidualRate'
),
dataField
:
"residualRate"
,
format
:
{
type
:
'percent'
,
precision
:
2
},
width
:
80
,
allowEditing
:
false
},
{
caption
:
$translate
.
instant
(
'PerMonthDepreciationAmount'
),
dataField
:
"accountMonthDepreciationAmount"
,
format
:
{
type
:
'fixedPoint'
,
precision
:
2
},
width
:
100
,
allowEditing
:
false
},
{
caption
:
$translate
.
instant
(
'YearDepreciationAmount'
),
dataField
:
"accountYearDepreciationAmount"
,
format
:
{
type
:
'fixedPoint'
,
precision
:
2
},
width
:
100
,
allowEditing
:
false
},
{
caption
:
$translate
.
instant
(
'AccountTotalepreciationAmount'
),
dataField
:
"accountTotalepreciationAmount"
,
format
:
{
type
:
'fixedPoint'
,
precision
:
2
},
width
:
100
,
allowEditing
:
false
},
{
caption
:
$translate
.
instant
(
'AccountTotalepreciationAmount'
),
dataField
:
"accountTotal
D
epreciationAmount"
,
format
:
{
type
:
'fixedPoint'
,
precision
:
2
},
width
:
100
,
allowEditing
:
false
},
{
caption
:
$translate
.
instant
(
'YearEndValue'
),
dataField
:
"yearEndValue"
,
format
:
{
type
:
'fixedPoint'
,
precision
:
2
},
width
:
100
,
allowEditing
:
false
},
]
},
...
...
atms-web/src/main/webapp/app/cit/import/cit-import-asset-list/cit-import-asset-list.less
View file @
14fafc39
@import "~/app-resources/less/theme.less";
.cit-import-asset-list {
padding-left: 20px;
height: 96%;
.sweet-alert {
background-color: #eeeeee;
padding-left: 20px;
height: 96%;
.sweet-alert {
background-color: #eeeeee;
}
.nav-wrapper {
padding-bottom: 10px;
border-bottom: 1px solid #DBD8D3;
.nav-header {
height: 54px;
line-height: 54px;
font-family: "Microsoft YaHei Bold", "Microsoft YaHei Regular", "Microsoft YaHei";
font-weight: 700;
font-style: normal;
font-size: 15px;
color: #333;
}
.nav-wrapper {
padding-bottom: 10px;
border-bottom: 1px solid #DBD8D3;
.nav-header {
height: 54px;
line-height: 54px;
font-family: "Microsoft YaHei Bold", "Microsoft YaHei Regular", "Microsoft YaHei";
font-weight: 700;
font-style: normal;
font-size: 15px;
color: #333;
}
.nav-tab {
/*display: inline-block;*/
span {
display: inline-block;
height: 34px;
width: 80px;
text-align: center;
line-height: 34px;
padding: 0 10px;
background-color: #B90808;
color: #FFF;
font-family: "Microsoft YaHei";
font-weight: 400;
font-style: normal;
font-size: 14px;
cursor: pointer;
}
.active {
background-color: #F91000;
}
.nav-tab {
/*display: inline-block;*/
}
}
.alert-warning {
background-color: #FDE2DE;
span {
display: inline-block;
height: 34px;
width: 80px;
text-align: center;
line-height: 34px;
padding: 0 10px;
background-color: #B90808;
color: #FFF;
font-family: "Microsoft YaHei";
font-weight: 400;
font-style: normal;
font-size: 14px;
cursor: pointer;
}
}
.alert {
color: #CF2D1B;
font-weight: bold;
display: inline-block;
padding: 5px;
float: left;
margin: -45px 0 0 350px;
.active {
background-color: #F91000;
}
i {
font-size: 20px;
vertical-align: middle;
margin-right: 5px;
}
}
}
.dropdown-common() {
display: inline-block;
.alert-warning {
background-color: #FDE2DE;
cursor: pointer;
}
.select-button {
background-color: #F5F5F5;
padding: 6px 0;
width: 110px;
}
.alert {
color: #CF2D1B;
font-weight: bold;
display: inline-block;
padding: 5px;
float: left;
margin: -45px 0 0 350px;
i {
font-size: 20px;
vertical-align: middle;
margin-right: 5px;
}
}
.caret {
margin-top: 8px;
}
.dropdown-common() {
display: inline-block;
.dropdown-menu {
min-width: 140px;
max-height: 400px;
overflow-y: scroll;
li {
text-align: left;
min-height: 0px;
height: 30px;
color: #000;
font-weight: normal;
&:hover {
background-color: #F91000;
color: #FFF;
cursor: pointer;
}
i {
float: right;
font-size: 15px;
}
}
}
.select-button {
background-color: #F5F5F5;
padding: 6px 0;
width: 110px;
}
#tab_total {
display: block;
height: calc(~'100% - 80px');
position: relative;
.operation-wrapper {
margin: -40px 15px 0 0;
.caret {
margin-top: 8px;
}
span {
cursor: pointer;
}
.dropdown-menu {
min-width: 140px;
max-height: 400px;
overflow-y: scroll;
li {
text-align: left;
min-height: 0px;
height: 30px;
color: #000;
font-weight: normal;
&:hover {
background-color: #F91000;
color: #FFF;
cursor: pointer;
}
.import-wrapper {
margin-top: 10px;
span {
margin-left: 10px;
color: #333;
font-family: "Microsoft YaHei";
font-style: normal;
font-size: 14px;
font-weight: bold;
}
.dropdown {
.dropdown-common();
}
input {
width: 50px;
outline: none;
border-radius: 3px;
border: 1px solid #3c3a36;
padding: 2px;
text-align: center;
}
> button:last-child {
float: right;
margin-right: 20px;
}
.btn-wrapper {
border-radius: 5px;
background-color: #e0301e;
color: #FFF;
display: inline-block;
float: right;
margin-right: 10px;
.btn-vat-primary {
min-width: 80px;
}
}
.import-info-wrapper {
display: inline-block;
}
i {
float: right;
font-size: 15px;
}
}
}
}
.dt-init-wrapper {
margin: 10px 0;
max-width: 99%;
height: calc(100% - 200px);
position: relative;
z-index: 1;
.dropdown {
.dropdown-common();
i {
color: #F85550;
}
}
.total-Wrapper {
width: 99%;
margin-left: 0px;
font-size: 13px;
font-family: 'Microsoft YaHei';
padding-bottom: 5px;
.total_span {
color: #B4122A !important;
background-color: #ddd !important;
font-size: 12px !important;
font-weight: bold !important;
border-radius: 10px !important;
padding-left: 8px !important;
padding-right: 8px !important;
}
}
/*.balance-ouput-grid-wrapper {
height: calc(~'100% - -10px');
overflow: hidden;
position: absolute;
top: 0;
bottom: 150px;
left: 0;
right: 0;
background-color: #FFF;
}*/
}
#tab_total {
display: block;
height: calc(~'100% - 80px');
position: relative;
.dt-import-wrapper {
margin: 10px 0;
max-width: 99%;
overflow: auto;
height: calc(~"100% - 70px");
.operation-wrapper {
margin: -40px 15px 0 0;
.dropdown {
.dropdown-common();
span {
cursor: pointer;
}
}
i {
color: #F85550;
}
.import-wrapper {
margin-top: 10px;
button {
color: #333;
}
}
}
span {
margin-left: 10px;
color: #333;
font-family: "Microsoft YaHei";
font-style: normal;
font-size: 14px;
font-weight: bold;
}
.error-info-wrapper {
position: absolute;
height: 150px;
bottom: 0;
left: 0;
right: 0;
overflow: hidden;
background-color: #FFF;
margin-left: -39px;
z-index: 2;
}
.dropdown {
.dropdown-common();
}
#content-resizer {
width: 110%;
position: absolute;
height: 4px;
bottom: 150px;
left: 0;
right: 0;
background-color: red;
cursor: n-resize;
margin-left: -39px;
#topIcon {
cursor: pointer;
margin-top: -19px;
width: 38px;
margin-left: 46%;
z-index: 999;
bottom: -200px;
text-align: center;
display: block !important;
}
}
}
input {
width: 50px;
outline: none;
border-radius: 3px;
border: 1px solid #3c3a36;
padding: 2px;
text-align: center;
}
#tab_Assets {
display: block;
height: calc(~'100% - 80px');
position: relative;
.total-Wrapper {
width: 72%;
margin-left: 0px;
font-size: 13px;
font-family: 'Microsoft YaHei';
padding-top: 5px;
position: absolute;
z-index: 9;
.total_span {
color: #B4122A !important;
background-color: #ddd !important;
font-size: 12px !important;
font-weight: bold !important;
border-radius: 10px !important;
padding-left: 8px !important;
padding-right: 8px !important;
}
}
> button:last-child {
float: right;
margin-right: 20px;
}
.dt-asset-result {
margin: 0px 0;
max-width: 99%;
height: calc(~'100% - 20px');
position: relative;
margin-top: 10px;
.herder-center {
text-align: center !important;
vertical-align: middle !important;
/*font-size:13px !important;*/
}
}
}
.btn-wrapper {
border-radius: 5px;
background-color: #e0301e;
color: #FFF;
display: inline-block;
float: right;
margin-right: 10px;
.error-list-modal {
.modal-title {
color: #FF0000;
.btn-vat-primary {
min-width: 80px;
}
}
.modal-body {
max-height: 300px;
overflow-y: auto;
.import-info-wrapper {
display: inline-block;
}
}
table {
border: 1px solid #CCC;
.dt-init-wrapper {
margin: 10px 0;
max-width: 99%;
height: calc(100% - 200px);
position: relative;
z-index: 1;
thead tr th {
height: 30px;
border: 1px solid #CCC;
}
.dropdown {
.dropdown-common();
tbody tr td {
height: 25px;
border: 1px solid #CCC;
}
}
i {
color: #F85550;
}
.modal-footer {
text-align: center;
}
.total-Wrapper {
width: 99%;
margin-left: 0px;
font-size: 13px;
font-family: 'Microsoft YaHei';
padding-bottom: 5px;
.total_span {
color: #B4122A !important;
background-color: #ddd !important;
font-size: 12px !important;
font-weight: bold !important;
border-radius: 10px !important;
padding-left: 8px !important;
padding-right: 8px !important;
}
}
/*.balance-ouput-grid-wrapper {
height: calc(~'100% - -10px');
overflow: hidden;
position: absolute;
top: 0;
bottom: 150px;
left: 0;
right: 0;
background-color: #FFF;
}*/
}
.page-form-group {
float: right;
margin-top: 10px;
.dt-import-wrapper {
margin: 10px 0;
max-width: 99%;
overflow: auto;
height: calc(~"100% - 70px");
.page-size {
margin: 0;
.dropdown {
.dropdown-common();
i {
color: #F85550;
}
.paginati
on {
margin: 0
;
butt
on {
color: #333
;
}
}
}
#gridInitData {
border-radius: 3px;
border: 1px solid #d4d4d4;
}
}
.error-info-wrapper {
position: absolute;
height: 150px;
bottom: 0;
left: 0;
right: 0;
overflow: hidden;
background-color: #FFF;
margin-left: -39px;
z-index: 2;
}
.set-asset-list-modal .modal-dialog {
height: 500px;
width: 800px;
#content-resizer {
width: 110%;
position: absolute;
height: 4px;
bottom: 150px;
left: 0;
right: 0;
background-color: red;
cursor: n-resize;
margin-left: -39px;
#topIcon {
cursor: pointer;
margin-top: -19px;
width: 38px;
margin-left: 46%;
z-index: 999;
bottom: -200px;
text-align: center;
display: block !important;
}
}
}
#tab_Assets {
display: block;
height: calc(~'100% - 80px');
position: relative;
.total-Wrapper {
width: 72%;
margin-left: 0px;
font-size: 13px;
font-family: 'Microsoft YaHei';
padding-top: 5px;
position: absolute;
z-index: 9;
.total_span {
color: #B4122A !important;
background-color: #ddd !important;
font-size: 12px !important;
font-weight: bold !important;
border-radius: 10px !important;
padding-left: 8px !important;
padding-right: 8px !important;
}
}
.modal-content {
height: 100%;
width: 100%;
.dt-asset-result {
margin: 0px 0;
max-width: 99%;
height: calc(~'100% - 20px');
position: relative;
margin-top: 10px;
.herder-center {
text-align: center !important;
vertical-align: middle !important;
/*font-size:13px !important;*/
}
}
}
.error-list-modal {
.modal-title {
color: #333;
font-size: 16px;
font-weight: bold;
color: #FF0000;
}
.modal-body {
height: 76%;
max-width: 760px !important;
margin-left: 22px;
overflow-y: auto;
max-height: 300px;
overflow-y: auto;
table {
border: 1px solid #CCC;
.herder-center {
text-align: center !important;
thead tr th {
height: 30px;
border: 1px solid #CCC;
}
.column-color {
color: red !important;
tbody tr td {
height: 25px;
border: 1px solid #CCC;
}
}
}
.modal-footer {
text-align:left;
text-align: center;
}
}
.page-form-group {
float: right;
margin-top: 10px;
.page-size {
margin: 0;
}
.pagination {
margin: 0;
}
}
#gridInitData {
border-radius: 3px;
border: 1px solid #d4d4d4;
}
}
.set-asset-list-modal .modal-dialog {
height: 500px;
width: 800px;
.modal-content {
height: 100%;
width: 100%;
}
.modal-title {
color: #333;
font-size: 16px;
font-weight: bold;
}
.modal-body {
height: 76%;
max-width: 760px !important;
margin-left: 22px;
overflow-y: auto;
.herder-center {
text-align: center !important;
}
.column-color {
color: red !important;
}
}
.modal-footer {
text-align: left;
}
}
.option {
margin-top: 10px;
margin-bottom: 10px;
margin-top: 10px;
margin-bottom: 10px;
}
.option > span {
margin-right: 10px;
margin-right: 10px;
}
.option > .dx-selectbox {
display: inline-block;
vertical-align: middle;
display: inline-block;
vertical-align: middle;
}
.filter-button {
width: 30px;
//margin-top: 16px;
width: 30px;
//margin-top: 16px;
}
.popover {
min-width: 370px;
.arrow {
left: 0px !important;
}
}
.popover-content {
.popover-import-asset {
position: absolute;
top: 0;
left: 0;
z-index: 1060;
display: none;
max-width: 276px;
padding: 1px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-style: normal;
font-weight: normal;
letter-spacing: normal;
line-break: auto;
line-height: 1.42857143;
text-align: left;
text-align: start;
text-decoration: none;
text-shadow: none;
text-transform: none;
white-space: normal;
word-break: normal;
word-spacing: normal;
word-wrap: normal;
font-size: 14px;
background-color: #ffffff;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: 1px solid #cccccc;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 6px;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
min-width: 370px;
left: 60%;
.arrow {
left: 60% !important;
}
.popover-content {
td {
text-align: right;
padding: 6px;
vertical-align: middle;
text-align: right;
padding: 6px;
vertical-align: middle;
span {
text-align: right;
float: right;
}
span {
text-align: right;
float: right;
}
}
.form-control {
display: inline-block;
&:focus {
border-color: transparent;
-webkit-box-shadow: none;
box-shadow: none;
border: 1px solid #ccc;
}
display: inline-block;
&:focus {
border-color: transparent;
-webkit-box-shadow: none;
box-shadow: none;
border: 1px solid #ccc;
}
}
.input-width-small {
width: 100px;
width: 100px;
}
.input-width-middle {
width: 217px;
width: 217px;
}
}
}
.popover-import-asset.top {
margin-top: -10px;
}
.popover-import-asset.right {
margin-left: 10px;
}
.popover-import-asset.bottom {
margin-top: 10px;
}
.popover-import-asset.left {
margin-left: -10px;
}
.popover-title {
margin: 0;
padding: 8px 14px;
font-size: 14px;
background-color: #f7f7f7;
border-bottom: 1px solid #ebebeb;
border-radius: 5px 5px 0 0;
}
.popover-content {
padding: 9px 14px;
}
.popover-import-asset > .arrow,
.popover-import-asset > .arrow:after {
position: absolute;
display: block;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}
.popover-import-asset > .arrow {
border-width: 11px;
}
.popover-import-asset > .arrow:after {
border-width: 10px;
content: "";
}
.popover-import-asset.top > .arrow {
left: 50%;
margin-left: -11px;
border-bottom-width: 0;
border-top-color: #999999;
border-top-color: rgba(0, 0, 0, 0.25);
bottom: -11px;
}
.popover-import-asset.top > .arrow:after {
content: " ";
bottom: 1px;
margin-left: -10px;
border-bottom-width: 0;
border-top-color: #ffffff;
}
.popover-import-asset.right > .arrow {
top: 50%;
left: -11px;
margin-top: -11px;
border-left-width: 0;
border-right-color: #999999;
border-right-color: rgba(0, 0, 0, 0.25);
}
.popover-import-asset.right > .arrow:after {
content: " ";
left: 1px;
bottom: -10px;
border-left-width: 0;
border-right-color: #ffffff;
}
.popover-import-asset.bottom > .arrow {
left: 50%;
margin-left: -11px;
border-top-width: 0;
border-bottom-color: #999999;
border-bottom-color: rgba(0, 0, 0, 0.25);
top: -11px;
}
.popover-import-asset.bottom > .arrow:after {
content: " ";
top: 1px;
margin-left: -10px;
border-top-width: 0;
border-bottom-color: #ffffff;
}
.popover-import-asset.left > .arrow {
top: 50%;
right: -11px;
margin-top: -11px;
border-right-width: 0;
border-left-color: #999999;
border-left-color: rgba(0, 0, 0, 0.25);
}
.popover-import-asset.left > .arrow:after {
content: " ";
right: 1px;
border-right-width: 0;
border-left-color: #ffffff;
bottom: -10px;
}
atms-web/src/main/webapp/app/cit/preview/cit-preview-balanceSheet/cit-preview-balanceSheet.less
View file @
14fafc39
...
...
@@ -52,7 +52,6 @@
.popover {
min-width: 370px;
left: 119px !important;
.arrow {
left: 5% !important;
...
...
atms-web/src/main/webapp/app/cit/preview/cit-preview-journal-merge/cit-preview-journal-merge.ctrl.js
View file @
14fafc39
...
...
@@ -5,8 +5,8 @@
$scope
.
startDate
=
new
Date
(
vatSessionService
.
project
.
year
,
0
,
1
);
$scope
.
endDate
=
new
Date
(
vatSessionService
.
project
.
year
,
11
,
31
);
$scope
.
dateFormat
=
$translate
.
instant
(
'dateFormat4YearMonthDay'
);
$scope
.
startMonth
=
vatSessionService
.
month
;
$scope
.
endMonth
=
vatSessionService
.
month
;
$scope
.
startMonth
=
1
;
$scope
.
endMonth
=
12
;
$scope
.
totalMoneyAmount
=
0
;
$scope
.
totalTaxAmount
=
0
;
...
...
@@ -14,8 +14,8 @@
// var minDate = moment().startOf('month').subtract(0, 'months');
var
maxDate
=
[
12
,
vatSessionService
.
project
.
year
];
var
setDate
=
[
[
vatSessionService
.
month
,
vatSessionService
.
project
.
year
],
[
vatSessionService
.
month
,
vatSessionService
.
project
.
year
]];
[
1
,
vatSessionService
.
project
.
year
],
[
12
,
vatSessionService
.
project
.
year
]];
$scope
.
monthList
=
[
$translate
.
instant
(
'Month01'
),
$translate
.
instant
(
'Month02'
),
...
...
@@ -258,6 +258,18 @@
});
};
var
handleJournal
=
function
()
{
citPreviewService
.
initExportJMData
(
$scope
.
queryParams
).
success
(
function
(
data
,
status
,
headers
)
{
if
(
status
===
204
){
SweetAlert
.
warning
(
"没有数据可以下载"
);
return
;
}
vatExportService
.
exportToExcel
(
data
,
status
,
headers
,
'日记账信息.xlsx'
);
}).
error
(
function
()
{
SweetAlert
.
error
(
$translate
.
instant
(
'PleaseContactAdministrator'
));
});
};
(
function
initialize
()
{
$log
.
debug
(
'VatPreviewInputInvoiceController.ctor()...'
);
...
...
@@ -298,7 +310,7 @@
columnDefs
:
[
{
name
:
$translate
.
instant
(
'ApprovalStatus'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.approvalStatus}}<span></div>'
},
{
name
:
$translate
.
instant
(
'Posting'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.postedStatus}}<span></div>'
},
{
name
:
$translate
.
instant
(
'AccountingPeriod'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span >{{row.entity.account
ing
Period}}</span></div>'
},
{
name
:
$translate
.
instant
(
'AccountingPeriod'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span >{{row.entity.accountPeriod}}</span></div>'
},
{
name
:
$translate
.
instant
(
'DocumentDate'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span >{{row.entity.accountingDate | date:"yyyy-MM-dd"}}</span></div>'
},
{
name
:
$translate
.
instant
(
'JournalSource'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span >{{row.entity.journalSource}}</span></div>'
},
{
name
:
$translate
.
instant
(
'JournalCategory'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span >{{row.entity.category}}</span></div>'
},
...
...
@@ -307,41 +319,40 @@
{
name
:
$translate
.
instant
(
'Summary'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span title="{{row.entity.description}}">{{row.entity.description}}</span></div>'
},
{
name
:
$translate
.
instant
(
'MainBodyCode'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.orgCode}}</span></div>'
},
{
name
:
$translate
.
instant
(
'MainBodyDescription'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.orgName}}</span></div>'
},
// { name: $translate.instant('CostCenterDescription'), width: 200,cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.segment2Name}}</span></div>' },
{
name
:
$translate
.
instant
(
'AccountCode'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.subjectCode}}</span></div>'
},
{
name
:
$translate
.
instant
(
'SubjectDescription'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span title="{{row.entity.subjectName}}">{{row.entity.subjectName}}</span></div>'
},
// { name: $translate.instant('AuxiliaryAccountDescription'), width: 200,cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.segment4Name}}</span></div>' },
// { name: $translate.instant('ProfitCenterDescription'), width: 200,cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.segment5Name}}</span></div>' },
// { name: $translate.instant('ProductManual'), width: 200,cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.segment6Name}}</span></div>' },
// { name: $translate.instant('ProjectInstruction'), width: 200, cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.segment7Name}}</span></div>' },
// { name: $translate.instant('InterCompanyDescription'),width: 200, cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.segment8Name}}</span></div>' },
// { name: $translate.instant('Alternate1Description'), width: 200,cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.segment9Name}}</span></div>' },
// { name: $translate.instant('Alternate2Description'), width: 200,cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.segment10Name}}</span></div>' },
// { name: $translate.instant('Currency'), width: 200,cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.journalCurrencyCode}}</span></div>' },
// { name: $translate.instant('LocalCurrency'), width: 200,cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.sobCurrencyCode}}</span></div>' },
{
name
:
$translate
.
instant
(
'CostCenterDescription'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.segment2Name}}</span></div>'
},
{
name
:
$translate
.
instant
(
'AuxiliaryAccountDescription'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.segment4Name}}</span></div>'
},
{
name
:
$translate
.
instant
(
'ProfitCenterDescription'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.segment5Name}}</span></div>'
},
{
name
:
$translate
.
instant
(
'ProductManual'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.segment6Name}}</span></div>'
},
{
name
:
$translate
.
instant
(
'ProjectInstruction'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.segment7Name}}</span></div>'
},
{
name
:
$translate
.
instant
(
'InterCompanyDescription'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.segment8Name}}</span></div>'
},
{
name
:
$translate
.
instant
(
'Alternate1Description'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.segment9Name}}</span></div>'
},
{
name
:
$translate
.
instant
(
'Alternate2Description'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.segment10Name}}</span></div>'
},
{
name
:
$translate
.
instant
(
'Currency'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.journalCurrencyCode}}</span></div>'
},
{
name
:
$translate
.
instant
(
'LocalCurrency'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.sobCurrencyCode}}</span></div>'
},
{
name
:
$translate
.
instant
(
'JournalDebitAmount'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.accountedDr}}</span></div>'
},
{
name
:
$translate
.
instant
(
'JournalCreditAmount'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.accountedCr}}</span></div>'
},
// { name: $translate.instant('Amount'),width: 200, cellTemplate: '<div class="ui-grid-cell-contents"><span></span></div>' },
// { name: $translate.instant('LocalCurrencyDebitAmount'), width: 200,cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.enteredDr}}</span></div>' },
// { name: $translate.instant('LocalCurrencyCreditAmount'),width: 200, cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.enteredCr}}</span></div>' },
// { name: $translate.instant('CashFlowEntry'), width: 200,cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.cfItem}}</span></div>' },
// { name: $translate.instant('City'), width: 200,cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.attribute1}}</span></div>' },
// { name: $translate.instant('TransactionDate'), width: 200,cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.attribute2| date:"yyyy-MM-dd"}}</span></div>' },
// { name: $translate.instant('BankAccountNumber'), width: 200,cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.attribute3}}</span></div>' },
// { name: $translate.instant('BankSerialNumber'),width: 200, cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.attribute4}}</span></div>' },
// { name: $translate.instant('SupplierCode'),width: 200, cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.attribute5}}</span></div>' },
// { name: $translate.instant('TransactionOrderNumber'),width: 200, cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.attribute6}}</span></div>' },
// { name: $translate.instant('SupplierName'),width: 200, cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.attribute7}}</span></div>' },
// { name: $translate.instant('ReceiveCode'),width: 200, cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.attribute8}}</span></div>' },
// { name: $translate.instant('PreparedBy'),width: 200, cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.attribute9}}</span></div>' },
// { name: $translate.instant('Reviewer'),width: 200, cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.attribute10}}</span></div>' },
// { name: $translate.instant('CostCenterDepartmentDescription1'),width: 200, cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.attribute11}}</span></div>' },
// { name: $translate.instant('CostCenterDepartmentDescription2'),width: 200, cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.attribute12}}</span></div>' },
// { name: $translate.instant('CostCenterDepartmentDescription3'),width: 200, cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.attribute13}}</span></div>' },
// { name: $translate.instant('CostCenterDepartmentDescription4'),width: 200, cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.attribute14}}</span></div>' },
// { name: $translate.instant('CostCenterDepartmentDescription5'),width: 200, cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.attribute15}}</span></div>' },
// { name: $translate.instant('CostCenterDepartmentDescription6'),width: 200, cellTemplate: '<div class="ui-grid-cell-contents"><span>{{row.entity.attribute16}}</span></div>' },
// { name: $translate.instant('GroupCertificateNumber'),width: 200, cellTemplate: '<div class="ui-grid-cell-contents"><span></span></div>' }
{
name
:
$translate
.
instant
(
'LocalCurrencyDebitAmount'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.enteredDr}}</span></div>'
},
{
name
:
$translate
.
instant
(
'LocalCurrencyCreditAmount'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.enteredCr}}</span></div>'
},
{
name
:
$translate
.
instant
(
'CashFlowEntry'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.cfItem}}</span></div>'
},
{
name
:
$translate
.
instant
(
'City'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.attribute1}}</span></div>'
},
{
name
:
$translate
.
instant
(
'TransactionDate'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.attribute2| date:"yyyy-MM-dd"}}</span></div>'
},
{
name
:
$translate
.
instant
(
'BankAccountNumber'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.attribute3}}</span></div>'
},
{
name
:
$translate
.
instant
(
'BankSerialNumber'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.attribute4}}</span></div>'
},
{
name
:
$translate
.
instant
(
'SupplierCode'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.attribute5}}</span></div>'
},
{
name
:
$translate
.
instant
(
'TransactionOrderNumber'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.attribute6}}</span></div>'
},
{
name
:
$translate
.
instant
(
'SupplierName'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.attribute7}}</span></div>'
},
{
name
:
$translate
.
instant
(
'ReceiveCode'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.attribute8}}</span></div>'
},
{
name
:
$translate
.
instant
(
'PreparedBy'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.attribute9}}</span></div>'
},
{
name
:
$translate
.
instant
(
'Reviewer'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.attribute10}}</span></div>'
},
{
name
:
$translate
.
instant
(
'CostCenterDepartmentDescription1'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.attribute11}}</span></div>'
},
{
name
:
$translate
.
instant
(
'CostCenterDepartmentDescription2'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.attribute12}}</span></div>'
},
{
name
:
$translate
.
instant
(
'CostCenterDepartmentDescription3'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.attribute13}}</span></div>'
},
{
name
:
$translate
.
instant
(
'CostCenterDepartmentDescription4'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.attribute14}}</span></div>'
},
{
name
:
$translate
.
instant
(
'CostCenterDepartmentDescription5'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.attribute15}}</span></div>'
},
{
name
:
$translate
.
instant
(
'CostCenterDepartmentDescription6'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.attribute16}}</span></div>'
},
{
name
:
$translate
.
instant
(
'importWay'
),
width
:
200
,
cellTemplate
:
'<div class="ui-grid-cell-contents"><span>{{row.entity.source}}</span></div>'
}
]
};
...
...
@@ -351,17 +362,18 @@
$scope
.
prepareSummary
=
prepareSummary
;
$scope
.
showPopover
=
showPopover
;
$scope
.
downloadJE
=
downloadJE
;
$scope
.
handleJournal
=
handleJournal
;
initPeriods
();
initJournalEntryPagination
();
//初始化查询条件-期间范围
$scope
.
queryParams
.
periodStart
=
vatSessionService
.
year
*
100
+
vatSessionService
.
month
;
$scope
.
queryParams
.
periodEnd
=
vatSessionService
.
year
*
100
+
vatSessionService
.
month
;
$scope
.
queryParams
.
periodEnd
=
vatSessionService
.
year
*
100
+
12
;
$scope
.
queryParams
.
organizationId
=
vatSessionService
.
project
.
organizationID
;
if
(
$rootScope
.
currentLanguage
===
'en-us'
){
$
(
'.periodInput'
)[
0
].
style
.
left
=
"280px"
;
}
else
{
$
(
'.periodInput'
)[
0
].
style
.
left
=
"
1
50px"
;
$
(
'.periodInput'
)[
0
].
style
.
left
=
"
2
50px"
;
}
loadJournalEntryDataFromDB
(
1
);
})();
...
...
atms-web/src/main/webapp/app/cit/preview/cit-preview-journal-merge/cit-preview-journal-merge.html
View file @
14fafc39
...
...
@@ -8,8 +8,10 @@
data-templateurl=
"/app/cit/preview/cit-preview-journal-merge/cit-preview-journal-merge-search.html"
>
<i
class=
"fa fa-filter"
aria-hidden=
"true"
></i>
</button>
<span
translate=
"JournalTitle"
class=
"text-bold"
></span>
|
<span
class=
"text-bold"
translate=
"InvoiceQJ"
></span>
:
<span
translate=
"JournalTitle"
class=
"text-bold"
></span>
|
<span
class=
"text-bold"
translate=
"AccountPeriod"
></span>
:
<input
type=
"text"
class=
"form-control input-width-middle periodInput"
style=
"position: relative; top: -30px; left: 180px;"
id=
"input-invoice-period-picker"
/>
<button
translate=
"GenerateJournalMergeAndTB"
ng-click=
"handleJournal()"
></button>
<span
ng-click=
"downloadJE()"
style=
"position: relative; top: -61px; left: 95%;"
><i
class=
"fa fa-file-excel-o"
aria-hidden=
"true"
></i>
{{'ExportBtn' | translate}}
</span>
</div>
...
...
atms-web/src/main/webapp/app/cit/preview/cit-preview-journal-merge/cit-preview-journal-merge.less
View file @
14fafc39
...
...
@@ -127,7 +127,6 @@
.popover {
min-width: 370px;
left: 119px !important;
.arrow {
left: 5% !important;
...
...
atms-web/src/main/webapp/app/cit/preview/cit-preview-tb-generate-ver/cit-preview-tb-generate-ver.less
View file @
14fafc39
...
...
@@ -127,7 +127,6 @@
.popover {
min-width: 370px;
left: 119px !important;
.arrow {
left: 5% !important;
...
...
atms-web/src/main/webapp/app/cit/preview/cit-preview-tb-mapping-ver/cit-preview-tb-mapping-ver.less
View file @
14fafc39
...
...
@@ -127,7 +127,6 @@
.popover {
min-width: 370px;
left: 119px !important;
.arrow {
left: 5% !important;
...
...
atms-web/src/main/webapp/app/cit/reduction/cit-asset-eam-mapping/cit-asset-eam-mapping.less
View file @
14fafc39
...
...
@@ -127,7 +127,6 @@
.popover {
min-width: 370px;
left: 119px !important;
.arrow {
left: 5% !important;
...
...
atms-web/src/main/webapp/app/cit/reduction/cit-distribution-table/cit-distribution-table.less
View file @
14fafc39
...
...
@@ -125,7 +125,6 @@
.popover {
min-width: 370px;
left: 119px !important;
.arrow {
left: 5% !important;
...
...
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