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
804e0d9f
Commit
804e0d9f
authored
Apr 04, 2019
by
zhkwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CIT去掉页面debugger
parent
2094346e
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
70 additions
and
70 deletions
+70
-70
fixed-assets-rule-enginee.ctrl.js
.../fixedAssetsRuleEnginee/fixed-assets-rule-enginee.ctrl.js
+16
-16
cit-preview-journal-merge.ctrl.js
...t-preview-journal-merge/cit-preview-journal-merge.ctrl.js
+1
-1
cit-asset-eam-mapping.ctrl.js
...ction/cit-asset-eam-mapping/cit-asset-eam-mapping.ctrl.js
+2
-2
cit-distribution-table.ctrl.js
...ion/cit-distribution-table/cit-distribution-table.ctrl.js
+2
-2
cit-report-view.ctrl.js
...pp/app/cit/report/cit-report-view/cit-report-view.ctrl.js
+3
-3
import-cit-bs-prc-adjust.ctrl.js
...import-cit-bs-prc-adjust/import-cit-bs-prc-adjust.ctrl.js
+5
-5
import-cit-draft-account-mapping.ctrl.js
...-account-mapping/import-cit-draft-account-mapping.ctrl.js
+5
-5
import-cit-eam-assets-disposal.ctrl.js
...am-assets-disposal/import-cit-eam-assets-disposal.ctrl.js
+5
-5
import-cit-journal-adjust.ctrl.js
...port-cit-journal-adjust/import-cit-journal-adjust.ctrl.js
+8
-8
import-cit-profit-prc-adjust.ctrl.js
...it-profit-prc-adjust/import-cit-profit-prc-adjust.ctrl.js
+5
-5
import-cit-salary-advance.ctrl.js
...port-cit-salary-advance/import-cit-salary-advance.ctrl.js
+6
-6
import-cit-trial-balance.ctrl.js
...import-cit-trial-balance/import-cit-trial-balance.ctrl.js
+5
-5
assetDetailGroup.svc.js
...ain/webapp/app/common/webservices/assetDetailGroup.svc.js
+5
-5
citReport.svc.js
...b/src/main/webapp/app/common/webservices/citReport.svc.js
+2
-2
No files found.
atms-web/src/main/webapp/app/admin/systemConfiguration/ruleEngineeConfiguration/fixedAssetsRuleEnginee/fixed-assets-rule-enginee.ctrl.js
View file @
804e0d9f
...
...
@@ -54,7 +54,7 @@
//获取固定资产二级分类的数据
var
getAllFixedAssetDetailGroup
=
function
(
assetGroupType
){
debugger
;
var
pageIndex
=
1
;
var
pageSize
=
10
;
if
(
assetGroupType
==
'1'
){
...
...
@@ -68,7 +68,7 @@
pageSize
=
$scope
.
intangibleAssetsPagingOptions
.
pageSize
;
}
assetGroupService
.
getAllFixedAssetDetailGroup
(
assetGroupType
,
pageIndex
,
pageSize
).
success
(
function
(
fixedAssetData
){
debugger
;
if
(
assetGroupType
==
'1'
){
$scope
.
fixedAssetData
=
fixedAssetData
.
data
[
'detailGroup'
].
list
;
initFixedAssetPagingControl
(
fixedAssetData
.
data
[
'totalItem'
]);
...
...
@@ -81,42 +81,42 @@
}
}).
error
(
function
(){
debugger
;
SweetAlert
.
error
(
"获取类型为"
+
assetGroupType
+
"的资产数据出错"
);
});
};
//获取资产二级分类的数据
var
getAllAssetDetailGroup
=
function
(){
debugger
;
assetGroupService
.
getAllAssetDetailGroup
().
success
(
function
(
resultData
){
debugger
;
$scope
.
fixedAssetData
=
resultData
.
data
[
'1'
];
//1代表固定资产,获取返回数据map的key
$scope
.
longTermPendingData
=
resultData
.
data
[
'2'
];
//2代表固定资产,获取返回数据map的key
$scope
.
intangibleAssetsData
=
resultData
.
data
[
'3'
];
//3代表固定资产,获取返回数据map的key
}).
error
(
function
(){
debugger
;
SweetAlert
.
error
(
"获取资产数据出错"
);
});
};
$scope
.
pagingService
=
{
refreshFixedAssetDataGrid
:
function
(
assetGroupType
)
{
debugger
;
$log
.
debug
(
"refreshFixedAssetGrid"
);
getAllFixedAssetDetailGroup
(
assetGroupType
);
}
};
var
initFixedAssetPagingControl
=
function
(
totalItemsCount
)
{
debugger
;
$scope
.
fixedAssetPagingOptions
.
totalItems
=
totalItemsCount
;
};
var
initLongTermPagingControl
=
function
(
totalItemsCount
)
{
debugger
;
$scope
.
longTermPendingPagingOptions
.
totalItems
=
totalItemsCount
;
};
var
initIntangibleAssetsPagingControl
=
function
(
totalItemsCount
)
{
debugger
;
$scope
.
intangibleAssetsPagingOptions
.
totalItems
=
totalItemsCount
;
};
...
...
@@ -129,7 +129,7 @@
};
//创建--固定资产
$scope
.
createNewData
=
function
(
type
)
{
debugger
;
$scope
.
isEdit
=
false
;
$scope
.
assetGroupType
=
type
;
$scope
.
resetFixedAssetsObject
();
...
...
@@ -162,7 +162,7 @@
//给fixedAssetsObject实体赋予属性assetGroupType并赋值
$scope
.
fixedAssetsObject
.
assetGroupType
=
$scope
.
assetGroupType
;
if
(
$scope
.
isEdit
){
debugger
;
assetGroupService
.
updateAssetDetailGroup
(
$scope
.
fixedAssetsObject
).
success
(
function
()
{
$
(
editModalSelector
).
modal
(
'hide'
);
getAllFixedAssetDetailGroup
(
$scope
.
assetGroupType
);
...
...
@@ -170,9 +170,9 @@
});
}
else
{
debugger
;
assetGroupService
.
addAssetDetailGroup
(
$scope
.
fixedAssetsObject
).
success
(
function
()
{
debugger
;
if
(
$scope
.
fixedAssetsObject
.
groupYear
)
$scope
.
fixedAssetsObject
.
groupYear
=
$scope
.
fixedAssetsObject
.
groupYear
+
"年"
;
// $scope.fixedAssetData.push($scope.fixedAssetsObject);
...
...
@@ -190,7 +190,7 @@
};
//删除
$scope
.
delete
=
function
(
data
)
{
debugger
;
assetGroupService
.
deleteAssetDetailGroup
(
data
.
id
).
success
(
function
(){
getAllFixedAssetDetailGroup
(
data
.
assetGroupType
);
// var index = $scope.fixedAssetData.indexOf(data);
...
...
@@ -203,7 +203,7 @@
};
$scope
.
editRow
=
function
(
data
,
type
)
{
debugger
;
$scope
.
assetGroupType
=
type
;
$scope
.
isEdit
=
true
;
$scope
.
fixedAssetsObject
=
angular
.
copy
(
data
)
...
...
atms-web/src/main/webapp/app/cit/preview/cit-preview-journal-merge/cit-preview-journal-merge.ctrl.js
View file @
804e0d9f
...
...
@@ -263,7 +263,7 @@
if
(
resp
.
result
)
{
SweetAlert
.
success
(
$translate
.
instant
(
'ProcessSuccess'
));
}
else
{
debugger
;
if
(
resp
.
resultMsg
&&
resp
.
resultMsg
.
length
>
0
)
{
SweetAlert
.
warning
(
resp
.
resultMsg
);
}
else
{
...
...
atms-web/src/main/webapp/app/cit/reduction/cit-asset-eam-mapping/cit-asset-eam-mapping.ctrl.js
View file @
804e0d9f
...
...
@@ -51,7 +51,7 @@
$scope
.
getDataFromDatabase
=
function
(
queryParams
){
citReportService
.
getAssetEamMappings
(
queryParams
).
success
(
function
(
resp
)
{
debugger
;
if
(
resp
.
data
)
{
// minDate = data.
var
index
=
1
;
...
...
@@ -247,7 +247,7 @@
$scope
.
startCalculateData
=
function
()
{
citReportService
.
generateAssetEamMapping
(
$scope
.
queryParams
).
success
(
function
(
data
)
{
debugger
;
loadJournalEntryDataFromDB
(
1
);
// if(status===204){
// SweetAlert.warning("没有数据可以下载");
...
...
atms-web/src/main/webapp/app/cit/reduction/cit-distribution-table/cit-distribution-table.ctrl.js
View file @
804e0d9f
...
...
@@ -62,7 +62,7 @@
$scope
.
getDataFromDatabase
=
function
(
queryParams
){
citReportService
.
getDistributionTables
(
queryParams
).
success
(
function
(
resp
)
{
debugger
;
if
(
resp
.
data
)
{
// minDate = data.
var
index
=
1
;
...
...
@@ -258,7 +258,7 @@
$scope
.
startCalculateData
=
function
()
{
citReportService
.
generateDistributionTable
(
$scope
.
queryParams
).
success
(
function
(
data
)
{
debugger
;
$scope
.
totalBusinessIncome
=
data
.
data
.
totalBusinessIncome
;
$scope
.
totalEmployeeRemuneration
=
data
.
data
.
totalEmployeeRemuneration
;
$scope
.
totalTotalAssets
=
data
.
data
.
totalTotalAssets
;
...
...
atms-web/src/main/webapp/app/cit/report/cit-report-view/cit-report-view.ctrl.js
View file @
804e0d9f
...
...
@@ -957,7 +957,7 @@
//批量导出EXCEL
$scope
.
export
=
function
()
{
debugger
;
var
grp
=
_
.
find
(
$scope
.
$parent
.
$parent
.
groups
,
function
(
g
)
{
return
g
.
name
==
'TaxReturnType'
;
});
...
...
@@ -992,13 +992,13 @@
var
reg
=
/^
([
A-Z
]
+
[
0-9
]
+
){1}
$|^
([
A-Z
]
+
[
0-9
]
+
){1}([\+
-
]{1}[
A-Z
]
+
[
0-9
]
+
)
+$/g
;
var
exportReportData
=
[];
angular
.
forEach
(
reportArray
,
function
(
currentVal
)
{
debugger
;
var
node
=
_
.
first
(
_
.
where
(
grp
.
children
,
{
reportId
:
currentVal
}));
if
(
!
node
)
{
return
;
}
var
reportPromiss
=
citReportService
.
getReportData
(
node
.
reportId
).
success
(
function
(
reportData
)
{
debugger
;
if
(
reportData
&&
reportData
.
data
&&
reportData
.
data
.
cellData
)
{
_
.
each
(
reportData
.
data
.
cellData
,
function
(
x
)
{
...
...
atms-web/src/main/webapp/app/common/controls/import/import-cit-bs-prc-adjust/import-cit-bs-prc-adjust.ctrl.js
View file @
804e0d9f
...
...
@@ -103,7 +103,7 @@
//导入事件
var
importFile
=
function
(
importType
)
{
debugger
;
var
impExl
=
$scope
.
importExcelFile
;
var
deferred
=
$q
.
defer
();
...
...
@@ -215,7 +215,7 @@
};
var
loadImportInfoDataGrid
=
function
()
{
debugger
;
$scope
.
importPLStatusGridOptions
=
{
bindingOptions
:
{
dataSource
:
'citImportLogGridSource'
...
...
@@ -300,7 +300,7 @@
};
var
getImportLog
=
function
()
{
debugger
;
citImportDataService
.
getCitDataImportLog
(
constant
.
citImportFileType
.
BalanceSheetPrcAdjust
).
success
(
function
(
data
)
{
if
(
data
)
{
$scope
.
citImportLogGridSource
=
data
.
data
;
...
...
@@ -447,7 +447,7 @@
};
$scope
.
downloadTemplate
=
function
()
{
debugger
;
templateService
.
citDownloadTemplate
(
constant
.
citImportFileType
.
BalanceSheetPrcAdjust
).
success
(
function
(
data
,
status
,
headers
)
{
var
octetStreamMime
=
'application/octet-stream'
;
var
contentType
=
headers
(
'content-type'
)
||
octetStreamMime
;
...
...
@@ -478,7 +478,7 @@
//开始
(
function
initialize
()
{
debugger
;
$log
.
debug
(
'ImportTBController.ctor()...'
);
checkUserOrganizationPermissionList
();
$scope
.
importFile
=
importFile
;
...
...
atms-web/src/main/webapp/app/common/controls/import/import-cit-draft-account-mapping/import-cit-draft-account-mapping.ctrl.js
View file @
804e0d9f
...
...
@@ -100,7 +100,7 @@
//导入事件
var
importFile
=
function
(
importType
)
{
debugger
;
var
impExl
=
$scope
.
importExcelFile
;
var
deferred
=
$q
.
defer
();
...
...
@@ -208,7 +208,7 @@
};
var
loadImportInfoDataGrid
=
function
()
{
debugger
;
$scope
.
importPLStatusGridOptions
=
{
bindingOptions
:
{
dataSource
:
'citImportLogGridSource'
...
...
@@ -293,7 +293,7 @@
};
var
getImportLog
=
function
()
{
debugger
;
citImportDataService
.
getCitDataImportLog
(
constant
.
citImportFileType
.
DraftAccountMapping
).
success
(
function
(
data
)
{
if
(
data
)
{
$scope
.
citImportLogGridSource
=
data
.
data
;
...
...
@@ -386,7 +386,7 @@
};
$scope
.
downloadTemplate
=
function
()
{
debugger
;
templateService
.
citDownloadTemplate
(
constant
.
citImportFileType
.
DraftAccountMapping
).
success
(
function
(
data
,
status
,
headers
)
{
var
octetStreamMime
=
'application/octet-stream'
;
var
contentType
=
headers
(
'content-type'
)
||
octetStreamMime
;
...
...
@@ -417,7 +417,7 @@
//开始
(
function
initialize
()
{
debugger
;
$log
.
debug
(
'ImportTBController.ctor()...'
);
checkUserOrganizationPermissionList
();
$scope
.
importFile
=
importFile
;
...
...
atms-web/src/main/webapp/app/common/controls/import/import-cit-eam-assets-disposal/import-cit-eam-assets-disposal.ctrl.js
View file @
804e0d9f
...
...
@@ -100,7 +100,7 @@
//导入事件
var
importFile
=
function
(
importType
)
{
debugger
;
var
impExl
=
$scope
.
importExcelFile
;
var
deferred
=
$q
.
defer
();
...
...
@@ -207,7 +207,7 @@
};
var
loadImportInfoDataGrid
=
function
()
{
debugger
;
$scope
.
importPLStatusGridOptions
=
{
bindingOptions
:
{
dataSource
:
'citImportLogGridSource'
...
...
@@ -292,7 +292,7 @@
};
var
getImportLog
=
function
()
{
debugger
;
citImportDataService
.
getCitDataImportLog
(
constant
.
citImportFileType
.
EAMAssetsDisposal
).
success
(
function
(
data
)
{
if
(
data
)
{
$scope
.
citImportLogGridSource
=
data
.
data
;
...
...
@@ -385,7 +385,7 @@
};
$scope
.
downloadTemplate
=
function
()
{
debugger
;
templateService
.
citDownloadTemplate
(
constant
.
citImportFileType
.
EAMAssetsDisposal
).
success
(
function
(
data
,
status
,
headers
)
{
var
octetStreamMime
=
'application/octet-stream'
;
var
contentType
=
headers
(
'content-type'
)
||
octetStreamMime
;
...
...
@@ -416,7 +416,7 @@
//开始
(
function
initialize
()
{
debugger
;
$log
.
debug
(
'ImportTBController.ctor()...'
);
checkUserOrganizationPermissionList
();
$scope
.
importFile
=
importFile
;
...
...
atms-web/src/main/webapp/app/common/controls/import/import-cit-journal-adjust/import-cit-journal-adjust.ctrl.js
View file @
804e0d9f
...
...
@@ -105,7 +105,7 @@
//导入事件
var
importFile
=
function
(
importType
)
{
debugger
;
var
impExl
=
$scope
.
importExcelFile
;
var
deferred
=
$q
.
defer
();
...
...
@@ -173,16 +173,16 @@
withCredentials
:
true
}).
then
(
function
(
data
)
{
var
resp
=
data
.
data
;
debugger
;
$
(
'#busy-indicator-container'
).
hide
();
deferred
.
resolve
();
if
(
resp
.
result
)
{
debugger
;
logDto
.
UpdateState
=
$translate
.
instant
(
'ImportSuccess'
)
+
" "
+
resp
.
data
+
$translate
.
instant
(
'ItemData'
);
vatOperationLogService
.
addOperationLog
(
logDto
);
SweetAlert
.
success
(
$translate
.
instant
(
'ImportSuccess'
)
+
" "
+
resp
.
data
+
$translate
.
instant
(
'ItemData'
));
}
else
{
debugger
;
if
(
resp
.
resultMsg
&&
resp
.
resultMsg
.
length
>
0
)
{
SweetAlert
.
warning
(
resp
.
resultMsg
);
}
else
{
...
...
@@ -223,7 +223,7 @@
};
var
loadImportInfoDataGrid
=
function
()
{
debugger
;
$scope
.
importPLStatusGridOptions
=
{
bindingOptions
:
{
dataSource
:
'citImportLogGridSource'
...
...
@@ -308,7 +308,7 @@ debugger;
};
var
getImportLog
=
function
()
{
debugger
;
var
a
=
constant
.
citImportFileType
.
JournalAdjust
;
citImportDataService
.
getCitDataImportLog
(
constant
.
citImportFileType
.
JournalAdjust
).
success
(
function
(
data
)
{
if
(
data
)
{
...
...
@@ -456,7 +456,7 @@ debugger;
};
$scope
.
downloadTemplate
=
function
()
{
debugger
;
templateService
.
citDownloadTemplate
(
constant
.
citImportFileType
.
JournalAdjust
).
success
(
function
(
data
,
status
,
headers
)
{
var
octetStreamMime
=
'application/octet-stream'
;
var
contentType
=
headers
(
'content-type'
)
||
octetStreamMime
;
...
...
@@ -487,7 +487,7 @@ debugger;
//开始
(
function
initialize
()
{
debugger
;
$log
.
debug
(
'ImportTBController.ctor()...'
);
checkUserOrganizationPermissionList
();
$scope
.
importFile
=
importFile
;
...
...
atms-web/src/main/webapp/app/common/controls/import/import-cit-profit-prc-adjust/import-cit-profit-prc-adjust.ctrl.js
View file @
804e0d9f
...
...
@@ -103,7 +103,7 @@
//导入事件
var
importFile
=
function
(
importType
)
{
debugger
;
var
impExl
=
$scope
.
importExcelFile
;
var
deferred
=
$q
.
defer
();
...
...
@@ -216,7 +216,7 @@
};
var
loadImportInfoDataGrid
=
function
()
{
debugger
;
$scope
.
importPLStatusGridOptions
=
{
bindingOptions
:
{
dataSource
:
'citImportLogGridSource'
...
...
@@ -301,7 +301,7 @@
};
var
getImportLog
=
function
()
{
debugger
;
citImportDataService
.
getCitDataImportLog
(
constant
.
citImportFileType
.
ProfitPrcAdjust
).
success
(
function
(
data
)
{
if
(
data
)
{
$scope
.
citImportLogGridSource
=
data
.
data
;
...
...
@@ -448,7 +448,7 @@
};
$scope
.
downloadTemplate
=
function
()
{
debugger
;
templateService
.
citDownloadTemplate
(
constant
.
citImportFileType
.
ProfitPrcAdjust
).
success
(
function
(
data
,
status
,
headers
)
{
var
octetStreamMime
=
'application/octet-stream'
;
var
contentType
=
headers
(
'content-type'
)
||
octetStreamMime
;
...
...
@@ -479,7 +479,7 @@
//开始
(
function
initialize
()
{
debugger
;
$log
.
debug
(
'ImportTBController.ctor()...'
);
checkUserOrganizationPermissionList
();
$scope
.
importFile
=
importFile
;
...
...
atms-web/src/main/webapp/app/common/controls/import/import-cit-salary-advance/import-cit-salary-advance.ctrl.js
View file @
804e0d9f
...
...
@@ -104,7 +104,7 @@
//导入事件
var
importFile
=
function
(
importType
)
{
debugger
;
var
impExl
=
$scope
.
importExcelFile
;
var
deferred
=
$q
.
defer
();
...
...
@@ -177,7 +177,7 @@
vatOperationLogService
.
addOperationLog
(
logDto
);
SweetAlert
.
success
(
$translate
.
instant
(
'ImportSuccess'
)
+
" "
+
resp
.
data
+
$translate
.
instant
(
'ItemData'
));
}
else
{
debugger
;
if
(
resp
.
resultMsg
&&
resp
.
resultMsg
.
length
>
0
)
{
SweetAlert
.
warning
(
resp
.
resultMsg
);
}
else
{
...
...
@@ -218,7 +218,7 @@
};
var
loadImportInfoDataGrid
=
function
()
{
debugger
;
$scope
.
importPLStatusGridOptions
=
{
bindingOptions
:
{
dataSource
:
'citImportLogGridSource'
...
...
@@ -303,7 +303,7 @@
};
var
getImportLog
=
function
()
{
debugger
;
citImportDataService
.
getCitDataImportLog
(
constant
.
citImportFileType
.
SalaryAdvance
).
success
(
function
(
data
)
{
if
(
data
)
{
$scope
.
citImportLogGridSource
=
data
.
data
;
...
...
@@ -450,7 +450,7 @@
};
$scope
.
downloadTemplate
=
function
()
{
debugger
;
templateService
.
citDownloadTemplate
(
constant
.
citImportFileType
.
SalaryAdvance
).
success
(
function
(
data
,
status
,
headers
)
{
var
octetStreamMime
=
'application/octet-stream'
;
var
contentType
=
headers
(
'content-type'
)
||
octetStreamMime
;
...
...
@@ -481,7 +481,7 @@
//开始
(
function
initialize
()
{
debugger
;
$log
.
debug
(
'ImportTBController.ctor()...'
);
checkUserOrganizationPermissionList
();
$scope
.
importFile
=
importFile
;
...
...
atms-web/src/main/webapp/app/common/controls/import/import-cit-trial-balance/import-cit-trial-balance.ctrl.js
View file @
804e0d9f
...
...
@@ -106,7 +106,7 @@
//导入事件
var
importFile
=
function
(
importType
)
{
debugger
;
var
impExl
=
$scope
.
importExcelFile
;
var
deferred
=
$q
.
defer
();
...
...
@@ -218,7 +218,7 @@
};
var
loadImportInfoDataGrid
=
function
()
{
debugger
;
$scope
.
importPLStatusGridOptions
=
{
bindingOptions
:
{
dataSource
:
'citImportLogGridSource'
...
...
@@ -303,7 +303,7 @@
};
var
getImportLog
=
function
()
{
debugger
;
citImportDataService
.
getCitDataImportLog
(
constant
.
citImportFileType
.
TrialBalance
).
success
(
function
(
data
)
{
if
(
data
)
{
$scope
.
citImportLogGridSource
=
data
.
data
;
...
...
@@ -450,7 +450,7 @@
};
$scope
.
downloadTemplate
=
function
()
{
debugger
;
templateService
.
citDownloadTemplate
(
constant
.
citImportFileType
.
TrialBalance
).
success
(
function
(
data
,
status
,
headers
)
{
var
octetStreamMime
=
'application/octet-stream'
;
var
contentType
=
headers
(
'content-type'
)
||
octetStreamMime
;
...
...
@@ -481,7 +481,7 @@
//开始
(
function
initialize
()
{
debugger
;
$log
.
debug
(
'ImportTBController.ctor()...'
);
checkUserOrganizationPermissionList
();
$scope
.
importFile
=
importFile
;
...
...
atms-web/src/main/webapp/app/common/webservices/assetDetailGroup.svc.js
View file @
804e0d9f
...
...
@@ -3,23 +3,23 @@ webservices.factory('assetGroupService', ['$http', 'apiConfig', function ($http,
'use strict'
;
return
{
getAllAssetDetailGroup
:
function
()
{
debugger
;
return
$http
.
get
(
'/asset/getAllAssetDetailGroup'
,
apiConfig
.
create
());
},
getAllFixedAssetDetailGroup
:
function
(
assetGroupType
,
pageIndex
,
pageSize
)
{
debugger
;
return
$http
.
post
(
'/asset/getFixedAssetDetailGroup'
,{
"assetGroupType"
:
assetGroupType
,
"pageIndex"
:
pageIndex
,
"pageSize"
:
pageSize
},
apiConfig
.
create
());
},
addAssetDetailGroup
:
function
(
assetDetailGroupDto
)
{
debugger
;
return
$http
.
post
(
'/asset/addAssetDetailGroup'
,
assetDetailGroupDto
,
apiConfig
.
create
());
},
updateAssetDetailGroup
:
function
(
assetDetailGroupDto
)
{
debugger
;
return
$http
.
post
(
'/asset/editAssetDetailGroup'
,
assetDetailGroupDto
,
apiConfig
.
create
());
},
deleteAssetDetailGroup
:
function
(
id
)
{
debugger
;
return
$http
.
delete
(
'/asset/deleteAssetDetailGroup?id='
+
id
,
apiConfig
.
create
());
}
...
...
atms-web/src/main/webapp/app/common/webservices/citReport.svc.js
View file @
804e0d9f
...
...
@@ -215,7 +215,7 @@
生成固定资产及EAM对应的数据
*/
generateAssetEamMapping
:
function
(
citAssetsListDto
){
debugger
;
return
$http
.
post
(
'/citReport/generateAssetEamMapping'
,
citAssetsListDto
,
apiConfig
.
create
());
},
/**
...
...
@@ -242,7 +242,7 @@
生成所得税分配表的
*/
generateDistributionTable
:
function
(
citAssetsListDto
){
debugger
;
return
$http
.
post
(
'/citReport/generateDistributionTable'
,
citAssetsListDto
,
apiConfig
.
create
());
},
/**
...
...
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