官方大白话:
core/mobile/order/pay.php支付完成后所执行的php.将会调用success这个方法
core/mobile/order/create.php 创建订单但未支付的表
template/mobile/default/order/pay/success.html 订单支付后跳转的页面
积分表:
ims_ewei_shop_sns_member //人人商城积分表
审核通过后,可以进行操作增加积分的php:plugin/sns/core/web/posts.php
多商户端页面
plugin/merch/template/web_v3/manage/sysset/index.html
plugin/merch/core/web/manage/sysset/index.php
手机端全部订单对应的页面
plugin/merch/template/mobile/default/order/index.html
core/mobile/order/index.php//对应的php界面
手机端订单详情页面
template/mobile/default/order/detail.html
人人商城主商户增加页面的应用未知
template/web_v3/plugins/index.html
人人商城核销完后执行的php路径
core/mobile/verify/index.php(success方法)
人人商城中区域代理只有快递才能参与分红,上门自提的无法参与
经过查看数据表中发现,addressid和address为空作为的判断条件。只要给这两个赋值即可。
我采用的方法是,在订单支付的时候,给这个订单插入一个addressid和address,即可。
人人商城后台全部订单页面
template/web_v3/order/list.html
人人商城评价页面
plugin/diypage/template/mobile/default/detail.html
人人商城div界面 进店逛逛
template/mobile/default/goods/detail.html
人人商城提现申请页面
template/web_v3/finance/log/withdraw.html
//对应的php
core/web/finance/log.php
人人商城创建订单页面
template/mobile/default/order/create.html
static/js/app/biz/order/create.js
人人商城会员等级修改页面
template/web_v3/member/level/post.html
人人商城商品组页面
html:template/web_v3/goods/group/post.html
php:core/web/goods/group.php
人人分销
A拉B入伙,则A是B的一级。
B拉C入伙,则B是C的一级,A是C的二级。
人人商城分销订单的后台页面
plugin/commission/template/web_v3/statistics/order.html
手机佣金提现对应的页面
plugin/commission/template/mobile/default/apply.html
后台分销等级页面:
plugin/commission/template/web_v3/level/
后台分销等级弹出框页面的html和对应修改的php
plugin/commission/template/web_v3/level/post.html
plugin/commission/core/web/level.php
订单完成后执行的表
ewei_shopv2/plugin/commission/core/model.php
public function checkOrderFinish($orderid = "")
商家入驻申请页面移动端
/addons/ewei_shopv2/plugin/merch/template/mobile/default/register.html
/addons/ewei_shopv2/plugin/merch/core/mobile/register.php
会员中心页面移动端
/addons/ewei_shopv2/template/mobile/default/member/index.html
--