Commit beaedab1 authored by clone's avatar clone

Merge branch 'test-v1.9' into test

parents 58e503ec 91df5942
......@@ -72,7 +72,12 @@ class Basic extends Controller
$this->params = $this->request->param() != null ? $this->request->param() : null;
}
$requestPath = $this->request->routeInfo()["rule"][0] . "/" . $this->request->routeInfo()["rule"][1];
// $requestPath = $this->request->routeInfo()["rule"][0] . "/" . $this->request->routeInfo()["rule"][1];
if (isset($this->request->routeInfo()["var"]["check_status"])) {
$requestPath = $this->request->routeInfo()["rule"][0] . "/" . $this->request->routeInfo()["rule"][1]. "/" . $this->request->routeInfo()["var"]["check_status"];
} else {
$requestPath = $this->request->routeInfo()["rule"][0] . "/" . $this->request->routeInfo()["rule"][1];
}
if (!in_array($requestPath, $this->filterVerify)) {
$this->userVerify();
......
define(['doT', 'text!temp/commissionTotal_template_tpl.html', 'css!style/home.css', 'ckfinder', 'ckfinderStart', 'pagination', 'bootstrapJs'], function(doT, template) {
business = {
pageNo: 1,
/*第几页*/
pageSize: 10,
/*每页显示多少条*/
id: '',
house_id: '',
type: '',
valueCurrent: '',
ajaxObj: '',
stopstatus: true,
ldHtml: $('.phone_list'),
boxphoto: '',
exclusive_id: 0,
init: function() {
//初始化dot
$("body").append(template);
business.getList();
business.event();
business.getDistrict();
},
event: function() {
var _doc = $(document);
$("#search").click(function() {
business.getList(1);
});
$("#export").click(function() { //导出列表
business.exportList();
});
business = {
pageNo: 1,
/*第几页*/
pageSize: 10,
/*每页显示多少条*/
id: '',
house_id: '',
type: '',
valueCurrent: '',
ajaxObj: '',
stopstatus: true,
ldHtml: $('.phone_list'),
boxphoto: '',
exclusive_id: 0,
init: function() {
//初始化dot
$("body").append(template);
business.getList();
business.event();
business.getDistrict();
},
event: function() {
var _doc = $(document);
$("#search").click(function() {
business.getList(1);
});
$("#export").click(function() { //导出列表
business.exportList();
});
$("#reset").click(function() { //重置
document.getElementById("form_search").reset();
});
$("#reset").click(function() { //重置
document.getElementById("form_search").reset();
});
$(document).delegate(".del_modal", "click", function() {
business.id = $(this).attr("data-id");
$(document).delegate(".del_modal", "click", function() {
business.id = $(this).attr("data-id");
});
$(document).delegate(".caozuo", "click", function() { //点击操作记录
business.Caozuo();
});
// 时间轴
$(document).delegate(".timeline", "click", function() { //时间轴
// business.house_id = $ (this).attr ("data-id");
business.Timeline();
});
// 编辑
$(document).delegate(".edit", "click", function() { //点击编辑
business.house_id = $(this).attr("data-id");
business.Edit();
});
$(document).delegate(".is_pass", "click", function() { //点击编辑
follow.house_id = $(this).attr("data-id");
console.log(follow.house_id);
});
$(document).delegate("#confirm_edit", "click", function() { //点击编辑确定
business.confirmEdit();
});
$(document).delegate("#new-commission", "click", function() { //点击分佣提成
business.newCommission();
business.Caozuo();
});
//table切换
$(document).delegate("#information", "click", function() {
business.Information();
});
$(document).delegate("#fees", "click", function() {
console.log(business.house_id);
business.Fees();
});
$(document).delegate("#records", "click", function() {
business.Records();
});
});
$(document).delegate(".caozuo", "click", function() { //点击操作记录
business.Caozuo();
});
// 时间轴
$(document).delegate(".timeline", "click", function() { //时间轴
// business.house_id = $ (this).attr ("data-id");
business.Timeline();
});
// 编辑
$(document).delegate(".edit", "click", function() { //点击编辑
business.house_id = $(this).attr("data-id");
business.Edit();
});
$(document).delegate(".is_pass", "click", function() { //点击编辑
follow.house_id = $(this).attr("data-id");
console.log(follow.house_id);
});
$(document).delegate("#confirm_edit", "click", function() { //点击编辑确定
business.confirmEdit();
});
$(document).delegate("#new-commission", "click", function() { //点击分佣提成
business.newCommission();
business.Caozuo();
});
//table切换
$(document).delegate("#information", "click", function() {
business.Information();
});
$(document).delegate("#fees", "click", function() {
console.log(business.house_id);
business.Fees();
});
$(document).delegate("#records", "click", function() {
business.Records();
});
},
Timeline: function() { //获取时间轴
$.ajax({
'type': 'GET',
'url': '/index/selectReportAll',
data: {
"order_id": business.house_id
},
Timeline: function() { //获取时间轴
$.ajax({
'type': 'GET',
'url': '/index/selectReportAll',
data: {
"order_id": business.house_id
},
dataType: "json",
success: function(data) {
if(data.code == 200) {
if(data.data) {
console.log(data.data);
}
} else {
alert('获取失败!');
}
dataType: "json",
success: function(data) {
if(data.code == 200) {
if(data.data) {
console.log(data.data);
}
});
} else {
alert('获取失败!');
}
}
});
},
Edit: function() { //报告详情
$(".Tswitch").eq(0).show();
$(".Tswitch").eq(1).hide();
$(".Tswitch").eq(2).hide();
$("#information").removeClass("btn-default");
$("#information").addClass("btn-info");
$("#fees").removeClass("btn-info");
$("#fees").addClass("btn-default");
$("#records").removeClass("btn-info");
$("#records").addClass("btn-default");
console.log(business.house_id);
$.ajax({
'type': 'GET',
'url': '/index/bargainInfo',
data: {
"id": business.house_id
},
Edit: function() { //报告详情
$(".Tswitch").eq(0).show();
$(".Tswitch").eq(1).hide();
$(".Tswitch").eq(2).hide();
$("#information").removeClass("btn-default");
$("#information").addClass("btn-info");
$("#fees").removeClass("btn-info");
$("#fees").addClass("btn-default");
$("#records").removeClass("btn-info");
$("#records").addClass("btn-default");
console.log(business.house_id);
$.ajax({
'type': 'GET',
'url': '/index/bargainInfo',
data: {
"id": business.house_id
},
dataType: "json",
success: function(data) {
if(data.code == 200) {
if(data.data) {
$(".create_time").html(data.data.create_time);
$(".user_phone").html(data.data.user_phone);
$(".user_name").html(data.data.user_name);
$(".internal_address").html(data.data.internal_address);
$(".internal_title").html(data.data.internal_title);
$(".commission").val(data.data.commission);
$(".practical_fee").val(data.data.practical_fee);
}
} else {
alert('获取失败!');
}
dataType: "json",
success: function(data) {
if(data.code == 200) {
if(data.data) {
$(".create_time").html(data.data.create_time);
$(".user_phone").html(data.data.user_phone);
$(".user_name").html(data.data.user_name);
$(".internal_address").html(data.data.internal_address);
$(".internal_title").html(data.data.internal_title);
$(".commission").val(data.data.commission);
$(".practical_fee").val(data.data.practical_fee);
}
});
} else {
alert('获取失败!');
}
}
});
},
confirmEdit: function() { //修改报告详情
$.ajax({
'type': 'POST',
'url': '/index/editBargainInfo',
data: {
"id": business.house_id,
"scale_fee": $(".commission").val(),
"practical_fee": $(".practical_fee").val()
},
confirmEdit: function() { //修改报告详情
$.ajax({
'type': 'POST',
'url': '/index/editBargainInfo',
data: {
"id": business.house_id,
"scale_fee": $(".commission").val(),
"practical_fee": $(".practical_fee").val()
},
dataType: "json",
success: function(data) {
if(data.code == 200) {
if(data.data) {}
} else {
alert('获取失败!');
}
}
});
dataType: "json",
success: function(data) {
if(data.code == 200) {
if(data.data) {}
} else {
alert('获取失败!');
}
}
});
},
Caozuo: function() { //分佣提成获取跟进详情的数据
console.log(business);
console.log(business.house_id);
$.ajax({
'type': 'GET',
'url': '/index/commissionList',
data: {
"id": business.house_id
},
Caozuo: function() { //分佣提成获取跟进详情的数据
console.log(business);
console.log(business.house_id);
$.ajax({
'type': 'GET',
'url': '/index/commissionList',
data: {
"id": business.house_id
},
dataType: "json",
success: function(data) {
if(data.code == 200) {
if(data.data) {
var caozuo_table = "";
$.each(data['data'], function(i, item) {
caozuo_table += '<tr><td>' + item.role + '</td><td>' + item.agent_name + '</td><td>' + item.store_name +
'</td><td>' + item.scale + '</td><td>' + item.scale_fee + '</td><td>' + item.practical_fee + '</td><td>' + item.content + '</td></tr>';
});
$("#caozuo_table").html(caozuo_table);
$("#caozuo_table tr").each(function(e) { //不能为空
var temp = $("#caozuo_table").find("tr").eq(e).find("td").eq(6).html(); //获取一列的值
if(temp == 'null') {
$("#caozuo_table").find("tr").eq(e).find("td").eq(6).html(" ")
}
});
dataType: "json",
success: function(data) {
if(data.code == 200) {
if(data.data) {
var caozuo_table = "";
$.each(data['data'], function(i, item) {
caozuo_table += '<tr><td>' + item.role + '</td><td>' + item.agent_name + '</td><td>' + item.store_name +
'</td><td>' + item.scale + '</td><td>' + item.scale_fee + '</td><td>' + item.practical_fee + '</td><td>' + item.content + '</td></tr>';
});
$("#caozuo_table").html(caozuo_table);
$("#caozuo_table tr").each(function(e) { //不能为空
var temp = $("#caozuo_table").find("tr").eq(e).find("td").eq(6).html(); //获取一列的值
if(temp == 'null') {
$("#caozuo_table").find("tr").eq(e).find("td").eq(6).html(" ")
}
} else {
alert('获取失败!');
}
});
}
});
} else {
alert('获取失败!');
}
}
});
},
Records: function() { //分佣提成数据
$(".Tswitch").eq(0).hide();
$(".Tswitch").eq(1).hide();
$(".Tswitch").eq(2).show();
$("#information").removeClass("btn-info");
$("#information").addClass("btn-default");
$("#fees").removeClass("btn-info");
$("#fees").addClass("btn-default");
$("#records").removeClass("btn-default");
$("#records").addClass("btn-info");
$.ajax({
'type': 'GET',
'url': '/index/payLogList',
data: {
"id": business.house_id
},
Records: function() { //分佣提成数据
$(".Tswitch").eq(0).hide();
$(".Tswitch").eq(1).hide();
$(".Tswitch").eq(2).show();
$("#information").removeClass("btn-info");
$("#information").addClass("btn-default");
$("#fees").removeClass("btn-info");
$("#fees").addClass("btn-default");
$("#records").removeClass("btn-default");
$("#records").addClass("btn-info");
$.ajax({
'type': 'GET',
'url': '/index/payLogList',
data: {
"id": business.house_id
},
dataType: "json",
success: function(data) {
if(data.code == 200) {
if(data.data) {
var caozuo_table = "";
$.each(data['data'], function(i, item) {
caozuo_table += '<tr><td>' + item.create_time + '</td><td>' + item.money + '</td><td>' + item.type +
'</td><td>' + item.pay_type + '</td><td>' + item.agent_name + '</td></tr>';
});
$("#tcaozuo_table").html(caozuo_table);
$("#tcaozuo_table tr").each(function(e) { //不能为空
var temp_one = $("#tcaozuo_table").find("tr").eq(e).find("td").eq(4).html();
var temp = $("#tcaozuo_table").find("tr").eq(e).find("td").eq(3).html(); //获取一列的值
var temp_two = $("#tcaozuo_table").find("tr").eq(e).find("td").eq(2).html();
// 支付方式 10支付宝 20 微信 30pos机器 40转账 50现金 60其他
if(temp * 1 == 10) {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(3).html("支付宝")
}
if(temp * 1 == 20) {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(3).html("微信")
}
if(temp * 1 == 30) {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(3).html("pos机器")
}
if(temp * 1 == 40) {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(3).html("转账")
}
if(temp * 1 == 50) {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(3).html("现金")
}
if(temp * 1 == 60) {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(3).html("其他")
}
// 付款类型 10意向金 20定金 30保管金 40押金 50 租金 60 进场费 70转让费 80其他
if(temp_two * 1 == 10) {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(2).html("意向金")
}
if(temp_two * 1 == 20) {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(2).html("定金")
}
if(temp_two * 1 == 30) {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(2).html("保管金")
}
if(temp_two * 1 == 40) {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(2).html("押金")
}
if(temp_two * 1 == 50) {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(2).html("租金")
}
if(temp_two * 1 == 60) {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(2).html("进场费")
}
if(temp_two * 1 == 70) {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(2).html("转让费")
}
if(temp_two * 1 == 80) {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(2).html("其他")
};
if(temp_one == 'null') {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(4).html(" ")
}
dataType: "json",
success: function(data) {
if(data.code == 200) {
if(data.data) {
var caozuo_table = "";
$.each(data['data'], function(i, item) {
caozuo_table += '<tr><td>' + item.create_time + '</td><td>' + item.money + '</td><td>' + item.type +
'</td><td>' + item.pay_type + '</td><td>' + item.agent_name + '</td></tr>';
});
$("#tcaozuo_table").html(caozuo_table);
$("#tcaozuo_table tr").each(function(e) { //不能为空
var temp_one = $("#tcaozuo_table").find("tr").eq(e).find("td").eq(4).html();
var temp = $("#tcaozuo_table").find("tr").eq(e).find("td").eq(3).html(); //获取一列的值
var temp_two = $("#tcaozuo_table").find("tr").eq(e).find("td").eq(2).html();
// 支付方式 10支付宝 20 微信 30pos机器 40转账 50现金 60其他
if(temp * 1 == 10) {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(3).html("支付宝")
}
if(temp * 1 == 20) {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(3).html("微信")
}
if(temp * 1 == 30) {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(3).html("pos机器")
}
if(temp * 1 == 40) {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(3).html("转账")
}
if(temp * 1 == 50) {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(3).html("现金")
}
if(temp * 1 == 60) {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(3).html("其他")
}
});
// 付款类型 10意向金 20定金 30保管金 40押金 50 租金 60 进场费 70转让费 80其他
if(temp_two * 1 == 10) {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(2).html("意向金")
}
} else {
alert('获取失败!');
}
}
});
},
newCommission: function() { //新增分佣提成
$.ajax({
'type': 'POST',
'url': '/index/addBargain',
data: {
"id": business.house_id,
"role": $("#is_carefully_chosen").val(),
"scale": $("#commission-rate").val(),
"scale_fee": $("#should-commission").val(),
},
dataType: "json",
success: function(data) {
if(data.code == 200) {
if(data.data) {
console.log(666);
if(temp_two * 1 == 20) {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(2).html("定金")
}
} else {
alert('获取失败!');
}
if(temp_two * 1 == 30) {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(2).html("保管金")
}
if(temp_two * 1 == 40) {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(2).html("押金")
}
if(temp_two * 1 == 50) {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(2).html("租金")
}
if(temp_two * 1 == 60) {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(2).html("进场费")
}
if(temp_two * 1 == 70) {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(2).html("转让费")
}
if(temp_two * 1 == 80) {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(2).html("其他")
};
if(temp_one == 'null') {
$("#tcaozuo_table").find("tr").eq(e).find("td").eq(4).html(" ")
}
});
}
});
},
// table切换
Information: function() {
$(".Tswitch").eq(0).show();
$(".Tswitch").eq(1).hide();
$(".Tswitch").eq(2).hide();
$("#information").removeClass("btn-default");
$("#information").addClass("btn-info");
$("#fees").removeClass("btn-info");
$("#fees").addClass("btn-default");
$("#records").removeClass("btn-info");
$("#records").addClass("btn-default");
} else {
alert('获取失败!');
}
}
});
},
newCommission: function() { //新增分佣提成
$.ajax({
'type': 'POST',
'url': '/index/addBargain',
data: {
"id": business.house_id,
"role": $("#is_carefully_chosen").val(),
"scale": $("#commission-rate").val(),
"scale_fee": $("#should-commission").val(),
},
Fees: function() {
$(".Tswitch").eq(0).hide();
$(".Tswitch").eq(1).show();
$(".Tswitch").eq(2).hide();
$("#information").removeClass("btn-info");
$("#information").addClass("btn-default");
$("#fees").removeClass("btn-default");
$("#fees").addClass("btn-info");
$("#records").removeClass("btn-info");
$("#records").addClass("btn-default");
dataType: "json",
success: function(data) {
if(data.code == 200) {
if(data.data) {
console.log(666);
}
} else {
alert('获取失败!');
}
}
});
},
// table切换
Information: function() {
$(".Tswitch").eq(0).show();
$(".Tswitch").eq(1).hide();
$(".Tswitch").eq(2).hide();
$("#information").removeClass("btn-default");
$("#information").addClass("btn-info");
$("#fees").removeClass("btn-info");
$("#fees").addClass("btn-default");
$("#records").removeClass("btn-info");
$("#records").addClass("btn-default");
},
Fees: function() {
$(".Tswitch").eq(0).hide();
$(".Tswitch").eq(1).show();
$(".Tswitch").eq(2).hide();
$("#information").removeClass("btn-info");
$("#information").addClass("btn-default");
$("#fees").removeClass("btn-default");
$("#fees").addClass("btn-info");
$("#records").removeClass("btn-info");
$("#records").addClass("btn-default");
},
getList: function(pageNo) {
business.pageNo = pageNo;
var params = {};
params.pageNo = business.pageNo;
params.pageSize = business.pageSize;
params.name = $('#user_name').val();
params.phone = $('#user_phone').val();
params.commission_start_date = $('#create_time').val();
params.commission_end_date = $('#end_time').val();
params.deal_start_date = $('#create_dealtime').val();
params.deal_end_date = $('#end_dealtime').val();
params.operation_start_date = $('#create_ticketTime').val();
params.operation_end_date = $('#end_ticketTime').val();
params.district_id= $("#qx-store option:selected").val();//部门id 添加字段
params.store_name = $('#store_name').val();
},
getList: function(pageNo) {
business.pageNo = pageNo;
var params = {};
params.pageNo = business.pageNo;
params.pageSize = business.pageSize;
params.name = $('#user_name').val();
params.phone = $('#user_phone').val();
params.commission_start_date = $('#create_time').val();
params.commission_end_date = $('#end_time').val();
params.deal_start_date = $('#create_dealtime').val();
params.deal_end_date = $('#end_dealtime').val();
params.operation_start_date = $('#create_ticketTime').val();
params.operation_end_date = $('#end_ticketTime').val();
params.district_id = $("#qx-store option:selected").val(); //部门id 添加字段
params.store_name = $('#store_name').val();
$.ajax({
url: '/index/getCommissionTotalList', //获取列表
type: 'GET',
async: true,
data: params,
dataType: 'json',
success: function(data) {
console.log(data);
var temp = document.getElementById('commissionTotal_list_tpl').innerHTML;
var doTtmpl = doT.template(temp);
$("#business_list").html(doTtmpl(data.data.list));
console.log(data.data.list);
$.ajax({
url: '/index/getCommissionTotalList', //获取列表
type: 'GET',
async: true,
data: params,
dataType: 'json',
success: function(data) {
console.log(data);
var temp = document.getElementById('commissionTotal_list_tpl').innerHTML;
var doTtmpl = doT.template(temp);
$("#business_list").html(doTtmpl(data.data.list));
console.log(data.data.list);
/*分页代码*/
add_page(data.data.total, pageNo, business.pageSize, business.getList);
}
});
/*分页代码*/
add_page(data.data.total, pageNo, business.pageSize, business.getList);
}
});
},
getDistrict: function(name) {
$.ajax({
url: '/index/getDistrictListByName',
type: 'GET',
async: true,
data: {
"pageSize": 50
},
getDistrict: function(name) {
$.ajax({
url: '/index/getDistrictListByName',
type: 'GET',
async: true,
data: {"pageSize":50},
dataType: 'json',
success: function(data) {
if(data.code == 200) {
var _html = '';
$.each(data.data, function(i, n) {
if (n.district_name == name && (typeof name != undefined)) {
_html += '<option value="' + n.id + '">' + n.district_name + '</option>';
dataType: 'json',
success: function(data) {
if(data.code == 200) {
var _html = '';
$.each(data.data, function(i, n) {
if(n.district_name == name && (typeof name != undefined)) {
_html += '<option value="' + n.id + '">' + n.district_name + '</option>';
} else {
_html += '<option value="' + n.id + '">' + n.district_name + '</option>';
_html += '<option value="' + n.id + '">' + n.district_name + '</option>';
}
});
$("#ss-store").html(_html);
});
$("#ss-store").html(_html);
$("#qx-store").append(_html);
// $("#qx-store").html(_html);
} else {
alert('获取部门信息失败');
}
}
});
},
exportList: function(pageNo) {
console.log(2);
business.pageNo = pageNo;
var excel_two = 1;
var name = $('#user_name').val();
var phone = $('#user_phone').val();
var commission_start_date = $('#create_time').val();
var commission_end_date = $('#end_time').val();
var deal_start_date = $('#create_dealtime').val();
var deal_end_date = $('#end_dealtime').val();
var operation_start_date = $('#create_ticketTime').val();
var operation_end_date = $('#end_ticketTime').val();
// var district_id = $('#user_phone').val();
var district_id= $("#qx-store option:selected").val();//部门id 添加字段
var store_name = $('#store_name').val();
window.open('/index/getCommissionTotalList?'+
'excel = '+ excel_two +' &name = ' + name + ' &phone = ' + phone + ' &commission_start_date = ' + commission_start_date + '& commission_end_date = ' + commission_end_date + ' &deal_start_date = ' + deal_start_date + ' &deal_end_date = ' + deal_end_date+ ' &operation_start_date = ' + operation_start_date+ ' &operation_end_date = ' + operation_end_date+ ' &district_id = ' + district_id+ ' &store_name = ' + store_name);
},
};
return business;
// $("#qx-store").html(_html);
} else {
alert('获取部门信息失败');
}
}
});
\ No newline at end of file
},
exportList: function(pageNo) {
console.log(2);
business.pageNo = pageNo;
var excel_two = 1;
var name = $('#user_name').val();
var phone = $('#user_phone').val();
var commission_start_date = $('#create_time').val();
var commission_end_date = $('#end_time').val();
var deal_start_date = $('#create_dealtime').val();
var deal_end_date = $('#end_dealtime').val();
var operation_start_date = $('#create_ticketTime').val();
var operation_end_date = $('#end_ticketTime').val();
var district_id = $("#qx-store option:selected").val(); //部门id 添加字段
var store_name = $('#store_name').val();
window.open('/index/getCommissionTotalList?' +
'excel=' + excel_two + '&name=' + name + '&phone=' + phone + '&commission_start_date=' + commission_start_date + '&commission_end_date=' + commission_end_date + '&deal_start_date=' + deal_start_date + '&deal_end_date=' + deal_end_date + '&operation_start_date=' + operation_start_date + '&operation_end_date=' + operation_end_date + '&district_id=' + district_id + '&store_name=' + store_name);
},
};
return business;
});
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment