Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
S
shop
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
曲欣亮
shop
Commits
aae30e04
Commit
aae30e04
authored
Dec 10, 2019
by
Quxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x
parent
743f6462
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
ShopApplication.java
src/main/java/com/egolm/shop/ShopApplication.java
+1
-0
UserServiceImpl.java
...ain/java/com/egolm/shop/service/impl/UserServiceImpl.java
+1
-1
No files found.
src/main/java/com/egolm/shop/ShopApplication.java
View file @
aae30e04
...
...
@@ -19,6 +19,7 @@ public class ShopApplication {
private
static
ApplicationContext
applicationContext
;
public
static
void
main
(
String
[]
args
)
{
System
.
setProperty
(
"java.io.tmpdir"
,
"temp"
);
applicationContext
=
SpringApplication
.
run
(
ShopApplication
.
class
,
args
);
}
...
...
src/main/java/com/egolm/shop/service/impl/UserServiceImpl.java
View file @
aae30e04
...
...
@@ -543,7 +543,7 @@ public class UserServiceImpl implements UserService {
Map
<
String
,
Object
>
custMap
=
jdbcTemplate
.
queryForMap
(
"select * from tCustomer where sCustNO = ?"
,
custNo
);
String
sMobile
=
(
String
)
custMap
.
get
(
"sMobile"
);
jdbcTemplate
.
update
(
"update tCustomer set sCustName = ?, nStoreCount = ? where sCustNO = ?"
,
customerName
,
storeCount
,
custNo
);
jdbcTemplate
.
update
(
"update tShop set nTag =
nTag^8
|4 where sShopNO = ? and nTag&2 = 0"
,
shopNo
);
jdbcTemplate
.
update
(
"update tShop set nTag =
(nTag|8-8)
|4 where sShopNO = ? and nTag&2 = 0"
,
shopNo
);
jdbcTemplate
.
update
(
"update tShop set sShopName = ?, sMainBusiness = ?, sProvinceID = ?, sCityID = ?, sDistrictID = ?, sProvince = ?, sCity = ?, sDistrict = ?, sAddress = ?, sEmail = ?, sSalesmanNO1 = ?, sMemo = ? where sShopNO = ?"
,
shopName
,
mainBusiness
,
provinceId
,
cityId
,
districtId
,
provinceName
,
cityName
,
districtName
,
address
,
email
,
salesmanNO1
,
memo
,
shopNo
);
Integer
count
=
jdbcTemplate
.
queryForInt
(
"select count(*) from tShopkeeperShop where sShopNO = ? and sSalesmanNO = ?"
,
shopNo
,
salesmanNO1
);
...
...
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