Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
zhangzhonghua
/
BoneHouse_Business_APP
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
ef444ba0
authored
May 14, 2021
by
wong.peiyi
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
借货单通过部门而不是通过销售员过滤、ios拍照及上传heic不了bug修复
parent
89116767
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
3 deletions
app/containers/equipConsu/EquipConsuPage.js
app/containers/equipConsu/EquipConsuPage.js
View file @
ef444ba0
...
...
@@ -747,7 +747,10 @@ class EquipConsuPage extends Component {
handleOrderInfoCheck
(
curData
)
{
let
{
state
,
props
}
=
this
let
that
=
this
const
{
OBS_MOBILE_CONSU_DEPARTMENT_DISPLAY
}
=
state
.
sysValues
if
(
this
.
judgeOrgIsNull
()
&&
this
.
judgeCustomerIsNull
())
{
if
(
OBS_MOBILE_CONSU_DEPARTMENT_DISPLAY
>
0
&&
!
this
.
judgeDepartmentIsNull
())
return
that
.
setState
({
currentTitle
:
curData
.
title
,
currentItem
:
{
...
...
@@ -764,10 +767,14 @@ class EquipConsuPage extends Component {
let
params
=
{
access_token
:
props
.
token
,
org_code
:
state
.
listOptionData
[
1
].
value
,
seller_code
:
props
.
userInfo
.
user_name
,
customer_code
:
state
.
listOptionData
[
2
].
value
,
collect_header_status
:
'RETURNED,COLLECTED'
}
if
(
OBS_MOBILE_CONSU_DEPARTMENT_DISPLAY
>
0
)
{
params
.
department_code
=
state
.
listOptionData
[
15
].
value
}
else
{
params
.
seller_code
=
props
.
userInfo
.
user_name
}
props
.
requestEquipOrderInfo
(
params
)
})
}
...
...
@@ -775,13 +782,19 @@ class EquipConsuPage extends Component {
// 客户名称选择后,判断订单信息是否只有一条数据
async
customerGetOrderInfo
()
{
let
{
state
,
props
}
=
this
const
{
OBS_MOBILE_CONSU_DEPARTMENT_DISPLAY
}
=
state
.
sysValues
let
params
=
{
access_token
:
props
.
token
,
org_code
:
state
.
listOptionData
[
1
].
value
,
seller_code
:
props
.
userInfo
.
user_name
,
customer_code
:
state
.
listOptionData
[
2
].
value
,
collect_header_status
:
'RETURNED,COLLECTED'
}
if
(
OBS_MOBILE_CONSU_DEPARTMENT_DISPLAY
>
0
&&
!!
state
.
listOptionData
[
15
].
value
)
{
params
.
department_code
=
state
.
listOptionData
[
15
].
value
}
else
{
params
.
seller_code
=
props
.
userInfo
.
user_name
}
let
that
=
this
let
{
global_domain_config
}
=
props
let
cusResult
=
await
reqEquipOrderInfo
(
global_domain_config
,
params
);
...
...
@@ -1162,6 +1175,9 @@ class EquipConsuPage extends Component {
source
=
res
.
uri
;
}
else
{
source
=
res
.
uri
.
replace
(
'file://'
,
''
);
if
(
!
res
.
fileName
)
{
res
.
fileName
=
new
Date
().
getTime
()
+
'.HEIC'
}
}
const
formData
=
new
FormData
();
let
file
=
{
uri
:
source
,
type
:
'multipart/form-data'
,
name
:
res
.
fileName
};
...
...
@@ -1283,7 +1299,7 @@ class EquipConsuPage extends Component {
return
this
.
showTipFirstSelect
(
3
)
}
// 判断
订单
信息是否为空
// 判断
部门
信息是否为空
judgeDepartmentIsNull
()
{
return
this
.
showTipFirstSelect
(
15
)
}
...
...
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