Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
S
sap-service
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
曲欣亮
sap-service
Commits
83222ec1
Commit
83222ec1
authored
Aug 05, 2019
by
Quxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x
parent
05ec3254
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
24 additions
and
24 deletions
+24
-24
ConfirmQuotationServiceImpl.java
...rvices/confirm_quotation/ConfirmQuotationServiceImpl.java
+4
-4
DNDeletionServiceImpl.java
...egolm/sso/services/dn_deletion/DNDeletionServiceImpl.java
+4
-4
MaterialMasterServiceImpl.java
...o/services/material_master/MaterialMasterServiceImpl.java
+4
-4
PrformaInvoiceServiceImpl.java
...o/services/prforma_invoice/PrformaInvoiceServiceImpl.java
+4
-4
PriceListServiceImpl.java
...m/egolm/sso/services/price_list/PriceListServiceImpl.java
+4
-4
ShippingNotificationServiceImpl.java
...hipping_notfirmation/ShippingNotificationServiceImpl.java
+4
-4
No files found.
src/main/java/com/egolm/sso/services/confirm_quotation/ConfirmQuotationServiceImpl.java
View file @
83222ec1
...
@@ -167,16 +167,16 @@ public class ConfirmQuotationServiceImpl implements ConfirmQuotationService {
...
@@ -167,16 +167,16 @@ public class ConfirmQuotationServiceImpl implements ConfirmQuotationService {
}
}
}
}
try
{
try
{
common
.
saveApiAccessLog
(
"execute"
,
"/confirm_quotation"
,
"S
UCCESS
"
);
common
.
saveApiAccessLog
(
"execute"
,
"/confirm_quotation"
,
"S"
);
common
.
saveOrderTracking
(
TRACE_NO
,
"SoConfirmQuotation"
,
VBELN
,
KUNNR
,
"U"
,
"S
UCCESS
"
,
null
);
common
.
saveOrderTracking
(
TRACE_NO
,
"SoConfirmQuotation"
,
VBELN
,
KUNNR
,
"U"
,
"S"
,
null
);
}
catch
(
Throwable
e
)
{
}
catch
(
Throwable
e
)
{
logger
.
error
(
timeString
,
e
);
logger
.
error
(
timeString
,
e
);
}
}
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
isSuccess
=
false
;
isSuccess
=
false
;
try
{
try
{
common
.
saveApiAccessLog
(
"execute"
,
"/confirm_quotation"
,
"
ERROR
"
);
common
.
saveApiAccessLog
(
"execute"
,
"/confirm_quotation"
,
"
F
"
);
common
.
saveOrderTracking
(
TRACE_NO
,
"SoConfirmQuotation"
,
VBELN
,
KUNNR
,
"U"
,
"
ERROR
"
,
ThrowableUtil
.
getCaused
(
e
).
getMessage
()
+
" -- "
+
timeString
);
common
.
saveOrderTracking
(
TRACE_NO
,
"SoConfirmQuotation"
,
VBELN
,
KUNNR
,
"U"
,
"
F
"
,
ThrowableUtil
.
getCaused
(
e
).
getMessage
()
+
" -- "
+
timeString
);
}
catch
(
Throwable
e1
)
{
}
catch
(
Throwable
e1
)
{
logger
.
error
(
timeString
,
e1
);
logger
.
error
(
timeString
,
e1
);
}
}
...
...
src/main/java/com/egolm/sso/services/dn_deletion/DNDeletionServiceImpl.java
View file @
83222ec1
...
@@ -76,16 +76,16 @@ public class DNDeletionServiceImpl implements DNDeletionService {
...
@@ -76,16 +76,16 @@ public class DNDeletionServiceImpl implements DNDeletionService {
Sql
headerSql
=
SqlUtil
.
insertSql
(
"t_so_dn_deletion"
,
map
);
Sql
headerSql
=
SqlUtil
.
insertSql
(
"t_so_dn_deletion"
,
map
);
jdbcTemplate
.
update
(
headerSql
.
getSql
(),
headerSql
.
getArgs
());
jdbcTemplate
.
update
(
headerSql
.
getSql
(),
headerSql
.
getArgs
());
try
{
try
{
common
.
saveApiAccessLog
(
"execute"
,
"/dn_deletion"
,
"S
UCCESS
"
);
common
.
saveApiAccessLog
(
"execute"
,
"/dn_deletion"
,
"S"
);
common
.
saveOrderTracking
(
TRACE_NO
,
"SODNDeletion"
,
null
,
SOLD_TO
,
"U"
,
"S
UCCESS
"
,
null
);
common
.
saveOrderTracking
(
TRACE_NO
,
"SODNDeletion"
,
null
,
SOLD_TO
,
"U"
,
"S"
,
null
);
}
catch
(
Throwable
e
)
{
}
catch
(
Throwable
e
)
{
logger
.
error
(
timeString
,
e
);
logger
.
error
(
timeString
,
e
);
}
}
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
isSuccess
=
false
;
isSuccess
=
false
;
try
{
try
{
common
.
saveApiAccessLog
(
"execute"
,
"/dn_deletion"
,
"
ERROR
"
);
common
.
saveApiAccessLog
(
"execute"
,
"/dn_deletion"
,
"
F
"
);
common
.
saveOrderTracking
(
TRACE_NO
,
"SODNDeletion"
,
null
,
SOLD_TO
,
"U"
,
"
ERROR
"
,
ThrowableUtil
.
getCaused
(
e
).
getMessage
()
+
" -- "
+
timeString
);
common
.
saveOrderTracking
(
TRACE_NO
,
"SODNDeletion"
,
null
,
SOLD_TO
,
"U"
,
"
F
"
,
ThrowableUtil
.
getCaused
(
e
).
getMessage
()
+
" -- "
+
timeString
);
}
catch
(
Throwable
e1
)
{
}
catch
(
Throwable
e1
)
{
logger
.
error
(
timeString
,
e1
);
logger
.
error
(
timeString
,
e1
);
}
}
...
...
src/main/java/com/egolm/sso/services/material_master/MaterialMasterServiceImpl.java
View file @
83222ec1
...
@@ -123,16 +123,16 @@ public class MaterialMasterServiceImpl implements MaterialMasterService {
...
@@ -123,16 +123,16 @@ public class MaterialMasterServiceImpl implements MaterialMasterService {
}
}
}
}
try
{
try
{
common
.
saveApiAccessLog
(
"execute"
,
"/material_master"
,
"S
UCCESS
"
);
common
.
saveApiAccessLog
(
"execute"
,
"/material_master"
,
"S"
);
common
.
saveOrderTracking
(
TRACE_NO
,
"MaterialMaster"
,
null
,
DIS_CODE
,
"U"
,
"S
UCCESS
"
,
null
);
common
.
saveOrderTracking
(
TRACE_NO
,
"MaterialMaster"
,
null
,
DIS_CODE
,
"U"
,
"S"
,
null
);
}
catch
(
Throwable
e
)
{
}
catch
(
Throwable
e
)
{
logger
.
error
(
timeString
,
e
);
logger
.
error
(
timeString
,
e
);
}
}
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
isSuccess
=
false
;
isSuccess
=
false
;
try
{
try
{
common
.
saveApiAccessLog
(
"execute"
,
"/material_master"
,
"
ERROR
"
);
common
.
saveApiAccessLog
(
"execute"
,
"/material_master"
,
"
F
"
);
common
.
saveOrderTracking
(
TRACE_NO
,
"MaterialMaster"
,
null
,
DIS_CODE
,
"U"
,
"
ERROR
"
,
ThrowableUtil
.
getCaused
(
e
).
getMessage
()
+
" -- "
+
timeString
);
common
.
saveOrderTracking
(
TRACE_NO
,
"MaterialMaster"
,
null
,
DIS_CODE
,
"U"
,
"
F
"
,
ThrowableUtil
.
getCaused
(
e
).
getMessage
()
+
" -- "
+
timeString
);
}
catch
(
Throwable
e1
)
{
}
catch
(
Throwable
e1
)
{
logger
.
error
(
timeString
,
e1
);
logger
.
error
(
timeString
,
e1
);
}
}
...
...
src/main/java/com/egolm/sso/services/prforma_invoice/PrformaInvoiceServiceImpl.java
View file @
83222ec1
...
@@ -250,16 +250,16 @@ public class PrformaInvoiceServiceImpl implements PrformaInvoiceService {
...
@@ -250,16 +250,16 @@ public class PrformaInvoiceServiceImpl implements PrformaInvoiceService {
Sql
itemDataSql
=
SqlUtil
.
insertSqlBatch
(
"t_perform_invoice_item_data"
,
itemDatas
);
Sql
itemDataSql
=
SqlUtil
.
insertSqlBatch
(
"t_perform_invoice_item_data"
,
itemDatas
);
jdbcTemplate
.
batchUpdate
(
itemDataSql
.
getSql
(),
itemDataSql
.
getBachArgs
());
jdbcTemplate
.
batchUpdate
(
itemDataSql
.
getSql
(),
itemDataSql
.
getBachArgs
());
try
{
try
{
common
.
saveApiAccessLog
(
"execute"
,
"/prforma_invoice"
,
"S
UCCESS
"
);
common
.
saveApiAccessLog
(
"execute"
,
"/prforma_invoice"
,
"S"
);
common
.
saveOrderTracking
(
TRACE_NO
,
"ProFormaInvoice"
,
null
,
BATCH_CODE
,
"U"
,
"S
UCCESS
"
,
null
);
common
.
saveOrderTracking
(
TRACE_NO
,
"ProFormaInvoice"
,
null
,
BATCH_CODE
,
"U"
,
"S"
,
null
);
}
catch
(
Throwable
e
)
{
}
catch
(
Throwable
e
)
{
logger
.
error
(
timeString
,
e
);
logger
.
error
(
timeString
,
e
);
}
}
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
isSuccess
=
false
;
isSuccess
=
false
;
try
{
try
{
common
.
saveApiAccessLog
(
"execute"
,
"/prforma_invoice"
,
"
ERROR
"
);
common
.
saveApiAccessLog
(
"execute"
,
"/prforma_invoice"
,
"
F
"
);
common
.
saveOrderTracking
(
TRACE_NO
,
"ProFormaInvoice"
,
null
,
BATCH_CODE
,
"U"
,
"
ERROR
"
,
ThrowableUtil
.
getCaused
(
e
).
getMessage
()
+
" -- "
+
timeString
);
common
.
saveOrderTracking
(
TRACE_NO
,
"ProFormaInvoice"
,
null
,
BATCH_CODE
,
"U"
,
"
F
"
,
ThrowableUtil
.
getCaused
(
e
).
getMessage
()
+
" -- "
+
timeString
);
}
catch
(
Throwable
e1
)
{
}
catch
(
Throwable
e1
)
{
logger
.
error
(
timeString
,
e1
);
logger
.
error
(
timeString
,
e1
);
}
}
...
...
src/main/java/com/egolm/sso/services/price_list/PriceListServiceImpl.java
View file @
83222ec1
...
@@ -106,16 +106,16 @@ public class PriceListServiceImpl implements PriceListService {
...
@@ -106,16 +106,16 @@ public class PriceListServiceImpl implements PriceListService {
}
}
}
}
try
{
try
{
common
.
saveApiAccessLog
(
"execute"
,
"/price_list"
,
"S
UCCESS
"
);
common
.
saveApiAccessLog
(
"execute"
,
"/price_list"
,
"S"
);
common
.
saveOrderTracking
(
TRACE_NO
,
"PriceList"
,
null
,
KUNNR
,
"U"
,
"S
UCCESS
"
,
null
);
common
.
saveOrderTracking
(
TRACE_NO
,
"PriceList"
,
null
,
KUNNR
,
"U"
,
"S"
,
null
);
}
catch
(
Throwable
e
)
{
}
catch
(
Throwable
e
)
{
logger
.
error
(
timeString
,
e
);
logger
.
error
(
timeString
,
e
);
}
}
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
isSuccess
=
false
;
isSuccess
=
false
;
try
{
try
{
common
.
saveApiAccessLog
(
"execute"
,
"/price_list"
,
"
ERROR
"
);
common
.
saveApiAccessLog
(
"execute"
,
"/price_list"
,
"
F
"
);
common
.
saveOrderTracking
(
TRACE_NO
,
"PriceList"
,
null
,
KUNNR
,
"U"
,
"
ERROR
"
,
ThrowableUtil
.
getCaused
(
e
).
getMessage
()
+
" -- "
+
timeString
);
common
.
saveOrderTracking
(
TRACE_NO
,
"PriceList"
,
null
,
KUNNR
,
"U"
,
"
F
"
,
ThrowableUtil
.
getCaused
(
e
).
getMessage
()
+
" -- "
+
timeString
);
}
catch
(
Throwable
e1
)
{
}
catch
(
Throwable
e1
)
{
logger
.
error
(
timeString
,
e1
);
logger
.
error
(
timeString
,
e1
);
}
}
...
...
src/main/java/com/egolm/sso/services/shipping_notfirmation/ShippingNotificationServiceImpl.java
View file @
83222ec1
...
@@ -175,16 +175,16 @@ public class ShippingNotificationServiceImpl implements ShippingNotificationServ
...
@@ -175,16 +175,16 @@ public class ShippingNotificationServiceImpl implements ShippingNotificationServ
}
}
}
}
try
{
try
{
common
.
saveApiAccessLog
(
"execute"
,
"/shipping_notfirmation"
,
"S
UCCESS
"
);
common
.
saveApiAccessLog
(
"execute"
,
"/shipping_notfirmation"
,
"S"
);
common
.
saveOrderTracking
(
TRACE_NO
,
"ShippingNotification"
,
null
,
BATCH_CODE
,
"U"
,
"S
UCCESS
"
,
null
);
common
.
saveOrderTracking
(
TRACE_NO
,
"ShippingNotification"
,
null
,
BATCH_CODE
,
"U"
,
"S"
,
null
);
}
catch
(
Throwable
e
)
{
}
catch
(
Throwable
e
)
{
logger
.
error
(
timeString
,
e
);
logger
.
error
(
timeString
,
e
);
}
}
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
isSuccess
=
false
;
isSuccess
=
false
;
try
{
try
{
common
.
saveApiAccessLog
(
"execute"
,
"/shipping_notfirmation"
,
"
ERROR
"
);
common
.
saveApiAccessLog
(
"execute"
,
"/shipping_notfirmation"
,
"
F
"
);
common
.
saveOrderTracking
(
TRACE_NO
,
"ShippingNotification"
,
null
,
BATCH_CODE
,
"U"
,
"
ERROR
"
,
ThrowableUtil
.
getCaused
(
e
).
getMessage
()
+
" -- "
+
timeString
);
common
.
saveOrderTracking
(
TRACE_NO
,
"ShippingNotification"
,
null
,
BATCH_CODE
,
"U"
,
"
F
"
,
ThrowableUtil
.
getCaused
(
e
).
getMessage
()
+
" -- "
+
timeString
);
}
catch
(
Throwable
e1
)
{
}
catch
(
Throwable
e1
)
{
logger
.
error
(
timeString
,
e1
);
logger
.
error
(
timeString
,
e1
);
}
}
...
...
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