Toggle navigation
Toggle navigation
This project
Loading...
Sign in
ufo
/
ufo-platform
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
Lixiaodi
7 years ago
Commit
269bd3578a62d19571478216f252025276405ccd
2 parents
75b64a18
53e339a0
Merge branch 'master' of
http://git.yoho.cn/ufo/ufo-platform
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
4 deletions
dal/src/main/resources/META-INF/mybatis/StoragePriceMapper.xml
dal/src/main/resources/META-INF/mybatis/UfoProductDetailsMapper.xml
web/src/main/webapp/html/commodityManage/commodityPoolManage/commodityPoolDetail.html
web/src/main/webapp/js/global.js
dal/src/main/resources/META-INF/mybatis/StoragePriceMapper.xml
View file @
269bd35
...
...
@@ -109,7 +109,7 @@
</select>
<select
id=
"selectStoragePriceCount"
resultType=
"java.lang.Integer"
>
select count(*) from
from
storage_price where
<include
refid=
"skupPageCondition2"
/>
select count(*) from storage_price where
<include
refid=
"skupPageCondition2"
/>
</select>
<select
id=
"selectStoragePriceList"
resultMap=
"BaseResultMap"
>
...
...
dal/src/main/resources/META-INF/mybatis/UfoProductDetailsMapper.xml
View file @
269bd35
...
...
@@ -42,9 +42,9 @@
LEFT JOIN brand
ON product.brand_id = brand.id
LEFT JOIN product_sort sort1
ON product.
series
_id = sort1.id
ON product.
mid_sort
_id = sort1.id
LEFT JOIN product_sort sort2
ON
sort1.parent_id=
sort2.id
ON
product.max_sort_id =
sort2.id
</sql>
<select
id=
"selectProductDetailsCount"
resultType=
"integer"
>
...
...
web/src/main/webapp/html/commodityManage/commodityPoolManage/commodityPoolDetail.html
View file @
269bd35
...
...
@@ -32,6 +32,7 @@
<a
id=
"searchLinkButton"
class=
"easyui-linkbutton btn-info"
data-options=
"iconCls:'icon-search'"
>
筛选
</a>
<a
id=
"searchAllLinkButton"
class=
"easyui-linkbutton btn-info"
data-options=
"iconCls:'icon-search'"
>
全部
</a>
<a
id=
"returnList"
class=
"easyui-linkbutton btn-info"
data-options=
"iconCls:'icon-search'"
>
返回列表
</a>
</div>
</div>
<div
region=
"center"
>
...
...
@@ -59,6 +60,12 @@
$
(
function
()
{
$
(
'#returnList'
).
linkbutton
({
onClick
:
function
()
{
location
.
href
=
contextPath
+
"/html/commodityManage/commodityPoolManage/commodityPoolManage.html"
;
}
});
var
poolId
=
parseURL
(
window
.
location
.
href
).
poolId
;
$
(
"#productCode"
).
textbox
({
...
...
web/src/main/webapp/js/global.js
View file @
269bd35
...
...
@@ -46,7 +46,7 @@ $.ajaxSetup({
text
:
"重新登录"
,
iconCls
:
"icon-no"
,
handler
:
function
()
{
window
.
top
.
location
.
href
=
"http://
admin.portal.yohobuy.com/login
"
;
window
.
top
.
location
.
href
=
"http://
java-ufo-platform.test3.ingress.dev.yohocorp.com/ufoPlatform/html/login.html
"
;
}
}]
});
...
...
Please
register
or
login
to post a comment