批发市场 : 建立分销商、供应商关系
建立关系流程:批发市场申请成为分销商 -> 供应商同意 -> 成为分销商
一、申请成为分销商(供应商不能是分销商)
文件路径:shop/controllers/Supplier/GoodsCtl.php
视图:shop/views/default/Supplier/GoodsCtl/goodslist.php
~~~
<a class="apply_dist" data-id = <?=$val['shop_id']?> style="padding: 3.5px 50px;background-color: #e45050;color: white;"><?=__('申请分销商')?></a>
$(".apply_dist").click(function (){
var self_shop_type = <?=$shop_info['shop_type']?>;
var shop_id = $(this).attr("data-id");
if(self_shop_type == 2){
Public.tips.error("<?=__('供货商不能参与分销')?>!");
}else{
location.href = SITE_URL+"?ctl=Seller_Supplier_Supplier&met=apply&typ=e&shop_id="+shop_id;
}
})
~~~
申请路径:shop/controllers/Seller/Supplier/SupplierCtl.php
申请视图:shop/views/default/Seller/Supplier/SupplierCtl/apply.php
参数:shop_id
方法:apply()
~~~
if($shop_id)
{
$shop_info = $shopBaseModel->getOneByWhere(array('shop_id'=>$shop_id));
$cat_row['shop_id'] = $shop_id;
$shop_cat = $shopGoodCatModel->getGoodCatList($cat_row, array());
}
~~~
二、供应商审核分销商
文件路径:shop/controllers/Seller/Supplier/DistributorCtl.php
视图:shop/views/default/Seller/Supplier/DistributorCtl/index.php
* 审核通过:方法:edit_statu()
~~~
if(request_string('act') && request_string('act') == 'agree')
{
$field_row['distributor_enable'] = 1;
$field_row['distributor_cat_ids'] = $shop_dist_base['distributor_new_cat_ids'];
$field_row['distributor_new_cat_ids'] = '';
$flag=$this->shopDistributorModel->editShopDistributor($shop_distributor_id,$field_row);
//发送消息
$MessageModel->sendMessage('dist apply statu',$dist_shop_base['user_id'], $dist_shop_base['user_name'], $order_id = NULL, $shop_name=null, 1, 1, $end_time = Null,$common_id=null);
}
elseif(request_string('act') && request_string('act') == 'del')
{
$flag=$this->shopDistributorModel->removeShopDistributor($shop_distributor_id);
//删除分销商品
$goodsCommonModel = new Goods_CommonModel();
$commons =$goodsCommonModel -> getByWhere(array('shop_id'=>$dist_shop_base['shop_id'],'supply_shop_id'=>Perm::$shopId));
if(!empty($commons))
{
foreach ($commons as $key => $value) {
$goodsCommonModel->removeCommon($value['common_id']);
//发送消息
$des = '供货商删除你的分销权限';
$MessageModel->sendMessage('del goods',$dist_shop_base['user_id'], $dist_shop_base['user_name'], $order_id = NULL, $shop_name=null, 1, 1, $end_time = Null,$value['common_id'],$goods_id=null,$des);
}
}
}
~~~
* 分销商审核不通过:
视图:shop/views/default/Seller/Supplier/DistributorCtl/index.php
~~~
<div id="apply-disagree" class="eject_con" >
<input type="hidden" name="shop_grade_id" id="shop_grade_id" value="" />
<textarea id="reason"></textarea>
<div class="eject_con mb10">
<div class="bottom"><a id="btn_apply_submit" class="button bbc_seller_submit_btns" href="javascript:void(0);"><?=__('提交')?></a></div>
</div>
</div>
$("#btn_apply_submit").click(function (){
var shop_distributor_id = $("#shop_distributor_id").val();
var reason = $("#reason").val();
if(reason.length == 0){
Public.tips.error('<?=__('请填写原因!')?>');
return false;
}
var ajax_url = './index.php?ctl=Seller_Supplier_Distributor&met=apply_disagree&typ=json';
$.ajax({
url:ajax_url,
data:{shop_distributor_id:shop_distributor_id,reason:reason},
success:function(a){
. . .
}
})
})
~~~
方法:apply_disagree()
~~~
//不通过分销商申请,添加原因
$flag = $this->shopDistributorModel->editShopDistributor($shop_distributor_id,$field_row);
~~~
- 序言
- 系统要求
- 版本更新日志
- 远丰商城技术对接说明
- 开发指导
- 系统架构
- 负载集群
- 云存储
- 框架内容
- 基础
- 开发规范
- 目录结构
- 架构
- 架构总览
- 数据库
- 数据库连接
- 基本使用
- 缓存
- 配置
- 路由
- 数据字典
- ucenter
- shop
- paycenter
- ucenter_admin
- shop_admin
- paycenter_admin
- shop1
- shop2
- shop3
- 通讯内容
- 商家中心
- 顶部导航栏
- 店铺信息栏
- 店铺及商品提示栏
- 交易提示栏
- 销售情况统计栏
- 集群架构图
- 单品销量排行栏
- 店铺运营推广栏
- 平台联系方式栏
- 订单物流
- 商品
- 商品列表
- 商品详情
- 商品发布与编辑
- 分销商品
- 关联版式
- 商品规格
- 图片空间
- 淘宝导入
- 订单流程
- 交易订单
- 订单退款/退货
- 促销
- 团购管理
- 加价购
- 限时折扣
- 满即送
- 代金券管理
- 分销
- 店铺
- 店铺设置
- 自销产品供应商
- 实体店铺
- 品牌申请
- 店铺信息
- 消费者保障服务
- 门店账号
- 分销商--产品供应商
- 分销明细
- 批发市场
- 商家微信公众号
- 售后服务
- 咨询管理
- 投诉管理
- 退款管理
- 退货管理
- 杂项
- 远程上传图片
- 接口(废弃,参考最外层接口项)
- 接口说明
- 品牌
- 商品规格
- 商品类型
- 商品分类
- 商品
- 订单
- 商品/店铺收藏
- 足迹
- 退款及退货
- 商家店铺
- 会员
- 入驻协议
- 订单接口
- 商品接口
- 订单物流接口
- 商家中心接口
- 促销接口
- 快递鸟物流接口
- 代金券接口
- 首页版块
- 团购
- 平台红包
- 限时折扣接口
- 拼团接口
- wap首页模板
- JS
- 银联支付
- 多语言
- 商品评分
- 图片加载
- 买家申请退款退货
- 商家退款退货
- 平台退款退货
- 添加发票
- 提交订单
- 确认订单
- 运费销售区域
- 获取会员地址
- 充值
- 导出XLS
- 商城系统集成
- 多语言实现
- 三级分销推广链接发展推广员
- app.ini.php
- 去分销
- 版本更新
- 物流支持
- 运营人员建议
- 业务逻辑
- 统计结算
- 客服消息
- 账号
- 三级分销
- IM
- 配置
- 平台帐号
- 活动数据表说明
- 接口
- 数据库中间键
- MyCat的优势
- 概念说明
- Mycat的下载及安装
- 参数配置案列
- Mycat读写分离
- 基本命令
- 常见错误