Commit 29fe9a35 by 朱继来

1. 添加支付优惠;

2. 添加自营订单其他业务;
3. 添加其他业务筛选;
parent c499b635
...@@ -55,7 +55,6 @@ Class AddOrderController extends Controller ...@@ -55,7 +55,6 @@ Class AddOrderController extends Controller
$info = $this->getPageInfo($request); $info = $this->getPageInfo($request);
$info['title'] = '新增联营订单'; $info['title'] = '新增联营订单';
$info['sale_id'] = $request->user->userId; $info['sale_id'] = $request->user->userId;
return view('addOrder', $info); return view('addOrder', $info);
...@@ -67,12 +66,22 @@ Class AddOrderController extends Controller ...@@ -67,12 +66,22 @@ Class AddOrderController extends Controller
$info = $this->getPageInfo($request); $info = $this->getPageInfo($request);
$info['title'] = '新增自营线上订单'; $info['title'] = '新增自营线上订单';
$info['sale_id'] = $request->user->userId; $info['sale_id'] = $request->user->userId;
return view('addOnline', $info); return view('addOnline', $info);
} }
// 新增自营其他业务订单
public function addOtherOrder(Request $request)
{
$info = $this->getPageInfo($request);
$info['title'] = '新增自营其他业务订单';
$info['sale_id'] = $request->user->userId;
return view('addOtherOrder', $info);
}
// 获取用户信息 // 获取用户信息
public function getUserInfo(Request $request) public function getUserInfo(Request $request)
{ {
...@@ -452,6 +461,10 @@ Class AddOrderController extends Controller ...@@ -452,6 +461,10 @@ Class AddOrderController extends Controller
} else { // 联营、自营线上订单 } else { // 联营、自营线上订单
$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');
if ($data['type'] == 4) {
$data['business_type'] = $request->input('business_type');
}
} }
$data['sale_type'] = $request->input('sale_type', ''); // 自营线上选择销售类型 $data['sale_type'] = $request->input('sale_type', ''); // 自营线上选择销售类型
...@@ -479,12 +492,11 @@ Class AddOrderController extends Controller ...@@ -479,12 +492,11 @@ Class AddOrderController extends Controller
$order_id = $request->input('order_id'); $order_id = $request->input('order_id');
$type = $request->input('type'); $type = $request->input('type');
if ($type == 1) { switch ($type) {
$title = '新增联营订单'; case 1: $title = '新增联营订单'; break;
} else if ($type == 2) { case 2: $title = '新增自营线上订单'; break;
$title = '新增自营线上订单'; case 3: $title = '新增自营线下订单'; break;
} else { case 4: $title = '新增自营其他业务订单'; break;
$title = '新增自营线下订单';
} }
$info['title'] = $title; $info['title'] = $title;
......
...@@ -409,6 +409,7 @@ Class OrderController extends Controller ...@@ -409,6 +409,7 @@ Class OrderController extends Controller
$map['order_invoice_status']= $request->input('order_invoice_status', ''); $map['order_invoice_status']= $request->input('order_invoice_status', '');
$map['is_new'] = $request->input('is_new', ''); $map['is_new'] = $request->input('is_new', '');
$map['is_new_order'] = $request->input('is_new_order', ''); $map['is_new_order'] = $request->input('is_new_order', '');
$map['business_type'] = $request->input('business_type', '');
// 订单查看权限---交易员、客服、测试 // 订单查看权限---交易员、客服、测试
if (in_array($info['role'], [3, 4])) { if (in_array($info['role'], [3, 4])) {
......
...@@ -104,6 +104,8 @@ Route::group(['middleware' => 'web'], function () { ...@@ -104,6 +104,8 @@ Route::group(['middleware' => 'web'], function () {
Route::post('/ajax/checkStock', 'AddOrderController@checkStock'); Route::post('/ajax/checkStock', 'AddOrderController@checkStock');
Route::post('/ajax/batchGoodsImport', 'AddOrderController@batchGoodsImport'); Route::post('/ajax/batchGoodsImport', 'AddOrderController@batchGoodsImport');
Route::get('/add_other_order', 'AddOrderController@addOtherOrder');
Route::match(['get', 'post'],'/web/{key}', 'WebController@info'); Route::match(['get', 'post'],'/web/{key}', 'WebController@info');
Route::match(['get', 'post'],'/api/{key}', 'ApiController@Entrance'); Route::match(['get', 'post'],'/api/{key}', 'ApiController@Entrance');
......
...@@ -58,4 +58,10 @@ ...@@ -58,4 +58,10 @@
2 => 'brand_name', 2 => 'brand_name',
3 => 'num', 3 => 'num',
], ],
// 特殊业务类型
'business_type' => [
1 => '样品销售',
2 => '仓库损耗',
],
]; ];
\ No newline at end of file
...@@ -16,14 +16,32 @@ ...@@ -16,14 +16,32 @@
this.lists(internal_uid, 2, 0); this.lists(internal_uid, 2, 0);
}, },
bind: function(goods_type, is_online, internal_uid='') { //goods_type:1-联营,2-自营 is_online:是否线上订单 businessType: function() { // 自营其他业务订单
this.bind(2, 2);
},
/**
* goods_type: is_online:是否线上订单
* @param {[type]} goods_type [1-联营,2-自营]
* @param {Boolean} is_online [0-自营线下,1-联营/自营线上,2-自营其他业务]
* @param {String} internal_uid [自营内部采购账号ID]
* @return {[type]} [description]
*/
bind: function(goods_type, is_online, internal_uid='') {
var loading = this; var loading = this;
// 获取用户信息 // 获取用户信息
$('.get-user').click(function(){ $('.get-user').click(function(){
var mobile = $(this).siblings('.search-user').val(); var mobile = $(this).siblings('.search-user').val();
if (!mobile) return false; if (!mobile) return false;
// 自营其他订单类型---仓库损耗
if (mobile == '15022222222') {
$('#business_type').val(2);
} else {
$('#business_type').val(1);
}
$.ajax({ $.ajax({
url: '/ajax/getUserInfo', url: '/ajax/getUserInfo',
...@@ -326,51 +344,51 @@ ...@@ -326,51 +344,51 @@
var delivery_place = 1; // 1.大陆,2.香港 自营默认是大陆 var delivery_place = 1; // 1.大陆,2.香港 自营默认是大陆
var user_id = 0; var user_id = 0;
if (is_online) { // 线上订单 if (internal_uid) {
user_id = internal_uid;
} else {
user_id = $('.user_id').val(); user_id = $('.user_id').val();
}
if (!user_id) {
layer.msg('请先选择用户');
return false;
}
if (goods_type == 1) { // 联营需要选择交货地
delivery_place = $('input[name=delivery_place]:checked').val();
if (!user_id) { if (delivery_place == null) {
layer.msg('请先选择用户'); layer.msg('请选择交货地');
return false; return false;
} }
if (goods_type == 1) { // 联营需要选择交货地 if (type == 3 || type == 4) {
delivery_place = $('input[name=delivery_place]:checked').val(); layer.msg('仅支持联营商品下单,请在自营订单中下单');
return false;
}
if (delivery_place == null) { var goods_min_price = $(this).parents('.sku-info').find('.goods-min-price').text();
layer.msg('请选择交货地'); var goods_min_price_us = $(this).parents('.sku-info').find('.goods-min-price-us').text();
return false;
}
if (type == 3 || type == 4) { if (delivery_place == 1) {
layer.msg('仅支持联营商品下单,请在自营订单中下单'); if (goods_min_price == 0) {
layer.msg('缺少RMB价格,商品添加失败');
return false; return false;
} }
} else if (delivery_place == 2) {
var goods_min_price = $(this).parents('.sku-info').find('.goods-min-price').text(); if (goods_min_price_us == 0) {
var goods_min_price_us = $(this).parents('.sku-info').find('.goods-min-price-us').text(); layer.msg('缺少美金价格,商品添加失败');
if (delivery_place == 1) {
if (goods_min_price == 0) {
layer.msg('缺少RMB价格,商品添加失败');
return false;
}
} else if (delivery_place == 2) {
if (goods_min_price_us == 0) {
layer.msg('缺少美金价格,商品添加失败');
return false;
}
}
} else {
if (type == 1 || type == 2) { // 1.联营 2.专卖
layer.msg('仅支持自营商品下单,请在联营订单中下单');
return false; return false;
} }
}
} else {
if (type == 1 || type == 2) { // 1.联营 2.专卖
layer.msg('仅支持自营商品下单,请在联营订单中下单');
return false;
} }
} }
user_id = internal_uid ? internal_uid : user_id;
var datax = { var datax = {
uid: user_id, uid: user_id,
id: goods_id, id: goods_id,
...@@ -410,12 +428,12 @@ ...@@ -410,12 +428,12 @@
var user_id = 0; var user_id = 0;
var delivery_place = 1; // 1.大陆,2.香港 自营默认是大陆 var delivery_place = 1; // 1.大陆,2.香港 自营默认是大陆
if (is_online) { if (internal_uid) {
user_id = internal_uid;
} else {
user_id = $('.user_id').val(); user_id = $('.user_id').val();
} }
user_id = internal_uid ? internal_uid : user_id;
if (num < min_buy) { if (num < min_buy) {
num = min_buy; num = min_buy;
layer.msg('购买数量低于最小起订量,默认调整为最小起订量'); layer.msg('购买数量低于最小起订量,默认调整为最小起订量');
...@@ -450,12 +468,12 @@ ...@@ -450,12 +468,12 @@
var user_id = 0; var user_id = 0;
var delivery_place = 1; // 1.大陆,2.香港 自营默认是大陆 var delivery_place = 1; // 1.大陆,2.香港 自营默认是大陆
if (is_online) { if (internal_uid) {
user_id = internal_uid;
} else {
user_id = $('.user_id').val(); user_id = $('.user_id').val();
} }
user_id = internal_uid ? internal_uid : user_id;
if (goods_type == 1) { // 联营需要选择交货地 if (goods_type == 1) { // 联营需要选择交货地
delivery_place = $('input[name=delivery_place]:checked').val(); delivery_place = $('input[name=delivery_place]:checked').val();
} }
...@@ -594,17 +612,17 @@ ...@@ -594,17 +612,17 @@
// 提交订单 // 提交订单
$('.submit-order').click(function() { $('.submit-order').click(function() {
var address_id = $('input[name=address_id]').val(); var address_id = $('input[name=address_id]').val();
var type = $(this).data('type'); var type = $(this).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(); // 订单备注
if (is_online) { if (internal_uid) {
user_id = internal_uid;
} else {
user_id = $('.user_id').val(); user_id = $('.user_id').val();
} }
user_id = internal_uid ? internal_uid : user_id;
$('.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);
...@@ -633,10 +651,15 @@ ...@@ -633,10 +651,15 @@
layer.msg('请选择快递信息'); layer.msg('请选择快递信息');
return false; return false;
} }
if ((inv_type && !tax_id) || (!tax_id && goods_type == 2)) { if (type == 4) { // 自营其他业务
layer.msg('请选择发票信息'); var business_type = $('#business_type').val();
return false; datax.business_type = business_type;
} else {
if ((inv_type && !tax_id) || (!tax_id && goods_type == 2)) {
layer.msg('请选择发票信息');
return false;
}
} }
datax.tax_id = tax_id; datax.tax_id = tax_id;
...@@ -644,10 +667,8 @@ ...@@ -644,10 +667,8 @@
} }
// 自营线上 // 自营线上
if (type == 2) { 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() {
......
...@@ -87,6 +87,7 @@ ...@@ -87,6 +87,7 @@
is_new = $('#is_new').val() ? $('#is_new').val() : ''; is_new = $('#is_new').val() ? $('#is_new').val() : '';
order_payment_mode = $('#order_payment_mode').val() ? $('#order_payment_mode').val() : '', order_payment_mode = $('#order_payment_mode').val() ? $('#order_payment_mode').val() : '',
is_new_order = $('#is_new_order').val() ? $('#is_new_order').val() : ''; is_new_order = $('#is_new_order').val() ? $('#is_new_order').val() : '';
business_type = $('#business_type').val() ? $('#business_type').val() : '';
if (url == '/export') { if (url == '/export') {
if (type == 1) { // 联营 if (type == 1) { // 联营
...@@ -103,12 +104,12 @@ ...@@ -103,12 +104,12 @@
} }
} else { // 自营 } else { // 自营
if (test_order.length) { if (test_order.length) {
if (!order_contain && !time_start && !time_end && !order_payment_mode && !order_status && !sale_type && !order_invoice_status && !order_source_pf && !order_source_adtag && !order_source_ptag && !is_new && !test_order.is(':checked')) { if (!order_contain && !time_start && !time_end && !order_payment_mode && !order_status && !sale_type && !order_invoice_status && !order_source_pf && !order_source_adtag && !order_source_ptag && !is_new && !business_type && !test_order.is(':checked')) {
layer.msg('请选择筛选条件,再导出!'); layer.msg('请选择筛选条件,再导出!');
return false; return false;
} }
} else { } else {
if (!order_contain && !time_start && !time_end && !order_payment_mode && !order_status && !sale_type && !order_invoice_status && !order_source_pf && !order_source_adtag && !order_source_ptag && !is_new) { if (!order_contain && !time_start && !time_end && !order_payment_mode && !order_status && !sale_type && !order_invoice_status && !order_source_pf && !order_source_adtag && !order_source_ptag && !is_new && !business_type) {
layer.msg('请选择筛选条件,再导出!'); layer.msg('请选择筛选条件,再导出!');
return false; return false;
} }
...@@ -192,6 +193,10 @@ ...@@ -192,6 +193,10 @@
listUrl += '&order_payment_mode=' + order_payment_mode; listUrl += '&order_payment_mode=' + order_payment_mode;
} }
if (business_type) {
listUrl += '&business_type=' + business_type;
}
if (test_order.is(':checked')) { if (test_order.is(':checked')) {
listUrl += '&test_order=' + 1; listUrl += '&test_order=' + 1;
} }
...@@ -363,6 +368,7 @@ ...@@ -363,6 +368,7 @@
is_new : $('#is_new').val() ? $('#is_new').val() : '', is_new : $('#is_new').val() ? $('#is_new').val() : '',
order_payment_mode : $('#order_payment_mode').val() ? $('#order_payment_mode').val() : '', order_payment_mode : $('#order_payment_mode').val() ? $('#order_payment_mode').val() : '',
is_new_order : $('#is_new_order').val() ? $('#is_new_order').val() : '', is_new_order : $('#is_new_order').val() ? $('#is_new_order').val() : '',
business_type : $('#business_type').val() ? $('#business_type').val() : '',
pid : pid, pid : pid,
}; };
......
...@@ -78,7 +78,7 @@ ...@@ -78,7 +78,7 @@
<h3>商品信息</h3> <h3>商品信息</h3>
</div> </div>
<div class="ibox-content"> <div class="ibox-content create-order">
<div class="row"> <div class="row">
<style> <style>
.search-sku{width: 240px !important;} .search-sku{width: 240px !important;}
......
...@@ -216,7 +216,7 @@ ...@@ -216,7 +216,7 @@
<h3>商品信息</h3> <h3>商品信息</h3>
</div> </div>
<div class="ibox-content"> <div class="ibox-content create-order">
<div class="row"> <div class="row">
<div class="col-sm-12"> <div class="col-sm-12">
<input type="text" class="search-sku" name="sku_id" value="" placeholder="请输入SKUID"> <input type="text" class="search-sku" name="sku_id" value="" placeholder="请输入SKUID">
......
...@@ -234,7 +234,7 @@ ...@@ -234,7 +234,7 @@
<h3>商品信息</h3> <h3>商品信息</h3>
</div> </div>
<div class="ibox-content"> <div class="ibox-content create-order">
<div class="row"> <div class="row">
<div class="col-sm-12"> <div class="col-sm-12">
<input type="text" class="search-sku" name="sku_id" value="" placeholder="请输入SKUID"> <input type="text" class="search-sku" name="sku_id" value="" placeholder="请输入SKUID">
......
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>订单管理后台 | {{ $title }}</title>
<script>document.domain="{{ Config::get('website.domain') }}";</script>
@include('addOffline.css')
@include('addOffline.js')
</head>
<body class="body-small">
<div id="wrapper">
<!-- layouts.navigation -->
@include('layouts.navigation')
<div id="page-wrapper" class="gray-bg">
<div class="row">
<div class="wrapper">
@include('layouts.header')
<div class="page-content">
<div class="ibox float-e-margins">
@include('addOtherOrder.content')
</div>
</div>
</div>
</div>
</div>
</div>
</body>
...@@ -536,7 +536,7 @@ ...@@ -536,7 +536,7 @@
<tr> <tr>
<td>优惠金额:</td> <td>优惠金额:</td>
<td class="edit-parent-td"> <td class="edit-parent-td">
{{$currency}}<span id="other_money">{{$order_price_info['discount_amount']}}</span> <span id="other_money">{{$order_price_info['discount_amount']}}</span>
</td> </td>
</tr> </tr>
@endif @endif
...@@ -558,6 +558,15 @@ ...@@ -558,6 +558,15 @@
</span> </span>
</td> </td>
</tr> </tr>
@if (isset($order_price_info['pay_preferential']) && $order_price_info['pay_preferential'] != 0)
<tr>
<td>支付优惠:</td>
<td class="edit-parent-td">
<span id="other_money">{{$order_price_info['pay_preferential']}}</span>
</td>
</tr>
@endif
</table> </table>
</div> </div>
......
...@@ -138,6 +138,19 @@ ...@@ -138,6 +138,19 @@
</dd> </dd>
</dl> --> </dl> -->
<dl>
<dt>业务类型:</dt>
<dd>
<select id="business_type" name="business_type" class="form-control business_type selectpicker" title="全部" multiple>
@if (Config('params.business_type'))
@foreach (Config('params.business_type') as $k=>$v)
<option value="{{$k}}">{{$v}}</option>
@endforeach
@endif
</select>
</dd>
</dl>
@if (in_array('self_check_test_order', $userPerms)) @if (in_array('self_check_test_order', $userPerms))
<dl> <dl>
<dt></dt> <dt></dt>
...@@ -354,6 +367,7 @@ ...@@ -354,6 +367,7 @@
var order_status = "{{$condition['order_status']}}"; var order_status = "{{$condition['order_status']}}";
var sale_type = "{{$condition['sale_type']}}"; var sale_type = "{{$condition['sale_type']}}";
var order_payment_mode = "{{$condition['order_payment_mode']}}"; var order_payment_mode = "{{$condition['order_payment_mode']}}";
var business_type = "{{$condition['business_type']}}";
var order_source_pf = "{{$condition['order_source_pf']}}"; var order_source_pf = "{{$condition['order_source_pf']}}";
var order_invoice_status = "{{$condition['order_invoice_status']}}"; var order_invoice_status = "{{$condition['order_invoice_status']}}";
var order_send = "{{$condition['order_send']}}"; var order_send = "{{$condition['order_send']}}";
...@@ -365,7 +379,7 @@ ...@@ -365,7 +379,7 @@
$('input[name=test_order]').attr('checked', true); $('input[name=test_order]').attr('checked', true);
} }
$(".order_status, .order_payment_mode, .order_source_pf").selectpicker({ $(".order_status, .order_payment_mode, .order_source_pf, .business_type").selectpicker({
actionsBox:true, //在下拉选项添加选中所有和取消选中的按钮 actionsBox:true, //在下拉选项添加选中所有和取消选中的按钮
countSelectedText:"已选中{0}项", countSelectedText:"已选中{0}项",
selectedTextFormat:"count > 5", selectedTextFormat:"count > 5",
...@@ -381,6 +395,7 @@ ...@@ -381,6 +395,7 @@
$('#order_send').selectpicker('val', order_send); $('#order_send').selectpicker('val', order_send);
$('.order_pay_type').selectpicker('val', order_pay_type.split(',')).trigger("change"); $('.order_pay_type').selectpicker('val', order_pay_type.split(',')).trigger("change");
$('.is_new').selectpicker('val', is_new.split(',')).trigger("change"); $('.is_new').selectpicker('val', is_new.split(',')).trigger("change");
$('.business_type').selectpicker('val', business_type.split(',')).trigger("change");
$.lie.order.index(); $.lie.order.index();
</script> </script>
\ No newline at end of file
...@@ -41,9 +41,12 @@ ...@@ -41,9 +41,12 @@
@elseif ($type == 2) @elseif ($type == 2)
<a class="btn btn-success" href="/self_order">查看订单</a> <a class="btn btn-success" href="/self_order">查看订单</a>
<a class="btn btn-default" href="/add_online">继续新增</a> <a class="btn btn-default" href="/add_online">继续新增</a>
@else @elseif ($type == 3)
<a class="btn btn-success" href="/self_order">查看订单</a> <a class="btn btn-success" href="/self_order">查看订单</a>
<a class="btn btn-default" href="/add_offline">继续新增</a> <a class="btn btn-default" href="/add_offline">继续新增</a>
@else
<a class="btn btn-success" href="/self_order">查看订单</a>
<a class="btn btn-default" href="/add_other_order">继续新增</a>
@endif @endif
</div> </div>
</div> </div>
......
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