切换导航条
此项目
正在载入...
登录
anyv
/
xkeasy
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
anyv
6 years ago
提交
ce1466c0ecc071ec2a1ad8d043a686edf652f3ac
1 个父辈
bbf5d25f
1 个管道 的构建
通过
耗费 0 秒
5
变更
1
构建
1
隐藏空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
21 行增加
和
3 行删除
app/portal/controller/ShopcartController.php
app/portal/controller/ShopcartController.php
查看文件 @
ce1466c
...
...
@@ -113,7 +113,6 @@ class ShopcartController extends WeChatBaseController{
*/
public
function
shop_cart_pay
(){
dump
(
$_POST
[
'myprice'
]);
die
;
$uid
=
cmf_get_current_user_id
();
$cart_id
=
explode
(
','
,
$_POST
[
'id'
]);
foreach
(
$cart_id
as
$key
=>
$val
){
...
...
@@ -134,9 +133,28 @@ class ShopcartController extends WeChatBaseController{
$indent
[
'uid'
]
=
$uid
;
$indent
[
'state'
]
=
4
;
$indent
[
'order_number'
]
=
date
(
'Ymd'
)
.
substr
(
implode
(
NULL
,
array_map
(
'ord'
,
str_split
(
substr
(
uniqid
(),
7
,
13
),
1
))),
0
,
8
);
$indent
[
'money'
]
=
$_POST
[
'myprice'
];
$indent
[
'create_time'
]
=
time
();
$indent
[
'indent_type'
]
=
1
;
$book_num
=
0
;
foreach
(
$data
as
$key
=>
$val
){
$book_num
+=
$val
[
'book_num'
];
}
$indent
[
'book_num'
]
=
$book_num
;
$indet_id
=
Db
::
name
(
'indent'
)
->
insertGetId
(
$indent
);
foreach
(
$data
as
$key
=>
$val
){
$indent_goods
[
'book_name'
]
=
$val
[
'book_name'
];
$indent_goods
[
'pricing'
]
=
$val
[
'pricing'
];
$indent_goods
[
'price'
]
=
$val
[
'price'
];
$indent_goods
[
'number'
]
=
$val
[
'book_num'
];
$indent_goods
[
'thumbnail'
]
=
$val
[
'show_img'
];
$indent_goods
[
'indent_id'
]
=
$indet_id
;
Db
::
name
(
'indent_goods '
)
->
insert
(
$indent_goods
);
}
$ret
[
'type'
]
=
1
;
return
1
;
$ret
[
'indet_id'
]
=
$indet_id
;
$res
=
json_encode
(
$ret
);
return
$res
;
}
elseif
(
$data
[
0
][
'type'
]
==
2
){
return
2
;
}
...
...
请
注册
或
登录
后发表评论