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
98448d0a
Commit
98448d0a
authored
Apr 10, 2019
by
Ken you
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix admin bug ----Ken
parent
4683dffa
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
35 additions
and
7 deletions
+35
-7
app.json
atms-web/src/main/webapp/app-resources/i18n/en-us/app.json
+1
-1
app.json
atms-web/src/main/webapp/app-resources/i18n/zh-CN/app.json
+3
-2
infrastructure.json
.../main/webapp/app-resources/i18n/zh-CN/infrastructure.json
+1
-1
organization-manage.html
...nfrastructure/organizationManage/organization-manage.html
+0
-0
add-exist-organization-modal.ctrl.js
...t-organization-modal/add-exist-organization-modal.ctrl.js
+3
-2
edit-organization-modal.ctrl.js
...s/edit-organization-modal/edit-organization-modal.ctrl.js
+25
-0
edit-organization-modal.html
...rols/edit-organization-modal/edit-organization-modal.html
+0
-0
edit-organization-modal.less
...rols/edit-organization-modal/edit-organization-modal.less
+1
-0
constant.js
atms-web/src/main/webapp/app/common/utils/constant.js
+1
-1
No files found.
atms-web/src/main/webapp/app-resources/i18n/en-us/app.json
View file @
98448d0a
...
...
@@ -864,7 +864,7 @@
"ApproveEndTime"
:
"Approved Time"
,
"ApproveTaskList"
:
"Approve Task List"
,
"ApproveRole"
:
"Approve Role"
,
"NumOfBranches"
:
"分公司数量"
,
"ConditionColumnNum"
:
"Search Condition Column Num"
,
"Condition"
:
"Search Condition"
,
"RevenueTypeConfiguration"
:
"Revenue Type Config"
...
...
atms-web/src/main/webapp/app-resources/i18n/zh-CN/app.json
View file @
98448d0a
...
...
@@ -89,7 +89,7 @@
"BusinessAllottedTimeTo"
:
"营业期限截止"
,
"BusinessPromition"
:
"业务宣传费"
,
"BusinessScope"
:
"经营范围"
,
"RegStatus"
:
"登记状态"
,
"RegStatus"
:
"
工商
登记状态"
,
"BusinessUnit"
:
"所属业务线"
,
"BusinessUnitDesc"
:
"业务线"
,
"BusinessUnitID"
:
"业务线"
,
...
...
@@ -371,6 +371,7 @@
"RegFinancialOfficerEmailAddress"
:
"注册登记财务负责人邮箱"
,
"SecondaryApprovalAmount"
:
"二级审批金额"
,
"BusinessRegistrationNumber"
:
"Business registration number"
,
"NumOfBranches"
:
"分公司数量"
,
"ParValue"
:
"Par Value"
,
"IssuedShares"
:
"Issued shares"
,
"Directors"
:
"Directors"
,
...
...
@@ -595,7 +596,7 @@
"UpdateType"
:
"更新方式"
,
"RegistrationDate"
:
"注册日期"
,
"RegistrationLocation"
:
"注册地址(住所)"
,
"RegistrationLocationEn"
:
"注册地
地
址(住所)-英文"
,
"RegistrationLocationEn"
:
"注册地址(住所)-英文"
,
"RegistrationType"
:
"注册类型"
,
"ArchitectureType"
:
"架构类型"
,
"RemarkColon"
:
"备注:"
,
...
...
atms-web/src/main/webapp/app-resources/i18n/zh-CN/infrastructure.json
View file @
98448d0a
...
...
@@ -257,7 +257,7 @@
"OrganizationMsgClientCodeRequired"
:
"请输入客户代码"
,
"OrganizationCode"
:
"公司代码"
,
"UnifiedSocialCreditCode"
:
"统一社会信用代码"
,
"RegistrationStatus"
:
"登记状态"
,
"RegistrationStatus"
:
"
工商
登记状态"
,
"LogoutTime"
:
"注销时间"
,
"RegistrationAuthority"
:
"登记机关"
,
"ChangeType"
:
"变更类型"
,
...
...
atms-web/src/main/webapp/app/admin/infrastructure/organizationManage/organization-manage.html
View file @
98448d0a
This source diff could not be displayed because it is too large. You can
view the blob
instead.
atms-web/src/main/webapp/app/common/controls/add-exist-organization-modal/add-exist-organization-modal.ctrl.js
View file @
98448d0a
...
...
@@ -68,8 +68,9 @@ controller('addExistOrganizationModalController', ['$scope', '$log', '$translate
var
getOrgList
=
function
()
{
orgService
.
getOrgListLevel
().
success
(
function
(
data
)
{
if
(
data
)
{
$scope
.
DataGridSource
=
data
;
$scope
.
DataGridSource
=
_
.
filter
(
data
,
function
(
row
)
{
return
row
.
isActive
==
true
;
});
setSelectItems
(
$scope
.
selectedKeyItems
);
}
});
...
...
atms-web/src/main/webapp/app/common/controls/edit-organization-modal/edit-organization-modal.ctrl.js
View file @
98448d0a
...
...
@@ -198,7 +198,14 @@ controller('editOrganizationModalController', ['$scope', '$log', '$translate', '
return
false
;
}
});
};
$
(
'.orgAreaRequired'
).
each
(
function
(
index
,
ele
){
if
(
null
==
ele
.
innerText
||
""
===
ele
.
innerText
){
SweetAlert
.
error
(
"请检查必填项"
);
fail
=
true
;
return
false
;
}
});
if
(
fail
)
return
;
...
...
@@ -481,6 +488,7 @@ controller('editOrganizationModalController', ['$scope', '$log', '$translate', '
});
$scope
.
editOrgModel
=
orgData
;
$scope
.
editOrgModel
.
foundationDate
=
(
$filter
(
'date'
)(
new
Date
(
$scope
.
editOrgModel
.
foundationDate
),
"yyyy-MM-dd"
));
// 设置地区
loadProvinceList
();
...
...
@@ -513,6 +521,7 @@ controller('editOrganizationModalController', ['$scope', '$log', '$translate', '
if
(
$scope
.
isInternational
){
$
(
'.localRequired'
).
removeAttr
(
"required"
);
$
(
'.orgAreaRequired'
).
removeAttr
(
"required"
);
}
// set first active page is basic info
...
...
@@ -955,6 +964,19 @@ controller('editOrganizationModalController', ['$scope', '$log', '$translate', '
// 说明
$scope
.
resources
=
{
OrganizationName
:
$translate
.
instant
(
'OrganizationName'
),
OrganizationNameEn
:
$translate
.
instant
(
'OrganizationNameEn'
),
RegistrationCapital
:
$translate
.
instant
(
'RegistrationCapital'
),
LegalPersonName
:
$translate
.
instant
(
'LegalPersonName'
),
NumOfBranches
:
$translate
.
instant
(
'NumOfBranches'
),
BusinessScope
:
$translate
.
instant
(
'BusinessScope'
),
UnifiedSocialCreditCode
:
$translate
.
instant
(
'UnifiedSocialCreditCode'
),
Abbreviation
:
$translate
.
instant
(
'Abbreviation'
),
RegistrationLocationEn
:
$translate
.
instant
(
'RegistrationLocationEn'
),
PaidInCapital
:
$translate
.
instant
(
'PaidInCapital'
),
FoundationDate
:
$translate
.
instant
(
'FoundationDate'
),
registrationLocation
:
$translate
.
instant
(
'RegistrationLocation'
),
OrganizationMsgNameRequired
:
$translate
.
instant
(
'OrganizationMsgNameRequired'
),
OrganizationParent
:
$translate
.
instant
(
'OrganizationParent'
),
OrganizationLevelType
:
$translate
.
instant
(
'OrganizationLevelType'
),
...
...
@@ -1057,12 +1079,14 @@ controller('editOrganizationModalController', ['$scope', '$log', '$translate', '
$scope
.
isLocal
=
false
;
$scope
.
isInternational
=
true
;
$
(
'.localRequired'
).
removeAttr
(
"required"
);
$
(
'.orgAreaRequired'
).
removeAttr
(
"required"
);
};
$scope
.
changeLocal
=
function
()
{
$scope
.
isLocal
=
true
;
$scope
.
isInternational
=
false
;
$
(
'.localRequired'
).
attr
(
"required"
,
true
);
$
(
'.orgAreaRequired'
).
attr
(
"required"
,
true
);
};
// 强制刷新机构控件里的机构
...
...
@@ -1094,6 +1118,7 @@ controller('editOrganizationModalController', ['$scope', '$log', '$translate', '
$scope
.
trueFalse
=
constant
.
trueFalse
;
$scope
.
countryCNList
=
constant
.
countryCNList
;
$
(
'.localRequired'
).
attr
(
"required"
,
true
);
$
(
'.orgAreaRequired'
).
attr
(
"required"
,
true
);
// $('.localRequired').attr("required","true"); required="required"
};
...
...
atms-web/src/main/webapp/app/common/controls/edit-organization-modal/edit-organization-modal.html
View file @
98448d0a
This diff is collapsed.
Click to expand it.
atms-web/src/main/webapp/app/common/controls/edit-organization-modal/edit-organization-modal.less
View file @
98448d0a
...
...
@@ -21,6 +21,7 @@
.btn-default {
height: 33px;
width: 250px;
}
input {
...
...
atms-web/src/main/webapp/app/common/utils/constant.js
View file @
98448d0a
...
...
@@ -1479,7 +1479,7 @@ constant.TaxpayerQualificationTypeList = [
constant
.
RegStatusList
=
[
{
code
:
0
,
type
:
"存续"
},
{
code
:
1
,
type
:
"
存续
中"
},
{
code
:
1
,
type
:
"
注销
中"
},
{
code
:
2
,
type
:
"已注销"
}
];
...
...
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