Commit 33e5e809 by 朱继来

下单添加发票抬头类型判断

parent c8e7a192
...@@ -259,30 +259,32 @@ Class AddOrderController extends Controller ...@@ -259,30 +259,32 @@ Class AddOrderController extends Controller
// 选择发票信息 // 选择发票信息
public function selectInv(Request $request) public function selectInv(Request $request)
{ {
if ($request->isMethod('post')) { $tax_id = $request->input('tax_id');
$tax_id = $request->input('tax_id');
$invoice = TaxInfoModel::where('tax_id', $tax_id)->first(); $invoice = TaxInfoModel::where('tax_id', $tax_id)->first();
$invoice->province_val = $invoice->consignee_province ? $this->getAddress($invoice->consignee_province) : ''; $invoice->province_val = $invoice->consignee_province ? $this->getAddress($invoice->consignee_province) : '';
$invoice->city_val = $invoice->consignee_city ? $this->getAddress($invoice->consignee_city) : ''; $invoice->city_val = $invoice->consignee_city ? $this->getAddress($invoice->consignee_city) : '';
$invoice->district_val = $invoice->consignee_district ? $this->getAddress($invoice->consignee_district) : ''; $invoice->district_val = $invoice->consignee_district ? $this->getAddress($invoice->consignee_district) : '';
// 发票公司信息 // 发票公司信息
if (in_array($invoice->inv_type, [3, 4])) { if (in_array($invoice->inv_type, [3, 4])) {
$company_info = InvoiceCompanyModel::where('com_name', $invoice->tax_title)->first(); $company_info = InvoiceCompanyModel::where('com_name', $invoice->tax_title)->first();
if ($company_info) { if ($company_info) {
$invoice->customer_en = $company_info->customer_en; if ($company_info['company_category'] == 3) return ['errcode'=>1, 'errmsg'=>'该客户为黑名单客户,禁止下单!'];
$invoice->customer_type = $company_info->customer_type;
$invoice->product_use_classone_sn = $company_info->product_use_classone_sn; $invoice->customer_en = $company_info->customer_en;
$invoice->product_use_classtwo_sn = $company_info->product_use_classtwo_sn; $invoice->customer_type = $company_info->customer_type;
$invoice->customer_website = $company_info->customer_website; $invoice->product_use_classone_sn = $company_info->product_use_classone_sn;
} $invoice->product_use_classtwo_sn = $company_info->product_use_classtwo_sn;
} $invoice->customer_website = $company_info->customer_website;
return ['errcode' => 0, 'errmsg' => '', 'data' => $invoice]; if ($company_info['company_category'] == 4) return ['errcode'=>2, 'errmsg'=>'该客户为实体名单客户,是否继续下单!', 'data'=>$invoice];
}
} }
return ['errcode' => 0, 'errmsg' => '', 'data' => $invoice];
} }
// 根据发票类型选择发票信息 // 根据发票类型选择发票信息
...@@ -694,75 +696,73 @@ Class AddOrderController extends Controller ...@@ -694,75 +696,73 @@ Class AddOrderController extends Controller
// 提交订单 // 提交订单
public function create(Request $request) public function create(Request $request)
{ {
if ($request->isMethod('post')) { $data['type'] = $request->input('type');
$data['type'] = $request->input('type'); $data['inv_com_id'] = $request->input('inv_com_id', 0);
$data['inv_com_id'] = $request->input('inv_com_id', 0); $data['uid'] = $request->input('uid');
$data['uid'] = $request->input('uid'); $data['sale_id'] = $request->user->userId;
$data['sale_id'] = $request->user->userId; $data['address_id'] = $request->input('address_id');
$data['address_id'] = $request->input('address_id'); $data['cart_id'] = implode(',', $request->input('cart_ids'));
$data['cart_id'] = implode(',', $request->input('cart_ids')); $data['remark'] = $request->input('remark');
$data['remark'] = $request->input('remark'); $data['com_id'] = $request->input('com_id', 0);
$data['com_id'] = $request->input('com_id', 0); $data['com_name'] = $request->input('com_name', '');
$data['com_name'] = $request->input('com_name', ''); $data['shipping_type'] = $request->input('shipping_type', 1);
$data['shipping_type'] = $request->input('shipping_type', 1); $data['self_consignee'] = $request->input('self_consignee', '');
$data['self_consignee'] = $request->input('self_consignee', ''); $data['self_mobile'] = $request->input('self_mobile', '');
$data['self_mobile'] = $request->input('self_mobile', ''); $data['is_free_ship'] = $request->input('is_free_ship', '');
$data['is_free_ship'] = $request->input('is_free_ship', '');
if ($data['type'] == 3) { // 自营线下订单
if ($data['type'] == 3) { // 自营线下订单 $data['address_name'] = $request->input('address_name');
$data['address_name'] = $request->input('address_name'); $data['address_mobile'] = $request->input('address_mobile');
$data['address_mobile'] = $request->input('address_mobile'); } else { // 联营、自营线上订单
} else { // 联营、自营线上订单 $data['role'] = $request->input('role', '');
$data['role'] = $request->input('role', ''); $data['tax_id'] = $request->input('tax_id');
$data['tax_id'] = $request->input('tax_id'); $data['user_coupon_id'] = $request->input('user_coupon_id');
$data['user_coupon_id'] = $request->input('user_coupon_id'); $data['send_type'] = $request->input('zy_delivery_type'); // 发货方式
$data['send_type'] = $request->input('zy_delivery_type'); // 发货方式
if ($data['type'] == 1) { // 联营
if ($data['type'] == 1) { // 联营 $data['customer_cn'] = $request->input('customer_cn', '');
$data['customer_cn'] = $request->input('customer_cn', ''); $data['customer_en'] = $request->input('customer_en', '');
$data['customer_en'] = $request->input('customer_en', ''); $data['customer_type'] = $request->input('customer_type', '');
$data['customer_type'] = $request->input('customer_type', ''); $data['product_use_classone_sn'] = $request->input('product_use_classone_sn', '');
$data['product_use_classone_sn'] = $request->input('product_use_classone_sn', ''); $data['product_use_classtwo_sn'] = $request->input('product_use_classtwo_sn', '');
$data['product_use_classtwo_sn'] = $request->input('product_use_classtwo_sn', ''); $data['customer_website'] = $request->input('customer_website', '');
$data['customer_website'] = $request->input('customer_website', ''); }
}
if ($data['type'] == 4) { if ($data['type'] == 4) {
$data['business_type'] = $request->input('business_type'); $data['business_type'] = $request->input('business_type');
}
} }
}
$data['sale_type'] = $request->input('sale_type', ''); // 自营线上选择销售类型 $data['sale_type'] = $request->input('sale_type', ''); // 自营线上选择销售类型
$data['k1'] = time(); $data['k1'] = time();
$data['k2'] = md5(md5($data['k1']).'fh6y5t4rr351d2c3bryi'); $data['k2'] = md5(md5($data['k1']).'fh6y5t4rr351d2c3bryi');
$url = Config('website.api_domain').'order/create'; $url = Config('website.api_domain').'order/create';
// dd(curlApi($url, $data)); // dd(curlApi($url, $data));
$response = json_decode(curlApi($url, $data), true); $response = json_decode(curlApi($url, $data), true);
if ($response['err_code'] != 0) return ['errcode' => $response['err_code'], 'errmsg' => $response['err_msg']]; if ($response['err_code'] != 0) return ['errcode' => $response['err_code'], 'errmsg' => $response['err_msg']];
// 若存在销售报价明细ID,则修改对应报价单状态为已成单
$report_ids = $request->input('report_ids', '');
if ($report_ids) { // 若存在销售报价明细ID,则修改对应报价单状态为已成单
$ids = explode(',', $report_ids); $report_ids = $request->input('report_ids', '');
foreach ($ids as $v) { if ($report_ids) {
$res = DB::connection('frq')->table('inquiry_items_report')->where('id', $v)->select('quote_id', 'inquiry_items_id')->first(); $ids = explode(',', $report_ids);
if ($res->quote_id) { foreach ($ids as $v) {
DB::connection('frq')->table('quote')->where('id', $res->quote_id)->update(['status'=>4, 'update_time'=>time()]); $res = DB::connection('frq')->table('inquiry_items_report')->where('id', $v)->select('quote_id', 'inquiry_items_id')->first();
}
DB::connection('frq')->table('inquiry_items')->where('id', $res->inquiry_items_id)->update(['status'=>10, 'update_time'=>time()]); if ($res->quote_id) {
DB::connection('frq')->table('quote')->where('id', $res->quote_id)->update(['status'=>4, 'update_time'=>time()]);
} }
}
return ['errcode'=>$response['err_code'], 'errmsg'=>$response['err_msg'], 'data'=>['order_id'=>$response['data'], 'type'=>$data['type']]]; DB::connection('frq')->table('inquiry_items')->where('id', $res->inquiry_items_id)->update(['status'=>10, 'update_time'=>time()]);
}
} }
return ['errcode'=>$response['err_code'], 'errmsg'=>$response['err_msg'], 'data'=>['order_id'=>$response['data'], 'type'=>$data['type']]];
} }
// 提交订单成功页面 // 提交订单成功页面
......
...@@ -8,8 +8,8 @@ use DB; ...@@ -8,8 +8,8 @@ use DB;
class InvoiceCompanyModel extends Model class InvoiceCompanyModel extends Model
{ {
protected $connection = 'web'; protected $connection = 'crm';
protected $table = 'lie_invoice_company'; protected $table = 'invoice_company';
protected $primaryKey = 'id'; protected $primaryKey = 'id';
public $timestamps = false; public $timestamps = false;
......
...@@ -259,55 +259,21 @@ ...@@ -259,55 +259,21 @@
data: {tax_id : tax_id}, data: {tax_id : tax_id},
dataType: 'json', dataType: 'json',
success: function (resp) { success: function (resp) {
if (resp.errcode == 0) { if (resp.errcode == 1) {
var data = resp.data; layer.alert(resp.errmsg);
var inv_type_val = ''; return false;
}
$('.invoice-content').show();
$('.tax_id').val(data.tax_id);
$('.tax_title').text(data.tax_title);
$('.tax_no').text(data.tax_no);
$('.bank_account').text(data.bank_account);
$('.bank_name').text(data.bank_name);
$('.company_phone').text(data.company_phone);
$('.company_address').text(data.company_address);
$('.consignee').text(data.consignee);
$('.consignee_phone').text(data.consignee_phone);
$('.consignee_address').text(data.province_val + data.city_val + data.district_val + data.consignee_address);
switch (data.inv_type) {
case 2: inv_type_val = '普通发票'; break;
case 3: inv_type_val = '增值税专用发票'; break;
case 4: inv_type_val = '增值税普通发票'; break;
default: inv_type_val = '未知'; break;
}
$('.inv_type').text(inv_type_val); if (resp.errcode == 2) {
layer.confirm(resp.errmsg, function (index) {
// 若购物车存在Digikey商品,选择增值税普票或专票后,默认将发票抬头赋值给终端信息(中文名称),且不能更改 addInvoiceInfo(resp.data)
if ($('.client-info').css('display') == 'block') { layer.close(index)
if (data.inv_type == 3 || data.inv_type == 4) { });
$('.customer_cn').val(data.tax_title); return false;
$('.customer_en').val(data.customer_en);
$('.customer_type').val(data.customer_type);
$('.product_use_classone_sn').val(data.product_use_classone_sn);
$('.product_use_classone_sn').change(); // 添加change事件
$('.product_use_classtwo_sn').val(data.product_use_classtwo_sn);
$('.customer_website').val(data.customer_website);
} else {
$('.customer_cn').val('');
$('.customer_en').val('');
$('.customer_type').val('');
$('.product_use_classone_sn').val('');
$('.product_use_classone_sn').change();
$('.customer_website').val('');
layer.msg('购物车中存在digikey商品,请选择增值税普票或专票');
}
}
} }
}
addInvoiceInfo(resp.data)
}
}) })
} else { } else {
$('.invoice-content').hide(); $('.invoice-content').hide();
...@@ -315,6 +281,55 @@ ...@@ -315,6 +281,55 @@
} }
}) })
// 添加发票信息
function addInvoiceInfo(data)
{
var inv_type_val = '';
$('.invoice-content').show();
$('.tax_id').val(data.tax_id);
$('.tax_title').text(data.tax_title);
$('.tax_no').text(data.tax_no);
$('.bank_account').text(data.bank_account);
$('.bank_name').text(data.bank_name);
$('.company_phone').text(data.company_phone);
$('.company_address').text(data.company_address);
$('.consignee').text(data.consignee);
$('.consignee_phone').text(data.consignee_phone);
$('.consignee_address').text(data.province_val + data.city_val + data.district_val + data.consignee_address);
switch (data.inv_type) {
case 2: inv_type_val = '普通发票'; break;
case 3: inv_type_val = '增值税专用发票'; break;
case 4: inv_type_val = '增值税普通发票'; break;
default: inv_type_val = '未知'; break;
}
$('.inv_type').text(inv_type_val);
// 若购物车存在Digikey商品,选择增值税普票或专票后,默认将发票抬头赋值给终端信息(中文名称),且不能更改
if ($('.client-info').css('display') == 'block') {
if (data.inv_type == 3 || data.inv_type == 4) {
$('.customer_cn').val(data.tax_title);
$('.customer_en').val(data.customer_en);
$('.customer_type').val(data.customer_type);
$('.product_use_classone_sn').val(data.product_use_classone_sn);
$('.product_use_classone_sn').change(); // 添加change事件
$('.product_use_classtwo_sn').val(data.product_use_classtwo_sn);
$('.customer_website').val(data.customer_website);
} else {
$('.customer_cn').val('');
$('.customer_en').val('');
$('.customer_type').val('');
$('.product_use_classone_sn').val('');
$('.product_use_classone_sn').change();
$('.customer_website').val('');
layer.msg('购物车中存在digikey商品,请选择增值税普票或专票');
}
}
}
// 获取SKU信息 // 获取SKU信息
$('.get-sku').click(function() { $('.get-sku').click(function() {
var sku_id = $(this).siblings('.search-sku').val(); var sku_id = $(this).siblings('.search-sku').val();
...@@ -762,15 +777,44 @@ ...@@ -762,15 +777,44 @@
// 提交订单 // 提交订单
// $('.submit-order').on('click', function() { // $('.submit-order').on('click', function() {
$('.submit-order').off().on('click', function() { $('.submit-order').off().on('click', function () {
var self = $(this); var tax_id = $('.tax_id').val();
if (tax_id) {
$.ajax({
url: '/ajax/selectInv',
type: 'post',
data: { tax_id: tax_id },
dataType: 'json',
success: function (resp) {
if (resp.errcode == 1) {
layer.alert(resp.errmsg);
return false;
}
if (resp.errcode == 2) {
layer.confirm(resp.errmsg, function (index) {
createOrder();
layer.close(index)
});
return false;
}
}
})
}
})
function createOrder() {
var shipping_type = $('#shipping_type').val(); // 配送方式 var shipping_type = $('#shipping_type').val(); // 配送方式
var address_id = $('input[name=address_id]').val(); var address_id = $('input[name=address_id]').val();
var type = self.data('type'); // 1-联营线上,2-自营线上,3-自营线下,4-自营其他业务 var type = $('.submit-order').data('type'); // 1-联营线上,2-自营线上,3-自营线下,4-自营其他业务
var cart_ids = []; var cart_ids = [];
var user_id = 0; var user_id = 0;
var remark = $('#remark').val(); // 订单备注 var remark = $('#remark').val(); // 订单备注
var is_free_ship = $('input[name=is_free_ship]:checked').val() || ''; // 是否免运费 var is_free_ship = $('input[name=is_free_ship]:checked').val() || ''; // 是否免运费
if (internal_uid) { if (internal_uid) {
user_id = internal_uid; user_id = internal_uid;
...@@ -780,7 +824,7 @@ ...@@ -780,7 +824,7 @@
var is_dgk = false; var is_dgk = false;
$('.shop-table tbody tr').each(function() { $('.shop-table tbody tr').each(function () {
var cid = $(this).data('cid'); var cid = $(this).data('cid');
cart_ids.push(cid); cart_ids.push(cid);
...@@ -809,12 +853,12 @@ ...@@ -809,12 +853,12 @@
datax.address_name = $('input[name=address_name]').val(); datax.address_name = $('input[name=address_name]').val();
datax.address_mobile = $('input[name=address_mobile]').val(); datax.address_mobile = $('input[name=address_mobile]').val();
} else { // 联营、自营线上订单 } else { // 联营、自营线上订单
var tax_id = $('.tax_id').val(); var tax_id = $('.tax_id').val();
var inv_type = $('input[name=inv_type]:checked').val(); var inv_type = $('input[name=inv_type]:checked').val();
var user_coupon_id = $('.user_coupon_id').val(); var user_coupon_id = $('.user_coupon_id').val();
var zy_delivery_type = $('.zy_delivery_type').val(); var zy_delivery_type = $('.zy_delivery_type').val();
var self_consignee = $('.self_consignee').val() || ''; var self_consignee = $('.self_consignee').val() || '';
var self_mobile = $('.self_mobile').val() || ''; var self_mobile = $('.self_mobile').val() || '';
if (!address_id) { if (!address_id) {
layer.msg('请选择快递信息'); layer.msg('请选择快递信息');
...@@ -846,11 +890,11 @@ ...@@ -846,11 +890,11 @@
return false; return false;
} }
if ((typeof(inv_type) == 'undefined' || inv_type != '') && !tax_id) { if ((typeof (inv_type) == 'undefined' || inv_type != '') && !tax_id) {
layer.msg('请选择发票信息'); layer.msg('请选择发票信息');
return false; return false;
} }
if (type == 4) { // 自营其他业务 if (type == 4) { // 自营其他业务
var business_type = $('#business_type').val(); var business_type = $('#business_type').val();
datax.business_type = business_type; datax.business_type = business_type;
...@@ -911,23 +955,23 @@ ...@@ -911,23 +955,23 @@
// datax.customer_website = customer_website; // datax.customer_website = customer_website;
// } // }
datax.tax_id = tax_id; datax.tax_id = tax_id;
datax.user_coupon_id = user_coupon_id; datax.user_coupon_id = user_coupon_id;
datax.zy_delivery_type = zy_delivery_type; datax.zy_delivery_type = zy_delivery_type;
datax.self_consignee = self_consignee; datax.self_consignee = self_consignee;
datax.self_mobile = self_mobile; datax.self_mobile = self_mobile;
} }
// 自营线上 // 自营线上
if (type == 2 && is_online == 1) { if (type == 2 && is_online == 1) {
var sale_type = $('#sale_type').val(); var sale_type = $('#sale_type').val();
var cart_info = []; var cart_info = [];
$('.shop-table tbody tr').each(function() { $('.shop-table tbody tr').each(function () {
var gid = $(this).find('.goods_id').text(); var gid = $(this).find('.goods_id').text();
var num = $(this).find('.goods_num').val(); var num = $(this).find('.goods_num').val();
cart_info.push({'gid':gid, 'num':num}); cart_info.push({ 'gid': gid, 'num': num });
}) })
datax.role = role; // 自营线上下单添加角色 datax.role = role; // 自营线上下单添加角色
...@@ -935,17 +979,17 @@ ...@@ -935,17 +979,17 @@
$.ajax({ $.ajax({
type: "POST", type: "POST",
url: '/ajax/checkStock', url: '/ajax/checkStock',
data: {cart_info: JSON.stringify(cart_info), sale_type: sale_type}, data: { cart_info: JSON.stringify(cart_info), sale_type: sale_type },
dataType: "json", dataType: "json",
async: false, async: false,
success: function(resp){ success: function (resp) {
if (resp.errcode == -1) { if (resp.errcode == -1) {
var data = eval(resp.data); var data = eval(resp.data);
var content = '<p>'+resp.errmsg+'</p>'; var content = '<p>' + resp.errmsg + '</p>';
submit = false; submit = false;
for (var i = 0; i < data.length; i++) { for (var i = 0; i < data.length; i++) {
content += '<p><span>'+(i+1)+'、</span>'+data[i]['goods_name']+',可用库存:'+data[i]['stock']+'</p>'; content += '<p><span>' + (i + 1) + '、</span>' + data[i]['goods_name'] + ',可用库存:' + data[i]['stock'] + '</p>';
} }
// 弹出提示 // 弹出提示
...@@ -958,48 +1002,49 @@ ...@@ -958,48 +1002,49 @@
// self.removeAttr('disabled').css('pointer-events', 'auto'); // self.removeAttr('disabled').css('pointer-events', 'auto');
return false; return false;
} }
}, },
}) })
} }
if (submit) { if (submit) {
$.ajax({ $.ajax({
type: "POST", type: "POST",
url: '/ajax/create', url: '/ajax/create',
data: datax, data: datax,
dataType: "json", dataType: "json",
success: function(resp){ success: function (resp) {
if (resp.errcode == 0) { if (resp.errcode == 0) {
layer.msg(resp.errmsg); layer.msg(resp.errmsg);
location.href = '/addorder/success?order_id='+resp.data.order_id+'&type='+resp.data.type; location.href = '/addorder/success?order_id=' + resp.data.order_id + '&type=' + resp.data.type;
return false; return false;
} else if (resp.errcode == 21024) { } else if (resp.errcode == 21024) {
layer.alert('该用户已进入公司黑名单,具体请联系吴承义,同时订单无法提交'); layer.alert('该用户已进入公司黑名单,具体请联系吴承义,同时订单无法提交');
return false; return false;
} else if (resp.errcode == 21030) { } else if (resp.errcode == 21030) {
layer.alert(resp.errmsg, function() { layer.alert(resp.errmsg, function () {
var delivery_place = $('.delivery_place').val(); var delivery_place = $('.delivery_place').val();
loading.lists(user_id, goods_type, is_online, delivery_place); // 加载购物车列表 loading.lists(user_id, goods_type, is_online, delivery_place); // 加载购物车列表
loading.confirm(user_id, address_id, cart_ids, user_coupon_id, goods_type, is_online); // 确认订单信息 loading.confirm(user_id, address_id, cart_ids, user_coupon_id, goods_type, is_online); // 确认订单信息
}); });
return false; return false;
} }
layer.alert(resp.errmsg); layer.alert(resp.errmsg);
}, },
}) })
layer.msg('订单生成中...', {icon: 16, time: 0, shade: 0.3}); layer.msg('订单生成中...', { icon: 16, time: 0, shade: 0.3 });
} }
} else { } else {
layer.msg('请先添加商品'); layer.msg('请先添加商品');
} }
}) }
// 发货方式 // 发货方式
$('.zy_delivery_type').change(function() { $('.zy_delivery_type').change(function() {
......
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 sign in to comment