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
d1b197df
Commit
d1b197df
authored
7 years ago
by
Sandy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug fix
parent
95dae9b2
master
No related merge requests found
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
TransportCreateProductCell.m
...wControllers/Transport/Views/TransportCreateProductCell.m
+4
-4
No files found.
XFFruit/ViewControllers/Transport/Views/TransportCreateProductCell.m
View file @
d1b197df
...
...
@@ -191,16 +191,16 @@
self
.
showBaseCountLabel
.
text
=
[
NSString
stringWithFormat
:
@"基础数量:%@%@"
,
pdtDetail
.
baseQty
,
pdtDetail
.
baseUnit
];
self
.
showBasePrice
.
text
=
[
NSString
stringWithFormat
:
@"基础单价:%@元"
,
pdtDetail
.
price
];
self
.
showPriceLabel
.
text
=
[
NSString
stringWithFormat
:
@"包装单价:%.
2
f元"
,[
pdtDetail
.
packprice
floatValue
]];
self
.
showPriceLabel
.
text
=
[
NSString
stringWithFormat
:
@"包装单价:%.
4
f元"
,[
pdtDetail
.
packprice
floatValue
]];
self
.
showPurchaseLabel
.
text
=
[
NSString
stringWithFormat
:
@"采购单号:%@"
,
pdtDetail
.
purchasebillnumber
.
length
>
0
?
pdtDetail
.
purchasebillnumber
:
@"无"
];
self
.
showTotalLabel
.
text
=
[
NSString
stringWithFormat
:
@"总金额:%.
2
f元"
,[
pdtDetail
.
total
floatValue
]];
self
.
showTotalLabel
.
text
=
[
NSString
stringWithFormat
:
@"总金额:%.
4
f元"
,[
pdtDetail
.
total
floatValue
]];
self
.
showShippedBaseQty
.
text
=
[
NSString
stringWithFormat
:
@"转运包装数量:%@%@"
,
pdtDetail
.
transferQty
?
[
pdtDetail
.
transferQty
stringValue
]:
@"0"
,
pdtDetail
.
unit
];
self
.
showShippedQty
.
text
=
[
NSString
stringWithFormat
:
@"转运运基础数量:%@%@"
,
pdtDetail
.
transferBaseQty
?
[
pdtDetail
.
transferBaseQty
stringValue
]:
@"0"
,
pdtDetail
.
baseUnit
];
self
.
showNoteLabel
.
text
=
[
NSString
stringWithFormat
:
@"备注:%@"
,
pdtDetail
.
note
?
pdtDetail
.
note
:
@"无"
];
self
.
showCheckPrice
.
text
=
[
NSString
stringWithFormat
:
@"考核单价:%.
2
f元"
,
pdtDetail
.
checkPrice
.
doubleValue
];
self
.
showCheckPrice
.
text
=
[
NSString
stringWithFormat
:
@"考核单价:%.
4
f元"
,
pdtDetail
.
checkPrice
.
doubleValue
];
self
.
showCheckTotal
.
text
=
[
NSString
stringWithFormat
:
@"考核总金额:%.
2
f元"
,
pdtDetail
.
checkTotal
.
doubleValue
];
self
.
showCheckTotal
.
text
=
[
NSString
stringWithFormat
:
@"考核总金额:%.
4
f元"
,
pdtDetail
.
checkTotal
.
doubleValue
];
}
-
(
void
)
setSelected
:
(
BOOL
)
selected
animated
:
(
BOOL
)
animated
{
...
...
This diff is collapsed.
Click to expand it.
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