Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
GeliBusinessPlatform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ljy
GeliBusinessPlatform
Commits
c802b886
Commit
c802b886
authored
Jun 04, 2020
by
lujunye
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://git.gelifood.com/ljy/gelibusinessplatform
parents
dd199079
375e7ec3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
3 deletions
+27
-3
GeliBusinessPlatform.xcworkspace/xcuserdata/liujunhong.xcuserdatad/UserInterfaceState.xcuserstate
...ata/liujunhong.xcuserdatad/UserInterfaceState.xcuserstate
+0
-0
GeliBusinessPlatform/ViewController/出入库记录/CRKListVC.swift
GeliBusinessPlatform/ViewController/出入库记录/CRKListVC.swift
+15
-1
GeliBusinessPlatform/ViewController/工作中心/WorkCViewController.swift
...essPlatform/ViewController/工作中心/WorkCViewController.swift
+12
-2
No files found.
GeliBusinessPlatform.xcworkspace/xcuserdata/liujunhong.xcuserdatad/UserInterfaceState.xcuserstate
View file @
c802b886
No preview for this file type
GeliBusinessPlatform/ViewController/出入库记录/CRKListVC.swift
View file @
c802b886
...
...
@@ -215,7 +215,8 @@ class CRKListVC: BaseViewController,UITableViewDelegate,UITableViewDataSource,CR
super
.
viewDidLoad
()
navbar
.
title
=
"出入库记录"
self
.
view
.
addSubview
(
navbar
)
//初始化筛选条件
pushTheSelectData
()
//searchbar
let
searchBr
=
SearchBarView
.
init
()
searchV
=
searchBr
...
...
@@ -246,6 +247,19 @@ class CRKListVC: BaseViewController,UITableViewDelegate,UITableViewDataSource,CR
self
.
listView
!.
mj_footer
=
footerMJ
self
.
listView
?
.
mj_header
?
.
beginRefreshing
()
}
func
pushTheSelectData
(){
for
i
in
0
..<
paySArr
.
count
{
if
i
==
status
{
paySArr
[
i
]
=
true
}
}
for
i
in
0
..<
bugSArr
.
count
{
if
i
==
io_type
{
bugSArr
[
i
]
=
true
}
}
}
var
status
=
0
// 出入库(审核)状态,1审核中,2通过,3不通过;0全部
var
io_type
=
0
//类型(出/入库),1入库,2出库,3撤销入库,0全部
...
...
GeliBusinessPlatform/ViewController/工作中心/WorkCViewController.swift
View file @
c802b886
...
...
@@ -341,11 +341,15 @@ class WorkCViewController: BaseViewController, UITableViewDelegate, UITableViewD
case
2
:
//入库申请
let
vc
=
CRKListVC
()
vc
.
status
=
1
vc
.
io_type
=
1
self
.
navigationController
?
.
pushViewController
(
vc
,
animated
:
true
)
return
case
3
:
//出库申请
let
vc
=
CRKListVC
()
vc
.
status
=
1
vc
.
io_type
=
2
self
.
navigationController
?
.
pushViewController
(
vc
,
animated
:
true
)
return
case
4
:
...
...
@@ -502,10 +506,16 @@ class WorkCViewController: BaseViewController, UITableViewDelegate, UITableViewD
HUD
.
flash
(
.
label
(
"敬请期待"
),
delay
:
1.2
)
return
case
121
:
//出库审核
HUD
.
flash
(
.
label
(
"敬请期待"
),
delay
:
1.2
)
let
vc
=
CRKListVC
()
vc
.
status
=
1
vc
.
io_type
=
2
self
.
navigationController
?
.
pushViewController
(
vc
,
animated
:
true
)
return
case
122
:
//入库审核
HUD
.
flash
(
.
label
(
"敬请期待"
),
delay
:
1.2
)
let
vc
=
CRKListVC
()
vc
.
status
=
1
vc
.
io_type
=
1
self
.
navigationController
?
.
pushViewController
(
vc
,
animated
:
true
)
return
case
123
:
//新增仓库
let
vc
=
CheckWareHourseViewController
()
...
...
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