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
d57bc306
Commit
d57bc306
authored
Sep 15, 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
ce80ccd2
c9fe688b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
3 deletions
+8
-3
DescribeConst.php
application/library/Our/DescribeConst.php
+1
-0
RefundService.php
application/models/Business/Order/RefundService.php
+1
-0
ShopkeeperService.php
application/models/Business/Store/ShopkeeperService.php
+1
-0
Order.php
application/models/DAO/Order/Order.php
+5
-3
No files found.
application/library/Our/DescribeConst.php
View file @
d57bc306
...
@@ -95,6 +95,7 @@ class DescribeConst
...
@@ -95,6 +95,7 @@ class DescribeConst
const
afterPay
=
'货到付款'
;
const
afterPay
=
'货到付款'
;
const
alipay
=
'支付宝支付'
;
const
alipay
=
'支付宝支付'
;
const
tenPay
=
'qq支付'
;
const
tenPay
=
'qq支付'
;
const
wxProgrom
=
'微信小程序支付'
;
//运费类型
//运费类型
const
serviceFee
=
'服务费'
;
const
serviceFee
=
'服务费'
;
const
freightFee
=
'运费'
;
const
freightFee
=
'运费'
;
...
...
application/models/Business/Order/RefundService.php
100755 → 100644
View file @
d57bc306
...
@@ -461,6 +461,7 @@ class RefundServiceModel extends \Business\AbstractModel
...
@@ -461,6 +461,7 @@ class RefundServiceModel extends \Business\AbstractModel
}
}
if
(
!
empty
(
$address
)){
if
(
!
empty
(
$address
)){
$address
[
'isDefault'
]
=
(
int
)
$address
[
'isDefault'
];
$address
[
'isDefault'
]
=
(
int
)
$address
[
'isDefault'
];
$address
[
'company'
]
=
isset
(
$address
[
'company'
])
?
$address
[
'company'
]
:
''
;
$info
[
'dAddressInfo'
]
=
$address
;
$info
[
'dAddressInfo'
]
=
$address
;
}
else
{
}
else
{
$info
[
'dAddressInfo'
]
=
new
\stdClass
();
$info
[
'dAddressInfo'
]
=
new
\stdClass
();
...
...
application/models/Business/Store/ShopkeeperService.php
View file @
d57bc306
...
@@ -73,6 +73,7 @@ class ShopkeeperServiceModel extends \Business\AbstractModel
...
@@ -73,6 +73,7 @@ class ShopkeeperServiceModel extends \Business\AbstractModel
$data
[
'todayOrderCount'
]
=
$storeStats
[
'todayOrderCount'
];
$data
[
'todayOrderCount'
]
=
$storeStats
[
'todayOrderCount'
];
$data
[
'todayOrderTotal'
]
=
$storeStats
[
'todayOrderTotal'
];
$data
[
'todayOrderTotal'
]
=
$storeStats
[
'todayOrderTotal'
];
$data
[
'tadayFavCount'
]
=
$storeFavariteCount
[
'todayFavCount'
];
$data
[
'tadayFavCount'
]
=
$storeFavariteCount
[
'todayFavCount'
];
$data
[
'todayFavCount'
]
=
$storeFavariteCount
[
'todayFavCount'
];
return
$data
;
return
$data
;
}
}
...
...
application/models/DAO/Order/Order.php
View file @
d57bc306
...
@@ -279,9 +279,11 @@ class OrderModel extends \DAO\AbstractModel
...
@@ -279,9 +279,11 @@ class OrderModel extends \DAO\AbstractModel
case
ApiConst
::
alipay
:
case
ApiConst
::
alipay
:
$payName
=
DescribeConst
::
alipay
;
$payName
=
DescribeConst
::
alipay
;
break
;
break
;
case
case
ApiConst
::
tenpay
:
$payName
=
ApiConst
::
tenpay
:
$payName
=
DescribeConst
::
tenPay
;
DescribeConst
::
tenPay
;
break
;
case
ApiConst
::
wxProgram
:
$payName
=
DescribeConst
::
wxProgrom
;
break
;
break
;
default
:
default
:
break
;
break
;
...
...
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