Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
my-yaf-project
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
chenchuanwen
my-yaf-project
Commits
de056b8a
Commit
de056b8a
authored
Dec 02, 2018
by
liuyuzhen
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master_dev' of git.shenbd.com:qm-develop/shenbd into lyz
parents
6176d5c8
30bb641d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
262 additions
and
81 deletions
+262
-81
GoodsCommonService.php
application/models/Business/Goods/GoodsCommonService.php
+2
-6
GroupSaleService.php
application/models/Business/Goods/GroupSaleService.php
+8
-6
OrderService.php
application/models/Business/Order/OrderService.php
+13
-2
ShareService.php
application/models/Business/User/ShareService.php
+7
-0
store.phtml
application/views/index/store.phtml
+154
-67
store_bak.phtml
application/views/index/store_bak.phtml
+78
-0
No files found.
application/models/Business/Goods/GoodsCommonService.php
View file @
de056b8a
...
...
@@ -496,12 +496,8 @@ class GoodsCommonServiceModel extends \Business\AbstractModel
$lng
=
$param
[
'lng'
];
$lat
=
$param
[
'lat'
];
}
$in_store_service_flag
=
0
;
if
(
$lng
&&
$lat
){
$location
=
array
(
'lat'
=>
$lat
,
'lng'
=>
$lng
);
$in_store_service
=
\Store\StoreUtil
::
getInstance
()
->
checkAddressInServiceArea
(
$location
,
$commonInfo
[
'store_id'
]);
$in_store_service
&&
$in_store_service_flag
=
1
;
}
$storeInfo
=
\DAO\StoreModel
::
getInstance
()
->
get
(
$commonInfo
[
'store_id'
],
false
);
$in_store_service_flag
=
\DAO\StoreModel
::
getInstance
()
->
checkAddressInServiceArea
(
array
(
'lng'
=>
$lng
,
'lat'
=>
$lat
),
$storeInfo
);
//所在地
$area
=
''
;
if
(
$commonInfo
[
'areaid_1'
]
&&
$commonInfo
[
'areaid_2'
]){
...
...
application/models/Business/Goods/GroupSaleService.php
View file @
de056b8a
...
...
@@ -38,12 +38,14 @@ class GroupSaleServiceModel extends \Business\AbstractModel {
$lng
=
$param
[
'lng'
];
$lat
=
$param
[
'lat'
];
}
$in_store_service_flag
=
0
;
if
(
$lng
&&
$lat
){
$location
=
array
(
'lat'
=>
$lat
,
'lng'
=>
$lng
);
$in_store_service
=
\Store\StoreUtil
::
getInstance
()
->
checkAddressInServiceArea
(
$location
,
$data
[
'store_id'
]);
$in_store_service
&&
$in_store_service_flag
=
1
;
}
// $in_store_service_flag=0;
// if($lng && $lat){
// $location = array('lat'=>$lat,'lng'=>$lng);
// $in_store_service = \Store\StoreUtil::getInstance()->checkAddressInServiceArea($location,$data['store_id']);
// $in_store_service && $in_store_service_flag = 1;
// }
$storeInfo
=
\DAO\StoreModel
::
getInstance
()
->
get
(
$data
[
'store_id'
],
false
);
$in_store_service_flag
=
\DAO\StoreModel
::
getInstance
()
->
checkAddressInServiceArea
(
array
(
'lng'
=>
$lng
,
'lat'
=>
$lat
),
$storeInfo
);
$data
[
'inStoreService'
]
=
$in_store_service_flag
;
$data
[
'state'
]
=
\Our\ApiConst
::
cartGoodsOnline
;
...
...
application/models/Business/Order/OrderService.php
View file @
de056b8a
...
...
@@ -776,11 +776,22 @@ class OrderServiceModel extends \Business\AbstractModel
file_put_contents
(
$this
->
baseDir
.
\Our\PathConst
::
orderCloseWaitRecieveOrder
,
$endTime
);
}
public
function
updateOrderGoodsStoregeByOrderIds
(
$orderIds
){
public
function
updateOrderGoodsStoregeByOrderIds
(
$orderIds
,
$orderGoodsId
=
false
){
$orderGoodsDao
=
\DAO\Order\OrderGoodsModel
::
getInstance
(
DbNameConst
::
masterDBConnectName
);
$orderConfirmUtilDao
=
OrderConfirmUtil
::
getInstance
(
DbNameConst
::
masterDBConnectName
);
//更新商品库存
$orderGoods
=
$orderGoodsDao
->
getOrderGoodsByOrderIds
(
$orderIds
,
$this
->
getGoodsDetailField
());
$orderGoodses
=
$orderGoodsDao
->
getOrderGoodsByOrderIds
(
$orderIds
,
$this
->
getGoodsDetailField
());
$orderGoods
=
array
();
if
(
!
empty
(
$orderGoodsId
)){
foreach
(
$orderGoodses
as
$orderGood
){
if
(
$orderGood
[
'recId'
]
==
$orderGoodsId
){
array_push
(
$orderGoods
,
$orderGood
);
}
}
}
if
(
empty
(
$orderGoods
)){
$orderGoods
=
$orderGoodses
;
}
$storeCartsList
=
array
();
$storeCarts
=
array
();
$storeCarts
[
'storeCarts'
]
=
array
();
...
...
application/models/Business/User/ShareService.php
View file @
de056b8a
...
...
@@ -41,6 +41,7 @@ class ShareServiceModel extends \Business\AbstractModel
$data
[
'goodsId'
]
=
$goods
[
'goods_id'
];
$data
[
'goodsCommonid'
]
=
$goods
[
'goods_commonid'
];
$data
[
'storeId'
]
=
$goods
[
'store_id'
];
}
}
if
(
$data
[
'type'
]
==
ApiConst
::
shareGroup
){
...
...
@@ -60,6 +61,12 @@ class ShareServiceModel extends \Business\AbstractModel
$data
[
'imgUrl'
]
=
$storeDao
->
getStoreLabelSrc
(
$store
[
'store_label'
]);
$data
[
'storeName'
]
=
$store
[
'store_name'
];
$data
[
'desc'
]
=
$store
[
'store_notice'
];
$data
[
'storeWorkingtime'
]
=
$store
[
'store_workingtime'
];
$data
[
'buyerDistribution'
]
=
$store
[
'buyer_distribution'
];
$data
[
'sellerDistribution'
]
=
$store
[
'seller_distribution'
];
$data
[
'startShippingPrice'
]
=
$store
[
'start_shipping_price'
];
$data
[
'freeShippingPrice'
]
=
$store
[
'free_shipping_price'
];
}
}
...
...
application/views/index/store.phtml
View file @
de056b8a
This diff is collapsed.
Click to expand it.
application/views/index/store_bak.phtml
0 → 100644
View file @
de056b8a
<!DOCTYPE html>
<html
lang=
"en"
>
<head><meta
http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0,user-scalable=no"
>
<title></title>
<style
type=
"text/css"
>
html
,
body
,
p
,
span
,
div
,
img
{
margin
:
0
;
padding
:
0
;}
body
{
width
:
750px
;}
.shareC
{
width
:
750px
;
padding
:
0
;
text-align
:
center
;
font-family
:
"黑体"
;
color
:
#212121
;}
.header
{
background
:
url(/data/img/headerBg.png)
;
padding-top
:
100px
;
height
:
415px
;
}
.bgBD
{
width
:
162px
;
height
:
162px
;
background-color
:
white
;
border-radius
:
50%
;
-moz-border-radius
:
50%
;
-webkit-border-radius
:
50%
;
margin
:
0
auto
;}
#headerBg
{
width
:
160px
;
height
:
160px
;
border-radius
:
50%
;
-moz-border-radius
:
50%
;
-webkit-border-radius
:
50%
;
margin
:
1px
;}
#title
{
font-size
:
34px
;
margin-top
:
24px
;}
.address
{
font-size
:
28px
;
line-height
:
36px
;
padding
:
50px
110px
0
110px
;
height
:
108px
;
display
:
block
;
display
:
-webkit-box
;
-webkit-line-clamp
:
3
;
-webkit-box-orient
:
vertical
;
overflow
:
hidden
;
text-overflow
:
ellipsis
;}
.noticePart
{
width
:
560px
;
margin
:
16px
auto
0
auto
;
background
:
url(/data/img/noticeBg.png)
;}
.noticePart
p
{
height
:
44px
;
font-size
:
20px
;
line-height
:
22px
;
padding
:
68px
28px
32px
28px
;
}
#notice
{
max-width
:
504px
;
display
:
block
;
display
:
-webkit-box
;
-webkit-line-clamp
:
2
;
-webkit-box-orient
:
vertical
;
overflow
:
hidden
;
text-overflow
:
ellipsis
;}
.qrcode
{
background
:
url(/data/img/flower.png)
;
height
:
488px
;
margin
:
6px
auto
0
auto
;}
#qrImg
{
margin-top
:
80px
;}
#qrcodeImg
img
{
margin
:
0
auto
;}
.footer
{
font-size
:
30px
;
height
:
66px
;
line-height
:
66px
;
padding
:
0
0
55px
0
;}
.footer
img
{
vertical-align
:
bottom
;
display
:
inline-block
;}
</style>
</head>
<body>
<div
class=
"shareC"
>
<div
class=
"header"
>
<div
class=
"bgBD"
>
<img
src=
""
id=
"headerBg"
/>
</div>
<p
id=
"title"
></p>
<p
class=
"address"
>
地址:
<span
id=
"address"
></span></p>
</div>
<div
class=
"noticePart"
>
<p>
<span
id=
"notice"
></span>
</p>
</div>
<div
class=
"qrcode"
id=
"qrcode"
>
<img
id=
"qrImg"
src=
""
/>
<div
id=
"qrcodeImg"
></div>
<p
id=
"tip"
></p>
</div>
<div
class=
"footer"
>
<img
src=
"/data/img/logo.png"
/>
我的身边店
</div>
</div>
<script
type=
"text/javascript"
src=
"/data/js/qrcode.min.js"
></script>
<script
type=
"text/javascript"
>
var
pageObj
=
{
type
:
"
<?php
echo
$params
[
'shareType'
];
?>
"
,
//1或2是小程序码,其它是二维码
id
:
"
<?php
echo
$params
[
'id'
];
?>
"
,
//1是小程序码,2是二维码,
headerBg
:
"
<?php
echo
$params
[
'imgUrl'
];
?>
"
,
url
:
"
<?php
echo
$params
[
'qrCode'
];
?>
"
,
qrImg
:
"
<?php
echo
$params
[
'qrCode'
];
?>
"
,
title
:
"
<?php
echo
$params
[
'storeName'
];
?>
"
,
address
:
"
<?php
echo
$params
[
'address'
];
?>
"
,
notice
:
"
<?php
echo
$params
[
'desc'
];
?>
"
};
if
(
pageObj
.
notice
==
null
||
pageObj
.
notice
==
""
)
pageObj
.
notice
=
"暂无公告"
;
var
excute
=
[
"title"
,
"address"
,
"notice"
];
excute
.
forEach
(
function
(
v
,
i
){
document
.
getElementById
(
v
).
innerHTML
=
pageObj
[
v
];
});
document
.
getElementById
(
"headerBg"
).
src
=
pageObj
.
headerBg
;
new
QRCode
(
document
.
getElementById
(
'qrcodeImg'
),
pageObj
.
url
);
// if(pageObj.type
<=
2
){
// document.getElementById("qrImg").src = pageObj.qrImg;}
// else{
// new QRCode(document.getElementById('qrcodeImg'), pageObj.url);
// }
</script>
</body>
</html>
\ No newline at end of file
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