Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
X
xffruit
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张杰
xffruit
Commits
b86c3495
Commit
b86c3495
authored
Jun 22, 2016
by
Sandy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加最后修改人、修复部分bug
parent
ec504896
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
44 additions
and
31 deletions
+44
-31
Info.plist
XFFruit/Info.plist
+2
-2
ICRAppMacro.h
XFFruit/Macro/ICRAppMacro.h
+3
-3
PurchaseDetailViewController.m
...llers/Purchase/Controllers/PurchaseDetailViewController.m
+9
-7
ProductBillCell.m
XFFruit/ViewControllers/Purchase/Views/ProductBillCell.m
+4
-3
NewReceiveViewController.m
...trollers/Receiving/Controllers/NewReceiveViewController.m
+4
-5
ReceiveViewController.m
...Controllers/Receiving/Controllers/ReceiveViewController.m
+3
-3
TransportDetailViewController.m
...ers/Transport/Controllers/TransportDetailViewController.m
+16
-5
Transport.h
XFFruit/ViewControllers/Transport/Models/Transport.h
+3
-3
No files found.
XFFruit/Info.plist
View file @
b86c3495
...
@@ -15,11 +15,11 @@
...
@@ -15,11 +15,11 @@
<
k
e
y
>
CFBundlePackageType
<
/k
e
y
>
<
k
e
y
>
CFBundlePackageType
<
/k
e
y
>
<
string
>
APPL
<
/string
>
<
string
>
APPL
<
/string
>
<
k
e
y
>
CFBundleShortVersionString
<
/k
e
y
>
<
k
e
y
>
CFBundleShortVersionString
<
/k
e
y
>
<
string
>
1.2.
3
<
/string
>
<
string
>
1.2.
4
<
/string
>
<
k
e
y
>
CFBundleSignature
<
/k
e
y
>
<
k
e
y
>
CFBundleSignature
<
/k
e
y
>
<
string
>
????
<
/string
>
<
string
>
????
<
/string
>
<
k
e
y
>
CFBundleVersion
<
/k
e
y
>
<
k
e
y
>
CFBundleVersion
<
/k
e
y
>
<
string
>
1.2.
3
<
/string
>
<
string
>
1.2.
4
<
/string
>
<
k
e
y
>
NSAppTransportSecurity
<
/k
e
y
>
<
k
e
y
>
NSAppTransportSecurity
<
/k
e
y
>
<
d
i
c
t
>
<
d
i
c
t
>
<
k
e
y
>
NSAllowsArbitraryLoads
<
/k
e
y
>
<
k
e
y
>
NSAllowsArbitraryLoads
<
/k
e
y
>
...
...
XFFruit/Macro/ICRAppMacro.h
View file @
b86c3495
...
@@ -23,10 +23,10 @@
...
@@ -23,10 +23,10 @@
#define ICR_IMAGE_BG_COLOR [UIColor colorWithW:242 a:1]
#define ICR_IMAGE_BG_COLOR [UIColor colorWithW:242 a:1]
//********阿里云内部测试环境********
//********阿里云内部测试环境********
#define HTTP_REST_API_BASE_URL @"http://218.244.151.129:7580/cruiser-server/rest"
//
#define HTTP_REST_API_BASE_URL @"http://218.244.151.129:7580/cruiser-server/rest"
//********
现场
测试环境********
//********测试环境********
//
#define HTTP_REST_API_BASE_URL @"http://122.224.171.126:7280/cruiser-server/rest"
#define HTTP_REST_API_BASE_URL @"http://122.224.171.126:7280/cruiser-server/rest"
//********现场正式环境*********
//********现场正式环境*********
...
...
XFFruit/ViewControllers/Purchase/Controllers/PurchaseDetailViewController.m
View file @
b86c3495
...
@@ -309,7 +309,7 @@ typedef enum : NSUInteger {
...
@@ -309,7 +309,7 @@ typedef enum : NSUInteger {
}
}
-
(
void
)
createPurchaseView
{
-
(
void
)
createPurchaseView
{
_leftArr
=
@[
@"单号:"
,
@"采购通知单:"
,
@"创建人:"
,
@"采购员:"
,
@"状态:"
,
@"类型:"
,
@"供应商:"
,
@"供应商确认:"
,
@"收货仓库:"
,
@"其他费用:"
,
@"总金额:"
,
@"备注:"
];
_leftArr
=
@[
@"单号:"
,
@"采购通知单:"
,
@"创建人:"
,
@"
最后修改人:"
,
@"
采购员:"
,
@"状态:"
,
@"类型:"
,
@"供应商:"
,
@"供应商确认:"
,
@"收货仓库:"
,
@"其他费用:"
,
@"总金额:"
,
@"备注:"
];
_purchaseView
=
[[
UIView
alloc
]
initWithFrame
:
CGRectMake
(
0
,
TopMargin
,
ScreenSize
.
width
,
LeftHeight
*
_leftArr
.
count
+
LeftMargin
)];
_purchaseView
=
[[
UIView
alloc
]
initWithFrame
:
CGRectMake
(
0
,
TopMargin
,
ScreenSize
.
width
,
LeftHeight
*
_leftArr
.
count
+
LeftMargin
)];
_purchaseView
.
backgroundColor
=
[
UIColor
whiteColor
];
_purchaseView
.
backgroundColor
=
[
UIColor
whiteColor
];
...
@@ -333,17 +333,19 @@ typedef enum : NSUInteger {
...
@@ -333,17 +333,19 @@ typedef enum : NSUInteger {
}
else
if
(
i
==
2
){
}
else
if
(
i
==
2
){
self
.
createOperNameLabel
=
rightLabel
;
self
.
createOperNameLabel
=
rightLabel
;
}
else
if
(
i
==
3
){
}
else
if
(
i
==
3
){
self
.
purchaser
Label
=
rightLabel
;
self
.
lastModifyName
Label
=
rightLabel
;
}
}
else
if
(
i
==
4
){
else
if
(
i
==
4
){
self
.
state
Label
=
rightLabel
;
self
.
purchaser
Label
=
rightLabel
;
}
else
if
(
i
==
5
){
}
else
if
(
i
==
5
){
self
.
typ
eLabel
=
rightLabel
;
self
.
stat
eLabel
=
rightLabel
;
}
else
if
(
i
==
6
){
}
else
if
(
i
==
6
){
self
.
vendorNam
eLabel
=
rightLabel
;
self
.
typ
eLabel
=
rightLabel
;
}
else
if
(
i
==
7
){
}
else
if
(
i
==
7
){
self
.
vendor
IsSur
eLabel
=
rightLabel
;
self
.
vendor
Nam
eLabel
=
rightLabel
;
}
else
if
(
i
==
8
){
}
else
if
(
i
==
8
){
self
.
vendorIsSureLabel
=
rightLabel
;
}
else
if
(
i
==
9
){
self
.
warehouseLabel
=
rightLabel
;
self
.
warehouseLabel
=
rightLabel
;
}
else
if
(
i
==
_leftArr
.
count
-
3
){
}
else
if
(
i
==
_leftArr
.
count
-
3
){
self
.
otherPriceLabel
=
rightLabel
;
self
.
otherPriceLabel
=
rightLabel
;
...
...
XFFruit/ViewControllers/Purchase/Views/ProductBillCell.m
View file @
b86c3495
...
@@ -143,11 +143,12 @@
...
@@ -143,11 +143,12 @@
-
(
void
)
setBillProduct
:
(
PurchaseBillProduct
*
)
billProduct
row
:
(
NSInteger
)
row
-
(
void
)
setBillProduct
:
(
PurchaseBillProduct
*
)
billProduct
row
:
(
NSInteger
)
row
{
{
//查看采购单cell上面顶上的商品、单价、包装数量等
self
.
seqLabel
.
text
=
[
NSString
stringWithFormat
:
@"%@"
,
@
(
row
+
1
)];
self
.
seqLabel
.
text
=
[
NSString
stringWithFormat
:
@"%@"
,
@
(
row
+
1
)];
self
.
titleLabel
.
text
=
billProduct
.
product_name
;
self
.
titleLabel
.
text
=
billProduct
.
product_name
;
self
.
priceLabel
.
text
=
[
NSString
stringWithFormat
:
@"%.2f元"
,[
billProduct
.
basePrice
floatValue
]];
self
.
priceLabel
.
text
=
[
NSString
stringWithFormat
:
@"%.2f元"
,[
billProduct
.
basePrice
floatValue
]];
self
.
countLabel
.
text
=
[
NSString
stringWithFormat
:
@"%@%@"
,[
billProduct
.
qty
stringValue
],
billProduct
.
unit
];
self
.
countLabel
.
text
=
[
NSString
stringWithFormat
:
@"%@%@"
,[
billProduct
.
qty
stringValue
],
billProduct
.
unit
];
self
.
shippedQtyLabel
.
text
=
[
NSString
stringWithFormat
:
@"%@%@"
,
billProduct
.
shipped
BaseQty
?
[
billProduct
.
shippedBase
Qty
stringValue
]:
@"0"
,
billProduct
.
unit
];
self
.
shippedQtyLabel
.
text
=
[
NSString
stringWithFormat
:
@"%@%@"
,
billProduct
.
shipped
Qty
?
[
billProduct
.
shipped
Qty
stringValue
]:
@"0"
,
billProduct
.
unit
];
self
.
showNameLabel
.
text
=
[
NSString
stringWithFormat
:
@"商品:%@[%@]"
,
billProduct
.
product_name
,
billProduct
.
product_code
];
self
.
showNameLabel
.
text
=
[
NSString
stringWithFormat
:
@"商品:%@[%@]"
,
billProduct
.
product_name
,
billProduct
.
product_code
];
self
.
showStandLabel
.
text
=
[
NSString
stringWithFormat
:
@"包装规格:1*%@%@"
,[
billProduct
.
qpc
stringValue
],
billProduct
.
baseUnit
];
self
.
showStandLabel
.
text
=
[
NSString
stringWithFormat
:
@"包装规格:1*%@%@"
,[
billProduct
.
qpc
stringValue
],
billProduct
.
baseUnit
];
...
@@ -187,8 +188,8 @@
...
@@ -187,8 +188,8 @@
[
attributeStr1
appendAttributedString
:[
IBTCommon
setTextViewFontOfString
:
str
paragraphStyle
:
0
fontSize
:
13
color
:
[
UIColor
redColor
]]];
[
attributeStr1
appendAttributedString
:[
IBTCommon
setTextViewFontOfString
:
str
paragraphStyle
:
0
fontSize
:
13
color
:
[
UIColor
redColor
]]];
self
.
showShippedFlag
.
attributedText
=
attributeStr1
;
self
.
showShippedFlag
.
attributedText
=
attributeStr1
;
self
.
showShippedBaseQty
.
text
=
[
NSString
stringWithFormat
:
@"发运包装数量:%@%@"
,
billProduct
.
shipped
BaseQty
?
[
billProduct
.
shippedBase
Qty
stringValue
]:
@"0"
,
billProduct
.
unit
];
self
.
showShippedBaseQty
.
text
=
[
NSString
stringWithFormat
:
@"发运包装数量:%@%@"
,
billProduct
.
shipped
Qty
?
[
billProduct
.
shipped
Qty
stringValue
]:
@"0"
,
billProduct
.
unit
];
self
.
showShippedQty
.
text
=
[
NSString
stringWithFormat
:
@"发运基础数量:%@%@"
,
billProduct
.
shipped
Qty
?
[
billProduct
.
shipped
Qty
stringValue
]:
@"0"
,
billProduct
.
baseUnit
];
self
.
showShippedQty
.
text
=
[
NSString
stringWithFormat
:
@"发运基础数量:%@%@"
,
billProduct
.
shipped
BaseQty
?
[
billProduct
.
shippedBase
Qty
stringValue
]:
@"0"
,
billProduct
.
baseUnit
];
[
self
.
showView
addSubview
:
self
.
showShippedFlag
];
[
self
.
showView
addSubview
:
self
.
showShippedFlag
];
[
self
.
showView
addSubview
:
self
.
showShippedQty
];
[
self
.
showView
addSubview
:
self
.
showShippedQty
];
[
self
.
showView
addSubview
:
self
.
showShippedBaseQty
];
[
self
.
showView
addSubview
:
self
.
showShippedBaseQty
];
...
...
XFFruit/ViewControllers/Receiving/Controllers/NewReceiveViewController.m
View file @
b86c3495
...
@@ -227,16 +227,15 @@ typedef enum : NSUInteger {
...
@@ -227,16 +227,15 @@ typedef enum : NSUInteger {
NSArray
*
leftArr
;
NSArray
*
leftArr
;
if
([
self
.
transfer
.
state
isEqualToString
:
TRANSFER_STATE_RECEIVED
])
{
//已收货
if
([
self
.
transfer
.
state
isEqualToString
:
TRANSFER_STATE_RECEIVED
])
{
//已收货
leftArr
=
@[
@"单号:"
,
@"来源单据:"
,
@"状态:"
,
@"发货仓库:"
,
@"收货仓库:"
,
@"车辆:"
,
@"司机电话:"
,
@"创建:"
,
leftArr
=
@[
@"单号:"
,
@"来源单据:"
,
@"状态:"
,
@"发货仓库:"
,
@"收货仓库:"
,
@"车辆:"
,
@"司机电话:"
,
@"创建:"
,
@"最后修改人"
,
@"收货人:"
,
@"收货人:"
,
@"收货时间:"
,
@"收货时间:"
,
@"备注"
];
@"备注"
];
}
else
if
([
self
.
transfer
.
state
isEqualToString
:
TRANSFER_STATE_ABORTED
]){
}
else
if
([
self
.
transfer
.
state
isEqualToString
:
TRANSFER_STATE_ABORTED
]){
leftArr
=
@[
@"单号:"
,
@"来源单据:"
,
@"状态:"
,
@"发货仓库:"
,
@"收货仓库:"
,
@"车辆:"
,
@"司机电话:"
,
@"创建:"
,
leftArr
=
@[
@"单号:"
,
@"来源单据:"
,
@"状态:"
,
@"发货仓库:"
,
@"收货仓库:"
,
@"车辆:"
,
@"司机电话:"
,
@"创建:"
,
@"最后修改人:"
,
@"最后修改人:"
,
@"备注"
];
@"备注"
];
}
else
{
}
else
{
leftArr
=
@[
@"单号:"
,
@"来源单据:"
,
@"状态:"
,
@"发货仓库:"
,
@"收货仓库:"
,
@"车辆:"
,
@"司机电话:"
,
@"创建:"
,
leftArr
=
@[
@"单号:"
,
@"来源单据:"
,
@"状态:"
,
@"发货仓库:"
,
@"收货仓库:"
,
@"车辆:"
,
@"司机电话:"
,
@"创建:"
,
@"最后修改人"
,
@"备注"
];
@"备注"
];
}
}
...
...
XFFruit/ViewControllers/Receiving/Controllers/ReceiveViewController.m
View file @
b86c3495
XFFruit/ViewControllers/Transport/Controllers/TransportDetailViewController.m
View file @
b86c3495
...
@@ -41,6 +41,7 @@ typedef enum : NSUInteger {
...
@@ -41,6 +41,7 @@ typedef enum : NSUInteger {
@property
(
nonatomic
,
strong
)
UILabel
*
carnumberLabel
;
@property
(
nonatomic
,
strong
)
UILabel
*
carnumberLabel
;
@property
(
nonatomic
,
strong
)
UILabel
*
carhoneLabel
;
@property
(
nonatomic
,
strong
)
UILabel
*
carhoneLabel
;
@property
(
nonatomic
,
strong
)
UILabel
*
createOperLabel
;
@property
(
nonatomic
,
strong
)
UILabel
*
createOperLabel
;
@property
(
nonatomic
,
strong
)
UILabel
*
lastModifierLabel
;
@property
(
nonatomic
,
strong
)
UILabel
*
arriveDateLabel
;
@property
(
nonatomic
,
strong
)
UILabel
*
arriveDateLabel
;
@property
(
nonatomic
,
strong
)
UILabel
*
noteLabel
;
@property
(
nonatomic
,
strong
)
UILabel
*
noteLabel
;
...
@@ -52,6 +53,7 @@ typedef enum : NSUInteger {
...
@@ -52,6 +53,7 @@ typedef enum : NSUInteger {
@property
(
nonatomic
,
strong
)
UILabel
*
leftCarnumberLabel
;
@property
(
nonatomic
,
strong
)
UILabel
*
leftCarnumberLabel
;
@property
(
nonatomic
,
strong
)
UILabel
*
leftCarhoneLabel
;
@property
(
nonatomic
,
strong
)
UILabel
*
leftCarhoneLabel
;
@property
(
nonatomic
,
strong
)
UILabel
*
leftCreateOperLabel
;
@property
(
nonatomic
,
strong
)
UILabel
*
leftCreateOperLabel
;
@property
(
nonatomic
,
strong
)
UILabel
*
leftLastModifierLabel
;
@property
(
nonatomic
,
strong
)
UILabel
*
leftArriveDateLabel
;
@property
(
nonatomic
,
strong
)
UILabel
*
leftArriveDateLabel
;
@property
(
nonatomic
,
strong
)
UILabel
*
leftNoteLabel
;
@property
(
nonatomic
,
strong
)
UILabel
*
leftNoteLabel
;
@end
@end
...
@@ -122,6 +124,7 @@ typedef enum : NSUInteger {
...
@@ -122,6 +124,7 @@ typedef enum : NSUInteger {
self
.
carhoneLabel
.
text
=
[
IBTCommon
checkString
:
self
.
transport
.
carphone
];
self
.
carhoneLabel
.
text
=
[
IBTCommon
checkString
:
self
.
transport
.
carphone
];
self
.
noteLabel
.
text
=
[
NSString
stringWithFormat
:
@"%@"
,
self
.
transport
.
note
?
self
.
transport
.
note
:
@"无"
];
self
.
noteLabel
.
text
=
[
NSString
stringWithFormat
:
@"%@"
,
self
.
transport
.
note
?
self
.
transport
.
note
:
@"无"
];
self
.
createOperLabel
.
text
=
[
NSString
stringWithFormat
:
@"%@%@"
,[
IBTCommon
checkString
:
self
.
transport
.
create_operName
],
self
.
transport
.
create_time
.
length
>
10
?
[
self
.
transport
.
create_time
substringToIndex
:
10
]
:
self
.
transport
.
create_time
];
self
.
createOperLabel
.
text
=
[
NSString
stringWithFormat
:
@"%@%@"
,[
IBTCommon
checkString
:
self
.
transport
.
create_operName
],
self
.
transport
.
create_time
.
length
>
10
?
[
self
.
transport
.
create_time
substringToIndex
:
10
]
:
self
.
transport
.
create_time
];
self
.
lastModifierLabel
.
text
=
[
IBTCommon
checkString
:
self
.
transport
.
lastModify_operName
];
self
.
arriveDateLabel
.
text
=
[
NSString
stringWithFormat
:
@"%@"
,
self
.
transport
.
arriveDate
?[[
IBTCommon
checkString
:
self
.
transport
.
arriveDate
]
substringToIndex
:
10
]:
@"无"
];
self
.
arriveDateLabel
.
text
=
[
NSString
stringWithFormat
:
@"%@"
,
self
.
transport
.
arriveDate
?[[
IBTCommon
checkString
:
self
.
transport
.
arriveDate
]
substringToIndex
:
10
]:
@"无"
];
[
_transView
refreshTranProduct
:
self
.
transport
.
pdtDetails
];
[
_transView
refreshTranProduct
:
self
.
transport
.
pdtDetails
];
[
_transView
refreshCost
:
self
.
transport
.
accountDetails
];
[
_transView
refreshCost
:
self
.
transport
.
accountDetails
];
...
@@ -174,8 +177,13 @@ typedef enum : NSUInteger {
...
@@ -174,8 +177,13 @@ typedef enum : NSUInteger {
self
.
leftCreateOperLabel
.
top
=
self
.
leftCarhoneLabel
.
bottom
;
self
.
leftCreateOperLabel
.
top
=
self
.
leftCarhoneLabel
.
bottom
;
self
.
createOperLabel
.
top
=
self
.
leftCarhoneLabel
.
bottom
;
self
.
createOperLabel
.
top
=
self
.
leftCarhoneLabel
.
bottom
;
self
.
leftArriveDateLabel
.
top
=
self
.
leftCreateOperLabel
.
bottom
;
self
.
arriveDateLabel
.
top
=
self
.
leftCreateOperLabel
.
bottom
;
self
.
leftLastModifierLabel
.
top
=
self
.
leftCreateOperLabel
.
bottom
;
self
.
lastModifierLabel
.
top
=
self
.
leftCreateOperLabel
.
bottom
;
self
.
leftArriveDateLabel
.
top
=
self
.
leftLastModifierLabel
.
bottom
;
self
.
arriveDateLabel
.
top
=
self
.
leftLastModifierLabel
.
bottom
;
self
.
leftNoteLabel
.
top
=
self
.
leftArriveDateLabel
.
bottom
;
self
.
leftNoteLabel
.
top
=
self
.
leftArriveDateLabel
.
bottom
;
self
.
noteLabel
.
top
=
self
.
leftArriveDateLabel
.
bottom
;
self
.
noteLabel
.
top
=
self
.
leftArriveDateLabel
.
bottom
;
...
@@ -187,7 +195,7 @@ typedef enum : NSUInteger {
...
@@ -187,7 +195,7 @@ typedef enum : NSUInteger {
self
.
noteLabel
.
height
=
height
;
self
.
noteLabel
.
height
=
height
;
CGFloat
totalHeight
=
height
+
LeftHeight
*
8
+
purchaseHeight
;
CGFloat
totalHeight
=
height
+
LeftHeight
*
9
+
purchaseHeight
;
CGRect
purchaseFrame
=
_transportView
.
frame
;
CGRect
purchaseFrame
=
_transportView
.
frame
;
purchaseFrame
.
size
.
height
=
totalHeight
+
LeftMargin
;
purchaseFrame
.
size
.
height
=
totalHeight
+
LeftMargin
;
...
@@ -333,7 +341,7 @@ typedef enum : NSUInteger {
...
@@ -333,7 +341,7 @@ typedef enum : NSUInteger {
}
else
{
}
else
{
[
self
hiddenAllBtn
];
[
self
hiddenAllBtn
];
}
}
NSArray
*
leftArr
=
@[
@"单号:"
,
@"采购单:"
,
@"状态:"
,
@"发货仓库:"
,
@"收货仓库:"
,
@"车辆:"
,
@"司机电话:"
,
@"创建:"
,
@"预计到货时间:"
,
@"备注:"
];
NSArray
*
leftArr
=
@[
@"单号:"
,
@"采购单:"
,
@"状态:"
,
@"发货仓库:"
,
@"收货仓库:"
,
@"车辆:"
,
@"司机电话:"
,
@"创建:"
,
@"
最后修改人:"
,
@"
预计到货时间:"
,
@"备注:"
];
_transportView
=
[[
UIView
alloc
]
initWithFrame
:
CGRectMake
(
0
,
TopMargin
,
ScreenSize
.
width
,
LeftHeight
*
leftArr
.
count
+
LeftMargin
)];
_transportView
=
[[
UIView
alloc
]
initWithFrame
:
CGRectMake
(
0
,
TopMargin
,
ScreenSize
.
width
,
LeftHeight
*
leftArr
.
count
+
LeftMargin
)];
_transportView
.
backgroundColor
=
[
UIColor
whiteColor
];
_transportView
.
backgroundColor
=
[
UIColor
whiteColor
];
...
@@ -376,7 +384,10 @@ typedef enum : NSUInteger {
...
@@ -376,7 +384,10 @@ typedef enum : NSUInteger {
}
else
if
(
i
==
7
){
}
else
if
(
i
==
7
){
self
.
createOperLabel
=
rightLabel
;
self
.
createOperLabel
=
rightLabel
;
self
.
leftCreateOperLabel
=
leftLabel
;
self
.
leftCreateOperLabel
=
leftLabel
;
}
else
if
(
i
==
8
){
}
else
if
(
i
==
8
){
//最后修改人
self
.
lastModifierLabel
=
rightLabel
;
self
.
leftLastModifierLabel
=
leftLabel
;
}
else
if
(
i
==
9
){
leftLabel
.
width
=
LeftWidth
+
10
;
leftLabel
.
width
=
LeftWidth
+
10
;
rightLabel
.
left
=
leftLabel
.
right
;
rightLabel
.
left
=
leftLabel
.
right
;
rightLabel
.
width
=
ScreenSize
.
width
-
leftLabel
.
width
-
LeftMargin
;
rightLabel
.
width
=
ScreenSize
.
width
-
leftLabel
.
width
-
LeftMargin
;
...
...
XFFruit/ViewControllers/Transport/Models/Transport.h
View file @
b86c3495
...
@@ -28,9 +28,9 @@
...
@@ -28,9 +28,9 @@
@property
(
nonatomic
,
strong
)
NSString
*
create_time
;
//创建时间
@property
(
nonatomic
,
strong
)
NSString
*
create_time
;
//创建时间
@property
(
nonatomic
,
strong
)
NSString
*
create_id
;
//创建人代码
@property
(
nonatomic
,
strong
)
NSString
*
create_id
;
//创建人代码
@property
(
nonatomic
,
strong
)
NSString
*
create_operName
;
//create_operName
@property
(
nonatomic
,
strong
)
NSString
*
create_operName
;
//create_operName
@property
(
nonatomic
,
strong
)
NSString
*
lastModif
ied
_time
;
//最后修改时间
@property
(
nonatomic
,
strong
)
NSString
*
lastModif
y
_time
;
//最后修改时间
@property
(
nonatomic
,
strong
)
NSString
*
lastModif
ied
_id
;
//最后修改人代码
@property
(
nonatomic
,
strong
)
NSString
*
lastModif
y
_id
;
//最后修改人代码
@property
(
nonatomic
,
strong
)
NSString
*
lastModif
ied
_operName
;
//最后修改人名称
@property
(
nonatomic
,
strong
)
NSString
*
lastModif
y
_operName
;
//最后修改人名称
@property
(
nonatomic
,
strong
)
NSString
*
arriveDate
;
//新增预计到达时
@property
(
nonatomic
,
strong
)
NSString
*
arriveDate
;
//新增预计到达时
@property
(
nonatomic
,
strong
)
NSArray
*
pdtDetails
;
//商品
@property
(
nonatomic
,
strong
)
NSArray
*
pdtDetails
;
//商品
...
...
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