Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
朱继来
/
后台订单管理
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
fb7069af
authored
Apr 14, 2021
by
朱继来
Browse files
Options
_('Browse Files')
Download
Plain Diff
Merge branch 'zjl_inquiry_order_20210311' into development
parents
5b56a881
da0b8dbf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
50 additions
and
50 deletions
public/js/add_order.js
resources/views/addOrder/content.blade.php
public/js/add_order.js
View file @
fb7069af
...
...
@@ -769,54 +769,54 @@
// }
}
if
(
type
==
1
&&
is_dgk
)
{
// 联营包含digikey商品,则填写终端资料
var
customer_cn
=
$
(
'.customer_cn'
).
val
();
var
customer_en
=
$
(
'.customer_en'
).
val
();
var
customer_type
=
$
(
'.customer_type'
).
val
();
var
product_use_classone_sn
=
$
(
'.product_use_classone_sn'
).
val
();
var
product_use_classtwo_sn
=
$
(
'.product_use_classtwo_sn'
).
val
();
var
customer_website
=
$
(
'.customer_website'
).
val
();
if
(
!
customer_cn
)
{
layer
.
msg
(
'请填写终端中文名称'
);
return
false
;
}
if
(
customer_type
==
''
)
{
layer
.
msg
(
'请选择客户类型'
);
return
false
;
}
if
(
customer_type
==
1
)
{
// 若客户类型为终端,则外文名称,产品用途和网址为必填
if
(
!
customer_en
)
{
layer
.
msg
(
'请填写终端英文名称'
);
return
false
;
}
var
en_reg
=
/^
[
a-zA-Z0-9
\.\-\s\,\(\)]
+$/
;
if
(
!
en_reg
.
test
(
customer_en
)){
layer
.
msg
(
'请填写全英文名称'
);
return
false
;
}
if
(
product_use_classone_sn
==
''
)
{
layer
.
msg
(
'请选择产品用途一级分类'
);
return
false
;
}
if
(
!
customer_website
)
{
layer
.
msg
(
'请填写客户网址'
);
return
false
;
}
}
datax
.
customer_cn
=
customer_cn
;
datax
.
customer_en
=
customer_en
;
datax
.
customer_type
=
customer_type
;
datax
.
product_use_classone_sn
=
product_use_classone_sn
;
datax
.
product_use_classtwo_sn
=
product_use_classtwo_sn
;
datax
.
customer_website
=
customer_website
;
}
//
if (type == 1 && is_dgk) { // 联营包含digikey商品,则填写终端资料
//
var customer_cn = $('.customer_cn').val();
//
var customer_en = $('.customer_en').val();
//
var customer_type = $('.customer_type').val();
//
var product_use_classone_sn = $('.product_use_classone_sn').val();
//
var product_use_classtwo_sn = $('.product_use_classtwo_sn').val();
//
var customer_website = $('.customer_website').val();
//
if (!customer_cn) {
//
layer.msg('请填写终端中文名称');
//
return false;
//
}
//
if (customer_type == '') {
//
layer.msg('请选择客户类型');
//
return false;
//
}
//
if (customer_type == 1) { // 若客户类型为终端,则外文名称,产品用途和网址为必填
//
if (!customer_en) {
//
layer.msg('请填写终端英文名称');
//
return false;
//
}
//
var en_reg = /^[a-zA-Z0-9\.\-\s\,\(\)]+$/;
//
if(!en_reg.test(customer_en)){
//
layer.msg('请填写全英文名称');
//
return false;
//
}
//
if (product_use_classone_sn == '') {
//
layer.msg('请选择产品用途一级分类');
//
return false;
//
}
//
if (!customer_website) {
//
layer.msg('请填写客户网址');
//
return false;
//
}
//
}
//
datax.customer_cn = customer_cn;
//
datax.customer_en = customer_en;
//
datax.customer_type = customer_type;
//
datax.product_use_classone_sn = product_use_classone_sn;
//
datax.product_use_classtwo_sn = product_use_classtwo_sn;
//
datax.customer_website = customer_website;
//
}
datax
.
tax_id
=
tax_id
;
datax
.
user_coupon_id
=
user_coupon_id
;
...
...
resources/views/addOrder/content.blade.php
View file @
fb7069af
...
...
@@ -258,7 +258,7 @@
.customer_type
{
width
:
30%
;
}
.product_use_classone_sn
,
.product_use_classtwo_sn
{
float
:
left
;
width
:
30%
;
}
</style>
<div
class=
"client-info form-horizontal"
>
<
!-- <
div class="client-info form-horizontal">
<h4>终端客户信息 <span class="title-tips"><i class="fa fa-info-circle"></i>digikey渠道商品必填,其他渠道可不填写</span></h4>
<div class="row">
...
...
@@ -323,7 +323,7 @@
</div>
</div>
</div>
</div>
</div>
-->
</div>
</div>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment