SO.storyboard 226 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="24412" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
  3. <device id="ipad10_2" orientation="portrait" layout="fullscreen" appearance="light"/>
  4. <dependencies>
  5. <deployment version="5696" identifier="iOS"/>
  6. <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="24405"/>
  7. <capability name="Safe area layout guides" minToolsVersion="9.0"/>
  8. <capability name="System colors in document resources" minToolsVersion="11.0"/>
  9. <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
  10. </dependencies>
  11. <scenes>
  12. <!--Set Quantity-->
  13. <scene sceneID="s0d-6b-0kx">
  14. <objects>
  15. <viewController storyboardIdentifier="ScanOrderScanModelViewController" title="Set Quantity" useStoryboardIdentifierAsRestorationIdentifier="YES" id="Y6W-OH-hqX" customClass="ScanOrderScanModelViewController" sceneMemberID="viewController">
  16. <view key="view" contentMode="scaleToFill" id="5EZ-qb-Rvc">
  17. <rect key="frame" x="0.0" y="0.0" width="480" height="320"/>
  18. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  19. <subviews>
  20. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="name aaaaaaaaaaaaa aaaaaaaaaa BBBBB CCCCC" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="PRk-Ka-jS0" userLabel="name ">
  21. <rect key="frame" x="148" y="20" width="308" height="100"/>
  22. <fontDescription key="fontDescription" name="HelveticaNeue" family="Helvetica Neue" pointSize="15"/>
  23. <nil key="highlightedColor"/>
  24. </label>
  25. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="cgR-Wk-NQr">
  26. <rect key="frame" x="376" y="265.5" width="80" height="34.5"/>
  27. <state key="normal" title="Button"/>
  28. <buttonConfiguration key="configuration" style="plain" title="Update"/>
  29. <connections>
  30. <action selector="onUpdate:" destination="Y6W-OH-hqX" eventType="touchUpInside" id="czo-ja-q2a"/>
  31. </connections>
  32. </button>
  33. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="mGr-dd-c4r">
  34. <rect key="frame" x="24" y="265.5" width="47.5" height="34.5"/>
  35. <state key="normal" title="Button"/>
  36. <buttonConfiguration key="configuration" style="plain" title="OK"/>
  37. <connections>
  38. <action selector="onOK:" destination="Y6W-OH-hqX" eventType="touchUpInside" id="5pr-zY-3wo"/>
  39. </connections>
  40. </button>
  41. <stepper opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" value="1" maximumValue="99999" translatesAutoresizingMaskIntoConstraints="NO" id="jKb-jW-Rds">
  42. <rect key="frame" x="366" y="175.5" width="94" height="32"/>
  43. <constraints>
  44. <constraint firstAttribute="height" constant="32" id="8rX-l5-A6F"/>
  45. <constraint firstAttribute="width" constant="94" id="gvx-w5-P7c"/>
  46. </constraints>
  47. </stepper>
  48. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="G7K-ET-ViD" userLabel="imgbtn detail">
  49. <rect key="frame" x="24" y="20" width="100" height="100"/>
  50. <constraints>
  51. <constraint firstAttribute="width" constant="100" id="9yV-y3-PVn"/>
  52. <constraint firstAttribute="height" constant="100" id="ZUL-Ix-psD"/>
  53. </constraints>
  54. <state key="normal" image="notfound_s">
  55. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  56. </state>
  57. </button>
  58. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="QTY:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="j28-du-bFd">
  59. <rect key="frame" x="240" y="181" width="41" height="21"/>
  60. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  61. <nil key="textColor"/>
  62. <nil key="highlightedColor"/>
  63. </label>
  64. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Price:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="gGe-DV-etn">
  65. <rect key="frame" x="20" y="140" width="44" height="21"/>
  66. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  67. <nil key="textColor"/>
  68. <nil key="highlightedColor"/>
  69. </label>
  70. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="6Gl-5w-SXW">
  71. <rect key="frame" x="84" y="140" width="42" height="21"/>
  72. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  73. <nil key="textColor"/>
  74. <nil key="highlightedColor"/>
  75. </label>
  76. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="z2t-CO-48M">
  77. <rect key="frame" x="316" y="140" width="42" height="21"/>
  78. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  79. <nil key="textColor"/>
  80. <nil key="highlightedColor"/>
  81. </label>
  82. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Mpack:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="zIY-Ho-SNj">
  83. <rect key="frame" x="240" y="140" width="56" height="21"/>
  84. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  85. <nil key="textColor"/>
  86. <nil key="highlightedColor"/>
  87. </label>
  88. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" text="9999" borderStyle="roundedRect" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="gOI-tN-7Fh" userLabel="qty">
  89. <rect key="frame" x="296" y="174.5" width="55" height="34"/>
  90. <constraints>
  91. <constraint firstAttribute="width" constant="55" id="Lfa-9S-dCt"/>
  92. </constraints>
  93. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  94. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  95. <textInputTraits key="textInputTraits" keyboardType="numberPad"/>
  96. </textField>
  97. </subviews>
  98. <viewLayoutGuide key="safeArea" id="j2n-WV-y9L"/>
  99. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  100. <constraints>
  101. <constraint firstItem="gGe-DV-etn" firstAttribute="top" secondItem="G7K-ET-ViD" secondAttribute="bottom" constant="20" id="3GU-k4-ifh"/>
  102. <constraint firstItem="zIY-Ho-SNj" firstAttribute="centerY" secondItem="gGe-DV-etn" secondAttribute="centerY" id="4LP-ex-cNh"/>
  103. <constraint firstItem="j2n-WV-y9L" firstAttribute="bottom" secondItem="mGr-dd-c4r" secondAttribute="bottom" constant="20" id="58c-Jv-wgG"/>
  104. <constraint firstItem="jKb-jW-Rds" firstAttribute="centerY" secondItem="j28-du-bFd" secondAttribute="centerY" id="5Pu-Nk-VwB"/>
  105. <constraint firstItem="gGe-DV-etn" firstAttribute="leading" secondItem="j2n-WV-y9L" secondAttribute="leading" constant="20" id="6fi-Oz-HkC"/>
  106. <constraint firstItem="j2n-WV-y9L" firstAttribute="trailing" relation="greaterThanOrEqual" secondItem="z2t-CO-48M" secondAttribute="trailing" constant="20" id="8jD-tF-gTK"/>
  107. <constraint firstItem="cgR-Wk-NQr" firstAttribute="centerY" secondItem="mGr-dd-c4r" secondAttribute="centerY" id="9xE-KH-OIN"/>
  108. <constraint firstItem="6Gl-5w-SXW" firstAttribute="leading" secondItem="gGe-DV-etn" secondAttribute="trailing" constant="20" id="GSW-ov-hBX"/>
  109. <constraint firstItem="zIY-Ho-SNj" firstAttribute="leading" secondItem="j28-du-bFd" secondAttribute="leading" id="HmV-uz-Xuf"/>
  110. <constraint firstItem="PRk-Ka-jS0" firstAttribute="top" secondItem="G7K-ET-ViD" secondAttribute="top" id="KV3-yY-Wg6"/>
  111. <constraint firstItem="PRk-Ka-jS0" firstAttribute="leading" secondItem="G7K-ET-ViD" secondAttribute="trailing" constant="24" id="QLn-1y-I6u"/>
  112. <constraint firstItem="j28-du-bFd" firstAttribute="top" secondItem="zIY-Ho-SNj" secondAttribute="bottom" constant="20" id="RVa-FV-loq"/>
  113. <constraint firstItem="PRk-Ka-jS0" firstAttribute="bottom" secondItem="G7K-ET-ViD" secondAttribute="bottom" id="aRe-X1-y7i"/>
  114. <constraint firstItem="mGr-dd-c4r" firstAttribute="leading" secondItem="j2n-WV-y9L" secondAttribute="leading" constant="24" id="aUg-jz-E4l"/>
  115. <constraint firstItem="gOI-tN-7Fh" firstAttribute="centerY" secondItem="j28-du-bFd" secondAttribute="centerY" id="cIa-HA-X5q"/>
  116. <constraint firstItem="G7K-ET-ViD" firstAttribute="leading" secondItem="j2n-WV-y9L" secondAttribute="leading" constant="24" id="fMj-BF-B9w"/>
  117. <constraint firstItem="j2n-WV-y9L" firstAttribute="trailing" secondItem="PRk-Ka-jS0" secondAttribute="trailing" constant="24" id="gn5-Dq-cBI"/>
  118. <constraint firstItem="j2n-WV-y9L" firstAttribute="trailing" secondItem="cgR-Wk-NQr" secondAttribute="trailing" constant="24" id="hQT-d0-UO8"/>
  119. <constraint firstItem="j2n-WV-y9L" firstAttribute="trailing" secondItem="jKb-jW-Rds" secondAttribute="trailing" constant="20" id="iSh-ii-5V7"/>
  120. <constraint firstItem="z2t-CO-48M" firstAttribute="leading" secondItem="zIY-Ho-SNj" secondAttribute="trailing" constant="20" id="jda-JG-ryM"/>
  121. <constraint firstItem="G7K-ET-ViD" firstAttribute="top" secondItem="j2n-WV-y9L" secondAttribute="top" id="kwA-bE-daq"/>
  122. <constraint firstItem="jKb-jW-Rds" firstAttribute="leading" secondItem="gOI-tN-7Fh" secondAttribute="trailing" constant="15" id="sGw-T2-LQO"/>
  123. <constraint firstItem="zIY-Ho-SNj" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="6Gl-5w-SXW" secondAttribute="trailing" constant="20" id="t5O-Yw-eva"/>
  124. <constraint firstItem="zIY-Ho-SNj" firstAttribute="leading" secondItem="j2n-WV-y9L" secondAttribute="leading" constant="240" id="u1d-JP-AUm"/>
  125. <constraint firstItem="6Gl-5w-SXW" firstAttribute="centerY" secondItem="gGe-DV-etn" secondAttribute="centerY" id="uD0-dH-GtW"/>
  126. <constraint firstItem="gOI-tN-7Fh" firstAttribute="leading" secondItem="j28-du-bFd" secondAttribute="trailing" constant="15" id="wUj-99-2IP"/>
  127. <constraint firstItem="z2t-CO-48M" firstAttribute="centerY" secondItem="zIY-Ho-SNj" secondAttribute="centerY" id="yMs-sK-Llu"/>
  128. </constraints>
  129. </view>
  130. <value key="contentSizeForViewInPopover" type="size" width="480" height="320"/>
  131. <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
  132. <size key="freeformSize" width="480" height="320"/>
  133. <connections>
  134. <outlet property="descriptionLabel" destination="PRk-Ka-jS0" id="YwR-We-n0U"/>
  135. <outlet property="imagebtn" destination="G7K-ET-ViD" id="xjy-Hz-MCI"/>
  136. <outlet property="mpackLabel" destination="z2t-CO-48M" id="DMk-ZO-xt9"/>
  137. <outlet property="priceLabel" destination="6Gl-5w-SXW" id="4ce-5A-rx5"/>
  138. <outlet property="qtyEdit" destination="gOI-tN-7Fh" id="iOb-AJ-xr0"/>
  139. <outlet property="qtystepper" destination="jKb-jW-Rds" id="gTc-Er-Thz"/>
  140. </connections>
  141. </viewController>
  142. <placeholder placeholderIdentifier="IBFirstResponder" id="Ief-a0-LHa" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  143. </objects>
  144. <point key="canvasLocation" x="93" y="107"/>
  145. </scene>
  146. <!--Confirm Order Information-->
  147. <scene sceneID="BF2-87-Ewe">
  148. <objects>
  149. <viewController storyboardIdentifier="StockViewController" title="Confirm Order Information" modalPresentationStyle="formSheet" useStoryboardIdentifierAsRestorationIdentifier="YES" id="bEl-nR-52q" customClass="StockViewController" sceneMemberID="viewController">
  150. <view key="view" contentMode="scaleToFill" id="y1k-XP-C08">
  151. <rect key="frame" x="0.0" y="0.0" width="566" height="601"/>
  152. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  153. <subviews>
  154. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="28" estimatedSectionHeaderHeight="-1" sectionFooterHeight="28" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="sPq-7c-wJs">
  155. <rect key="frame" x="10" y="50.5" width="546" height="500.5"/>
  156. <prototypes>
  157. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" restorationIdentifier="StockTableViewCell" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="StockTableViewCell" id="cCT-oh-Vaw" customClass="StockTableViewCell">
  158. <rect key="frame" x="0.0" y="50.5" width="546" height="52"/>
  159. <autoresizingMask key="autoresizingMask"/>
  160. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="cCT-oh-Vaw" id="H4K-HT-ycL">
  161. <rect key="frame" x="0.0" y="0.0" width="546" height="52"/>
  162. <autoresizingMask key="autoresizingMask"/>
  163. <subviews>
  164. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="MODEL" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Ztx-qv-ZYJ">
  165. <rect key="frame" x="16" y="16" width="232" height="20.5"/>
  166. <constraints>
  167. <constraint firstAttribute="width" relation="greaterThanOrEqual" constant="80" id="7MF-qK-BeV"/>
  168. </constraints>
  169. <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
  170. <nil key="textColor"/>
  171. <nil key="highlightedColor"/>
  172. </label>
  173. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ETD" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Uak-UG-HYK">
  174. <rect key="frame" x="256" y="16.5" width="96" height="19.5"/>
  175. <constraints>
  176. <constraint firstAttribute="width" constant="96" id="CXF-TE-lvU"/>
  177. </constraints>
  178. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  179. <nil key="textColor"/>
  180. <nil key="highlightedColor"/>
  181. </label>
  182. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="QTY" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="e7Z-1N-Xb1">
  183. <rect key="frame" x="360" y="16.5" width="42" height="19.5"/>
  184. <constraints>
  185. <constraint firstAttribute="width" constant="42" id="1Nc-3Q-pnz"/>
  186. </constraints>
  187. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  188. <nil key="textColor"/>
  189. <nil key="highlightedColor"/>
  190. </label>
  191. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="bzB-Zs-Ggl">
  192. <rect key="frame" x="410" y="9" width="120" height="34.5"/>
  193. <constraints>
  194. <constraint firstAttribute="width" constant="120" id="XtK-g7-iX0"/>
  195. </constraints>
  196. <state key="normal" title="Button"/>
  197. <buttonConfiguration key="configuration" style="plain" title="Move to BO"/>
  198. <connections>
  199. <action selector="onMovebackorder:" destination="bEl-nR-52q" eventType="touchUpInside" id="s7D-GE-kiB"/>
  200. </connections>
  201. </button>
  202. </subviews>
  203. <constraints>
  204. <constraint firstItem="e7Z-1N-Xb1" firstAttribute="centerY" secondItem="Ztx-qv-ZYJ" secondAttribute="centerY" id="9Ew-HK-a5F"/>
  205. <constraint firstItem="bzB-Zs-Ggl" firstAttribute="centerY" secondItem="H4K-HT-ycL" secondAttribute="centerY" id="H8m-7W-w0t"/>
  206. <constraint firstItem="Uak-UG-HYK" firstAttribute="leading" secondItem="Ztx-qv-ZYJ" secondAttribute="trailing" constant="8" id="JAe-1c-N6I"/>
  207. <constraint firstItem="e7Z-1N-Xb1" firstAttribute="leading" secondItem="Uak-UG-HYK" secondAttribute="trailing" constant="8" id="N2m-HZ-wXS"/>
  208. <constraint firstItem="bzB-Zs-Ggl" firstAttribute="centerY" secondItem="Ztx-qv-ZYJ" secondAttribute="centerY" id="OuD-xo-X4A"/>
  209. <constraint firstItem="Uak-UG-HYK" firstAttribute="centerY" secondItem="Ztx-qv-ZYJ" secondAttribute="centerY" id="PMY-Nu-ax9"/>
  210. <constraint firstItem="Ztx-qv-ZYJ" firstAttribute="leading" secondItem="H4K-HT-ycL" secondAttribute="leadingMargin" id="QGs-9J-FlB"/>
  211. <constraint firstAttribute="trailing" secondItem="bzB-Zs-Ggl" secondAttribute="trailing" constant="16" id="RyW-HX-rNp"/>
  212. <constraint firstItem="bzB-Zs-Ggl" firstAttribute="leading" secondItem="e7Z-1N-Xb1" secondAttribute="trailing" constant="8" id="czp-tt-FuT"/>
  213. </constraints>
  214. </tableViewCellContentView>
  215. <connections>
  216. <outlet property="btnMove" destination="bzB-Zs-Ggl" id="iQ2-Mm-6xj"/>
  217. <outlet property="labelETD" destination="Uak-UG-HYK" id="6To-9p-Uqk"/>
  218. <outlet property="labelModel" destination="Ztx-qv-ZYJ" id="pjH-Lz-bi2"/>
  219. <outlet property="labelQTY" destination="e7Z-1N-Xb1" id="dFu-1b-oKY"/>
  220. </connections>
  221. </tableViewCell>
  222. </prototypes>
  223. <connections>
  224. <outlet property="dataSource" destination="bEl-nR-52q" id="7i0-8s-Ef7"/>
  225. <outlet property="delegate" destination="bEl-nR-52q" id="Ig1-VX-cSe"/>
  226. </connections>
  227. </tableView>
  228. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="mWZ-UV-2uq">
  229. <rect key="frame" x="409" y="555.5" width="78" height="34.5"/>
  230. <state key="normal" title="Button"/>
  231. <buttonConfiguration key="configuration" style="plain" title="Submit"/>
  232. <connections>
  233. <action selector="onSubmit:" destination="bEl-nR-52q" eventType="touchUpInside" id="Sto-pE-f6o"/>
  234. </connections>
  235. </button>
  236. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="MODEL" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="sCj-Br-UXR">
  237. <rect key="frame" x="26" y="30" width="226" height="20.5"/>
  238. <constraints>
  239. <constraint firstAttribute="width" relation="greaterThanOrEqual" constant="80" id="7Xe-aX-TLB"/>
  240. </constraints>
  241. <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
  242. <nil key="textColor"/>
  243. <nil key="highlightedColor"/>
  244. </label>
  245. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ETD" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="grH-Ll-jqG">
  246. <rect key="frame" x="260" y="30" width="96" height="20.5"/>
  247. <constraints>
  248. <constraint firstAttribute="width" relation="greaterThanOrEqual" constant="96" id="X08-UY-RPk"/>
  249. <constraint firstAttribute="width" constant="96" id="vxm-nu-MCO"/>
  250. </constraints>
  251. <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
  252. <nil key="textColor"/>
  253. <nil key="highlightedColor"/>
  254. </label>
  255. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="QTY" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="qvG-pb-38K">
  256. <rect key="frame" x="364" y="30" width="42" height="20.5"/>
  257. <constraints>
  258. <constraint firstAttribute="width" relation="greaterThanOrEqual" constant="42" id="44c-SH-kha"/>
  259. <constraint firstAttribute="width" constant="42" id="Pk7-Jf-lcp"/>
  260. </constraints>
  261. <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
  262. <nil key="textColor"/>
  263. <nil key="highlightedColor"/>
  264. </label>
  265. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="GSH-xU-ZC2">
  266. <rect key="frame" x="79" y="555.5" width="76.5" height="34.5"/>
  267. <state key="normal" title="Button"/>
  268. <buttonConfiguration key="configuration" style="plain" title="Cancel"/>
  269. <connections>
  270. <action selector="onCancel:" destination="bEl-nR-52q" eventType="touchUpInside" id="Nep-Bx-40Y"/>
  271. </connections>
  272. </button>
  273. </subviews>
  274. <viewLayoutGuide key="safeArea" id="Ecz-Mj-Fo1"/>
  275. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  276. <constraints>
  277. <constraint firstItem="Ecz-Mj-Fo1" firstAttribute="bottom" secondItem="mWZ-UV-2uq" secondAttribute="bottom" constant="11" id="0Bx-r1-tWP"/>
  278. <constraint firstItem="qvG-pb-38K" firstAttribute="centerY" secondItem="sCj-Br-UXR" secondAttribute="centerY" id="3MW-AO-xnD"/>
  279. <constraint firstItem="grH-Ll-jqG" firstAttribute="leading" secondItem="sCj-Br-UXR" secondAttribute="trailing" constant="8" id="4LU-vF-cLU"/>
  280. <constraint firstItem="Ecz-Mj-Fo1" firstAttribute="bottom" secondItem="GSH-xU-ZC2" secondAttribute="bottom" constant="11" id="9RE-6A-fEs"/>
  281. <constraint firstItem="Ecz-Mj-Fo1" firstAttribute="trailing" secondItem="qvG-pb-38K" secondAttribute="trailing" constant="160" id="FFg-UJ-ykr"/>
  282. <constraint firstItem="sPq-7c-wJs" firstAttribute="leading" secondItem="Ecz-Mj-Fo1" secondAttribute="leading" constant="10" id="KSX-1U-dOP"/>
  283. <constraint firstItem="sCj-Br-UXR" firstAttribute="leading" secondItem="Ecz-Mj-Fo1" secondAttribute="leading" constant="26" id="NHY-bC-Z4F"/>
  284. <constraint firstItem="Ecz-Mj-Fo1" firstAttribute="trailing" secondItem="mWZ-UV-2uq" secondAttribute="trailing" constant="79" id="OQ1-mK-4Ok"/>
  285. <constraint firstItem="sPq-7c-wJs" firstAttribute="top" secondItem="sCj-Br-UXR" secondAttribute="bottom" id="RaJ-QC-85Q"/>
  286. <constraint firstItem="grH-Ll-jqG" firstAttribute="centerY" secondItem="sCj-Br-UXR" secondAttribute="centerY" id="SDu-WD-weN"/>
  287. <constraint firstItem="qvG-pb-38K" firstAttribute="leading" secondItem="grH-Ll-jqG" secondAttribute="trailing" constant="8" id="Vqg-24-M3L"/>
  288. <constraint firstItem="GSH-xU-ZC2" firstAttribute="leading" secondItem="Ecz-Mj-Fo1" secondAttribute="leading" constant="79" id="d8f-BY-CMF"/>
  289. <constraint firstItem="Ecz-Mj-Fo1" firstAttribute="trailing" secondItem="sPq-7c-wJs" secondAttribute="trailing" constant="10" id="ipE-3u-z1U"/>
  290. <constraint firstItem="sCj-Br-UXR" firstAttribute="top" secondItem="Ecz-Mj-Fo1" secondAttribute="top" constant="10" id="plf-xG-nMu"/>
  291. <constraint firstItem="Ecz-Mj-Fo1" firstAttribute="bottom" secondItem="sPq-7c-wJs" secondAttribute="bottom" constant="50" id="vyK-ij-CMW"/>
  292. </constraints>
  293. </view>
  294. <value key="contentSizeForViewInPopover" type="size" width="480" height="320"/>
  295. <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
  296. <size key="freeformSize" width="566" height="601"/>
  297. <connections>
  298. <outlet property="table" destination="sPq-7c-wJs" id="M4a-cO-4hV"/>
  299. </connections>
  300. </viewController>
  301. <placeholder placeholderIdentifier="IBFirstResponder" id="O43-8K-C9L" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  302. </objects>
  303. <point key="canvasLocation" x="-37.096774193548384" y="390.02647837599289"/>
  304. </scene>
  305. <!--Choose a discount rate-->
  306. <scene sceneID="MGa-qa-te4">
  307. <objects>
  308. <viewController storyboardIdentifier="ScanDiscountViewController" title="Choose a discount rate" useStoryboardIdentifierAsRestorationIdentifier="YES" id="OHW-L2-C58" customClass="ScanDiscountViewController" sceneMemberID="viewController">
  309. <view key="view" contentMode="scaleToFill" id="WFI-Em-MeJ">
  310. <rect key="frame" x="0.0" y="0.0" width="480" height="320"/>
  311. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  312. <subviews>
  313. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Discount can’t be combined with others." textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="duu-Y5-mBR">
  314. <rect key="frame" x="86" y="45" width="308" height="21"/>
  315. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  316. <nil key="textColor"/>
  317. <nil key="highlightedColor"/>
  318. </label>
  319. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Yd7-ed-ROM">
  320. <rect key="frame" x="313.5" y="225.5" width="76.5" height="34.5"/>
  321. <state key="normal" title="Button"/>
  322. <buttonConfiguration key="configuration" style="plain" title="Cancel"/>
  323. <connections>
  324. <action selector="onCancel:" destination="OHW-L2-C58" eventType="touchUpInside" id="TR8-xR-Q6m"/>
  325. </connections>
  326. </button>
  327. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="c2l-a1-1N7">
  328. <rect key="frame" x="90" y="225.5" width="80" height="34.5"/>
  329. <state key="normal" title="Button"/>
  330. <buttonConfiguration key="configuration" style="plain" title="Update"/>
  331. <connections>
  332. <action selector="onUpdate:" destination="OHW-L2-C58" eventType="touchUpInside" id="weC-Bt-Qkn"/>
  333. </connections>
  334. </button>
  335. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="rGb-d5-ylx">
  336. <rect key="frame" x="116" y="126" width="75" height="34.5"/>
  337. <constraints>
  338. <constraint firstAttribute="width" constant="75" id="EOy-tz-SaQ"/>
  339. </constraints>
  340. <color key="tintColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  341. <state key="normal" title="Button"/>
  342. <buttonConfiguration key="configuration" style="plain" title="3%"/>
  343. <connections>
  344. <action selector="on3:" destination="OHW-L2-C58" eventType="touchUpInside" id="LYD-rg-2Mj"/>
  345. </connections>
  346. </button>
  347. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="j4k-ge-lGR">
  348. <rect key="frame" x="30" y="126" width="75" height="34.5"/>
  349. <constraints>
  350. <constraint firstAttribute="width" constant="75" id="7yC-hg-CCg"/>
  351. <constraint firstAttribute="width" relation="greaterThanOrEqual" constant="75" id="shA-L7-Hr8"/>
  352. </constraints>
  353. <color key="tintColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  354. <state key="normal" title="Button"/>
  355. <buttonConfiguration key="configuration" style="plain" title="None"/>
  356. <connections>
  357. <action selector="onnone:" destination="OHW-L2-C58" eventType="touchUpInside" id="vkr-Ld-pFe"/>
  358. </connections>
  359. </button>
  360. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="XyX-ZJ-w5O">
  361. <rect key="frame" x="288" y="126" width="75" height="34.5"/>
  362. <constraints>
  363. <constraint firstAttribute="width" constant="75" id="rWX-pU-Bpc"/>
  364. </constraints>
  365. <color key="tintColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  366. <state key="normal" title="Button"/>
  367. <buttonConfiguration key="configuration" style="plain" title="8%"/>
  368. <connections>
  369. <action selector="on8:" destination="OHW-L2-C58" eventType="touchUpInside" id="WDA-z5-0Bx"/>
  370. </connections>
  371. </button>
  372. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="TM5-qF-w8m">
  373. <rect key="frame" x="375" y="126" width="75" height="34.5"/>
  374. <constraints>
  375. <constraint firstAttribute="width" constant="75" id="0JP-zW-FX3"/>
  376. </constraints>
  377. <color key="tintColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  378. <state key="normal" title="Button"/>
  379. <buttonConfiguration key="configuration" style="plain" title="10%"/>
  380. <connections>
  381. <action selector="on10:" destination="OHW-L2-C58" eventType="touchUpInside" id="Ahz-5e-Y6n"/>
  382. </connections>
  383. </button>
  384. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="C8q-nA-CQp">
  385. <rect key="frame" x="202" y="126" width="75" height="34.5"/>
  386. <constraints>
  387. <constraint firstAttribute="width" constant="75" id="Vbq-K9-ykh"/>
  388. </constraints>
  389. <color key="tintColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  390. <state key="normal" title="Button"/>
  391. <buttonConfiguration key="configuration" style="plain" title="5%"/>
  392. <connections>
  393. <action selector="on5:" destination="OHW-L2-C58" eventType="touchUpInside" id="4So-ka-U6z"/>
  394. </connections>
  395. </button>
  396. </subviews>
  397. <viewLayoutGuide key="safeArea" id="jcg-Mc-NdC"/>
  398. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  399. <constraints>
  400. <constraint firstItem="XyX-ZJ-w5O" firstAttribute="width" secondItem="j4k-ge-lGR" secondAttribute="width" id="23P-rg-3ir"/>
  401. <constraint firstItem="rGb-d5-ylx" firstAttribute="top" secondItem="duu-Y5-mBR" secondAttribute="bottom" constant="60" id="2ZE-eE-Bva"/>
  402. <constraint firstItem="XyX-ZJ-w5O" firstAttribute="leading" secondItem="C8q-nA-CQp" secondAttribute="trailing" constant="11" id="7uY-g4-bOK"/>
  403. <constraint firstItem="TM5-qF-w8m" firstAttribute="width" secondItem="j4k-ge-lGR" secondAttribute="width" id="K1i-4R-QlE"/>
  404. <constraint firstItem="Yd7-ed-ROM" firstAttribute="centerY" secondItem="c2l-a1-1N7" secondAttribute="centerY" id="M0h-dZ-Krs"/>
  405. <constraint firstItem="C8q-nA-CQp" firstAttribute="leading" secondItem="rGb-d5-ylx" secondAttribute="trailing" constant="11" id="OoD-kO-8ua"/>
  406. <constraint firstItem="C8q-nA-CQp" firstAttribute="centerY" secondItem="j4k-ge-lGR" secondAttribute="centerY" id="PAp-MT-OuU"/>
  407. <constraint firstItem="jcg-Mc-NdC" firstAttribute="bottom" secondItem="c2l-a1-1N7" secondAttribute="bottom" constant="60" id="PUW-RR-bBg"/>
  408. <constraint firstItem="duu-Y5-mBR" firstAttribute="top" secondItem="WFI-Em-MeJ" secondAttribute="top" constant="45" id="UcA-sh-ZlQ"/>
  409. <constraint firstItem="rGb-d5-ylx" firstAttribute="leading" secondItem="j4k-ge-lGR" secondAttribute="trailing" constant="11" id="WAO-6y-5ZS"/>
  410. <constraint firstItem="TM5-qF-w8m" firstAttribute="centerY" secondItem="j4k-ge-lGR" secondAttribute="centerY" id="YkY-ry-pd0"/>
  411. <constraint firstItem="jcg-Mc-NdC" firstAttribute="trailing" secondItem="Yd7-ed-ROM" secondAttribute="trailing" constant="90" id="ecW-xW-YfS"/>
  412. <constraint firstItem="c2l-a1-1N7" firstAttribute="leading" secondItem="jcg-Mc-NdC" secondAttribute="leading" constant="90" id="epF-ls-BLB"/>
  413. <constraint firstItem="rGb-d5-ylx" firstAttribute="centerY" secondItem="j4k-ge-lGR" secondAttribute="centerY" id="fYs-3Y-Ou9"/>
  414. <constraint firstItem="jcg-Mc-NdC" firstAttribute="trailing" secondItem="TM5-qF-w8m" secondAttribute="trailing" constant="30" id="g90-gR-zbZ"/>
  415. <constraint firstItem="rGb-d5-ylx" firstAttribute="width" secondItem="j4k-ge-lGR" secondAttribute="width" id="inh-LO-vrm"/>
  416. <constraint firstItem="C8q-nA-CQp" firstAttribute="width" secondItem="j4k-ge-lGR" secondAttribute="width" id="nA3-ez-FOO"/>
  417. <constraint firstItem="XyX-ZJ-w5O" firstAttribute="centerY" secondItem="j4k-ge-lGR" secondAttribute="centerY" id="s2J-Ra-NlF"/>
  418. <constraint firstItem="j4k-ge-lGR" firstAttribute="leading" secondItem="jcg-Mc-NdC" secondAttribute="leading" constant="30" id="wpy-Wq-lid"/>
  419. <constraint firstItem="TM5-qF-w8m" firstAttribute="leading" secondItem="XyX-ZJ-w5O" secondAttribute="trailing" priority="750" constant="11" id="ywr-th-P1g"/>
  420. <constraint firstItem="duu-Y5-mBR" firstAttribute="centerX" secondItem="jcg-Mc-NdC" secondAttribute="centerX" id="zZ0-pq-ceO"/>
  421. </constraints>
  422. </view>
  423. <value key="contentSizeForViewInPopover" type="size" width="480" height="320"/>
  424. <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
  425. <size key="freeformSize" width="480" height="320"/>
  426. <connections>
  427. <outlet property="btn10" destination="TM5-qF-w8m" id="ODw-b1-8hM"/>
  428. <outlet property="btn3" destination="rGb-d5-ylx" id="4l4-tM-zGp"/>
  429. <outlet property="btn5" destination="C8q-nA-CQp" id="orJ-Cu-9QK"/>
  430. <outlet property="btn8" destination="XyX-ZJ-w5O" id="rmC-ak-1lY"/>
  431. <outlet property="btnnone" destination="j4k-ge-lGR" id="FeO-y1-Jkz"/>
  432. </connections>
  433. </viewController>
  434. <placeholder placeholderIdentifier="IBFirstResponder" id="VNW-8q-78U" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  435. </objects>
  436. <point key="canvasLocation" x="635" y="96"/>
  437. </scene>
  438. <!--Scan History View Controller-->
  439. <scene sceneID="AyY-er-cCO">
  440. <objects>
  441. <viewController storyboardIdentifier="ScanHistoryViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="15s-Fk-XvT" customClass="ScanHistoryViewController" sceneMemberID="viewController">
  442. <view key="view" contentMode="scaleToFill" id="mJj-rg-l2T">
  443. <rect key="frame" x="0.0" y="0.0" width="810" height="1080"/>
  444. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  445. <subviews>
  446. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="aHE-X4-VOt">
  447. <rect key="frame" x="0.0" y="67" width="810" height="998"/>
  448. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  449. <prototypes>
  450. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" restorationIdentifier="ScanListCell" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ScanListCell" rowHeight="166" id="YfV-Cl-5Tu" customClass="ScanListCell">
  451. <rect key="frame" x="0.0" y="50.5" width="810" height="166"/>
  452. <autoresizingMask key="autoresizingMask"/>
  453. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="YfV-Cl-5Tu" translatesAutoresizingMaskIntoConstraints="NO" id="exp-Hy-y0g">
  454. <rect key="frame" x="0.0" y="0.0" width="810" height="166"/>
  455. <subviews>
  456. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="253" verticalHuggingPriority="251" text="Model" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="w8x-0O-3TJ" userLabel="item label">
  457. <rect key="frame" x="16" y="13" width="50.5" height="20.5"/>
  458. <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
  459. <nil key="textColor"/>
  460. <nil key="highlightedColor"/>
  461. </label>
  462. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="252" text="42.8 x 68.3 x 30.5H" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="qAW-4E-Lac" userLabel="item label">
  463. <rect key="frame" x="86.5" y="14.5" width="455.5" height="18"/>
  464. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  465. <nil key="textColor"/>
  466. <nil key="highlightedColor"/>
  467. </label>
  468. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="252" verticalHuggingPriority="251" text="Stock:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="1X6-wZ-4ID">
  469. <rect key="frame" x="572" y="13" width="48.5" height="21"/>
  470. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  471. <nil key="textColor"/>
  472. <nil key="highlightedColor"/>
  473. </label>
  474. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="qoy-vW-xRS">
  475. <rect key="frame" x="686.5" y="3" width="108.5" height="41"/>
  476. <constraints>
  477. <constraint firstAttribute="width" constant="108.5" id="WcD-3E-U81"/>
  478. <constraint firstAttribute="height" constant="41" id="qRl-e7-gJa"/>
  479. </constraints>
  480. <state key="normal" title="Button"/>
  481. <buttonConfiguration key="configuration" style="plain" title="Add to cart"/>
  482. <connections>
  483. <action selector="onAddToCart:" destination="YfV-Cl-5Tu" eventType="touchUpInside" id="Jm6-n3-clg"/>
  484. </connections>
  485. </button>
  486. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="252" verticalHuggingPriority="251" textAlignment="natural" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ZgQ-DK-Xnp" userLabel="description">
  487. <rect key="frame" x="16" y="48" width="778" height="52"/>
  488. <string key="text">line 1
  489. line 2
  490. line 3</string>
  491. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  492. <nil key="textColor"/>
  493. <nil key="highlightedColor"/>
  494. </label>
  495. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="lDs-CT-R5C" userLabel="bottom line">
  496. <rect key="frame" x="0.0" y="164" width="810" height="2"/>
  497. <color key="backgroundColor" systemColor="systemGrayColor"/>
  498. <constraints>
  499. <constraint firstAttribute="height" constant="2" id="VUG-wE-NsD"/>
  500. </constraints>
  501. </view>
  502. <scrollView contentMode="scaleToFill" showsVerticalScrollIndicator="NO" contentInsetAdjustmentBehavior="never" translatesAutoresizingMaskIntoConstraints="NO" id="sv2-pr-ice">
  503. <rect key="frame" x="16" y="108" width="778" height="48"/>
  504. </scrollView>
  505. <textField opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="248" contentHorizontalAlignment="center" contentVerticalAlignment="center" text="1" borderStyle="roundedRect" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="s5f-0V-NUU">
  506. <rect key="frame" x="628.5" y="6.5" width="50" height="34"/>
  507. <constraints>
  508. <constraint firstAttribute="width" constant="50" id="BZL-bw-1Fn"/>
  509. </constraints>
  510. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  511. <textInputTraits key="textInputTraits" keyboardType="numbersAndPunctuation"/>
  512. </textField>
  513. </subviews>
  514. <constraints>
  515. <constraint firstAttribute="trailing" secondItem="qoy-vW-xRS" secondAttribute="trailing" constant="15" id="0N9-nj-8aK"/>
  516. <constraint firstAttribute="trailing" secondItem="lDs-CT-R5C" secondAttribute="trailing" id="4hT-KB-sw8"/>
  517. <constraint firstItem="ZgQ-DK-Xnp" firstAttribute="top" secondItem="qoy-vW-xRS" secondAttribute="bottom" constant="4" id="7kG-TP-8Np"/>
  518. <constraint firstItem="lDs-CT-R5C" firstAttribute="leading" secondItem="exp-Hy-y0g" secondAttribute="leading" id="8Fq-d0-Sfb"/>
  519. <constraint firstAttribute="bottom" secondItem="lDs-CT-R5C" secondAttribute="bottom" id="9Wa-30-D0m"/>
  520. <constraint firstItem="w8x-0O-3TJ" firstAttribute="leading" secondItem="exp-Hy-y0g" secondAttribute="leading" constant="16" id="B28-7a-ruA"/>
  521. <constraint firstItem="ZgQ-DK-Xnp" firstAttribute="leading" secondItem="w8x-0O-3TJ" secondAttribute="leading" id="B2X-Bf-Ii7"/>
  522. <constraint firstItem="s5f-0V-NUU" firstAttribute="centerY" secondItem="w8x-0O-3TJ" secondAttribute="centerY" id="E5S-IU-fZ8"/>
  523. <constraint firstItem="1X6-wZ-4ID" firstAttribute="centerY" secondItem="qAW-4E-Lac" secondAttribute="centerY" id="Tan-HD-4bf"/>
  524. <constraint firstItem="qoy-vW-xRS" firstAttribute="centerY" secondItem="w8x-0O-3TJ" secondAttribute="centerY" id="aRL-GM-1hN"/>
  525. <constraint firstItem="s5f-0V-NUU" firstAttribute="leading" secondItem="1X6-wZ-4ID" secondAttribute="trailing" constant="8" id="btZ-9g-psh"/>
  526. <constraint firstItem="qAW-4E-Lac" firstAttribute="centerY" secondItem="w8x-0O-3TJ" secondAttribute="centerY" id="i1K-m7-fuH"/>
  527. <constraint firstItem="sv2-pr-ice" firstAttribute="top" secondItem="ZgQ-DK-Xnp" secondAttribute="bottom" constant="8" id="nsv2-c1-top"/>
  528. <constraint firstItem="sv2-pr-ice" firstAttribute="leading" secondItem="exp-Hy-y0g" secondAttribute="leading" constant="16" id="nsv2-c2-lft"/>
  529. <constraint firstAttribute="trailing" secondItem="sv2-pr-ice" secondAttribute="trailing" constant="16" id="nsv2-c3-trl"/>
  530. <constraint firstItem="sv2-pr-ice" firstAttribute="height" constant="48" id="nsv2-c4-hgt"/>
  531. <constraint firstItem="lDs-CT-R5C" firstAttribute="top" secondItem="sv2-pr-ice" secondAttribute="bottom" constant="8" id="nsv2-c5-btm"/>
  532. <constraint firstItem="w8x-0O-3TJ" firstAttribute="top" secondItem="exp-Hy-y0g" secondAttribute="top" constant="13" id="pLi-gE-Jft"/>
  533. <constraint firstAttribute="trailing" secondItem="ZgQ-DK-Xnp" secondAttribute="trailing" constant="16" id="qd6-zU-HDS"/>
  534. <constraint firstItem="qAW-4E-Lac" firstAttribute="leading" secondItem="w8x-0O-3TJ" secondAttribute="trailing" constant="20" id="sro-cg-Ruk"/>
  535. <constraint firstItem="qoy-vW-xRS" firstAttribute="leading" secondItem="s5f-0V-NUU" secondAttribute="trailing" constant="8" id="vVq-Td-CNJ"/>
  536. <constraint firstItem="1X6-wZ-4ID" firstAttribute="leading" secondItem="qAW-4E-Lac" secondAttribute="trailing" constant="30" id="yF5-kX-CKx"/>
  537. </constraints>
  538. </tableViewCellContentView>
  539. <constraints>
  540. <constraint firstItem="exp-Hy-y0g" firstAttribute="leading" secondItem="YfV-Cl-5Tu" secondAttribute="leading" id="hvc-c1-lft"/>
  541. <constraint firstItem="exp-Hy-y0g" firstAttribute="top" secondItem="YfV-Cl-5Tu" secondAttribute="top" id="hvc-c2-top"/>
  542. <constraint firstAttribute="trailing" secondItem="exp-Hy-y0g" secondAttribute="trailing" id="hvc-c3-trl"/>
  543. <constraint firstAttribute="bottom" secondItem="exp-Hy-y0g" secondAttribute="bottom" id="hvc-c4-btm"/>
  544. </constraints>
  545. <connections>
  546. <outlet property="labelDescription" destination="ZgQ-DK-Xnp" id="Nyo-2X-HQg"/>
  547. <outlet property="labelDimension" destination="qAW-4E-Lac" id="JH2-Tz-fXE"/>
  548. <outlet property="labelModel" destination="w8x-0O-3TJ" id="jAJ-U7-sEQ"/>
  549. <outlet property="labelStock" destination="1X6-wZ-4ID" id="LH0-U1-Xt1"/>
  550. <outlet property="priceScrollView" destination="sv2-pr-ice" id="psv2-01-out"/>
  551. <outlet property="qtyField" destination="s5f-0V-NUU" id="ndo-w6-sMO"/>
  552. </connections>
  553. </tableViewCell>
  554. </prototypes>
  555. <connections>
  556. <outlet property="dataSource" destination="15s-Fk-XvT" id="XZz-CX-Iba"/>
  557. <outlet property="delegate" destination="15s-Fk-XvT" id="Jhs-s8-iXH"/>
  558. </connections>
  559. </tableView>
  560. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="DoD-YM-ccb">
  561. <rect key="frame" x="479" y="16" width="146" height="35"/>
  562. <state key="normal" title="Button"/>
  563. <buttonConfiguration key="configuration" style="plain" title="Sync Availability"/>
  564. <connections>
  565. <action selector="onUpdateStock:" destination="p2v-UD-wPL" eventType="touchUpInside" id="dPW-aT-XeT"/>
  566. <action selector="onUpdateStock:" destination="15s-Fk-XvT" eventType="touchUpInside" id="htz-4h-0Hb"/>
  567. </connections>
  568. </button>
  569. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Last Update Unknown" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="i5z-Uy-CJa">
  570. <rect key="frame" x="641" y="23" width="169" height="21"/>
  571. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  572. <nil key="textColor"/>
  573. <nil key="highlightedColor"/>
  574. </label>
  575. </subviews>
  576. <viewLayoutGuide key="safeArea" id="yCO-Fp-1MS"/>
  577. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  578. <constraints>
  579. <constraint firstItem="aHE-X4-VOt" firstAttribute="leading" secondItem="yCO-Fp-1MS" secondAttribute="leading" id="Pp5-iB-lwc"/>
  580. <constraint firstItem="yCO-Fp-1MS" firstAttribute="trailing" secondItem="aHE-X4-VOt" secondAttribute="trailing" id="aFz-Ah-AWz"/>
  581. <constraint firstItem="yCO-Fp-1MS" firstAttribute="bottom" secondItem="aHE-X4-VOt" secondAttribute="bottom" constant="15" id="c3n-4O-S2T"/>
  582. <constraint firstItem="DoD-YM-ccb" firstAttribute="top" secondItem="mJj-rg-l2T" secondAttribute="top" constant="16" id="geP-Xg-Xx5"/>
  583. <constraint firstItem="i5z-Uy-CJa" firstAttribute="centerY" secondItem="DoD-YM-ccb" secondAttribute="centerY" id="gvY-Zz-a4d"/>
  584. <constraint firstItem="aHE-X4-VOt" firstAttribute="top" secondItem="DoD-YM-ccb" secondAttribute="bottom" constant="16" id="rzB-U7-7cs"/>
  585. <constraint firstItem="i5z-Uy-CJa" firstAttribute="trailing" secondItem="aHE-X4-VOt" secondAttribute="trailing" id="tAL-iT-IRB"/>
  586. <constraint firstItem="i5z-Uy-CJa" firstAttribute="leading" secondItem="DoD-YM-ccb" secondAttribute="trailing" constant="16" id="vJ3-QB-Fl5"/>
  587. </constraints>
  588. </view>
  589. <connections>
  590. <outlet property="labelStock" destination="i5z-Uy-CJa" id="jKT-dy-pWY"/>
  591. <outlet property="tableview" destination="aHE-X4-VOt" id="MNw-1b-ccZ"/>
  592. </connections>
  593. </viewController>
  594. <placeholder placeholderIdentifier="IBFirstResponder" id="zJm-0S-zhX" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  595. </objects>
  596. <point key="canvasLocation" x="-2201.4814814814813" y="95.555555555555557"/>
  597. </scene>
  598. <!--Scan Order Model List View Controller-->
  599. <scene sceneID="yPs-Ny-frH">
  600. <objects>
  601. <viewController storyboardIdentifier="ScanOrderModelListViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="p2v-UD-wPL" customClass="ScanOrderModelListViewController" sceneMemberID="viewController">
  602. <view key="view" contentMode="scaleToFill" id="IpQ-Py-Irh">
  603. <rect key="frame" x="0.0" y="0.0" width="810" height="1080"/>
  604. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  605. <subviews>
  606. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="N1G-LR-2o5">
  607. <rect key="frame" x="661.5" y="1005.5" width="108.5" height="34.5"/>
  608. <state key="normal" title="Button"/>
  609. <buttonConfiguration key="configuration" style="plain" title="Add to cart"/>
  610. <connections>
  611. <action selector="onAddToCart:" destination="p2v-UD-wPL" eventType="touchUpInside" id="uj2-9t-r7x"/>
  612. </connections>
  613. </button>
  614. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="zM0-LF-q8I">
  615. <rect key="frame" x="522.5" y="1005.5" width="99" height="34.5"/>
  616. <state key="normal" title="Button"/>
  617. <buttonConfiguration key="configuration" style="plain" title="Scan next"/>
  618. <connections>
  619. <action selector="onScanNext:" destination="p2v-UD-wPL" eventType="touchUpInside" id="OMw-WQ-nsL"/>
  620. </connections>
  621. </button>
  622. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="wgc-2E-fLG">
  623. <rect key="frame" x="479" y="16" width="146" height="35"/>
  624. <state key="normal" title="Button"/>
  625. <buttonConfiguration key="configuration" style="plain" title="Sync Availability"/>
  626. <connections>
  627. <action selector="onUpdateStock:" destination="p2v-UD-wPL" eventType="touchUpInside" id="w5p-7S-GOT"/>
  628. </connections>
  629. </button>
  630. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Last Update Unknown" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="XSY-X8-3ee">
  631. <rect key="frame" x="641" y="23" width="169" height="21"/>
  632. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  633. <nil key="textColor"/>
  634. <nil key="highlightedColor"/>
  635. </label>
  636. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="bW9-lh-e8E">
  637. <rect key="frame" x="0.0" y="67" width="810" height="918.5"/>
  638. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  639. <prototypes>
  640. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" restorationIdentifier="ScanModelListCell" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ScanModelListCell" rowHeight="166" id="di6-XI-avZ" customClass="ScanModelListCell">
  641. <rect key="frame" x="0.0" y="50.5" width="810" height="166"/>
  642. <autoresizingMask key="autoresizingMask"/>
  643. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="di6-XI-avZ" id="Ajw-zF-nXf">
  644. <rect key="frame" x="0.0" y="0.0" width="810" height="166"/>
  645. <autoresizingMask key="autoresizingMask"/>
  646. <subviews>
  647. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="252" verticalHuggingPriority="251" text="Model" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Z2Y-LD-RFG" userLabel="item label">
  648. <rect key="frame" x="16" y="13" width="50.5" height="21"/>
  649. <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
  650. <nil key="textColor"/>
  651. <nil key="highlightedColor"/>
  652. </label>
  653. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="QTY:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="oVz-hr-vFh" userLabel="qty">
  654. <rect key="frame" x="591" y="13" width="37" height="21"/>
  655. <constraints>
  656. <constraint firstAttribute="width" constant="37" id="aVb-zQ-bwK"/>
  657. </constraints>
  658. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  659. <nil key="textColor"/>
  660. <nil key="highlightedColor"/>
  661. </label>
  662. <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" text="9999" borderStyle="roundedRect" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="gGf-Qb-Uc9">
  663. <rect key="frame" x="638" y="7.5" width="52" height="32"/>
  664. <constraints>
  665. <constraint firstAttribute="width" constant="52" id="fro-N7-6ZI"/>
  666. <constraint firstAttribute="height" constant="32" id="u5V-Kz-bd0"/>
  667. </constraints>
  668. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  669. <textInputTraits key="textInputTraits"/>
  670. </textField>
  671. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" verticalHuggingPriority="251" text="42.8 x 68.3 x 30.5H" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="2JG-Qa-LOy" userLabel="item label">
  672. <rect key="frame" x="86.5" y="14.5" width="396" height="18"/>
  673. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  674. <nil key="textColor"/>
  675. <nil key="highlightedColor"/>
  676. </label>
  677. <stepper opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" maximumValue="100" translatesAutoresizingMaskIntoConstraints="NO" id="Nnj-5b-sBF">
  678. <rect key="frame" x="700" y="7.5" width="94" height="32"/>
  679. <connections>
  680. <action selector="stepChange:" destination="p2v-UD-wPL" eventType="valueChanged" id="dWZ-hh-P9l"/>
  681. </connections>
  682. </stepper>
  683. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="249" verticalHuggingPriority="251" textAlignment="natural" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="DVA-Pi-NA3" userLabel="item label">
  684. <rect key="frame" x="16" y="43.5" width="778" height="56.5"/>
  685. <string key="text">line 1
  686. line 2
  687. line 3</string>
  688. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  689. <nil key="textColor"/>
  690. <nil key="highlightedColor"/>
  691. </label>
  692. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Stock:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="k8U-Ey-RSG">
  693. <rect key="frame" x="512.5" y="13" width="48.5" height="21"/>
  694. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  695. <nil key="textColor"/>
  696. <nil key="highlightedColor"/>
  697. </label>
  698. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Zys-QN-184" userLabel="bottom line">
  699. <rect key="frame" x="0.0" y="164" width="810" height="2"/>
  700. <color key="backgroundColor" systemColor="systemGrayColor"/>
  701. <constraints>
  702. <constraint firstAttribute="height" constant="2" id="Kir-lD-neX"/>
  703. </constraints>
  704. </view>
  705. <scrollView contentMode="scaleToFill" ambiguous="YES" showsVerticalScrollIndicator="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Sy5-2r-bc6">
  706. <rect key="frame" x="16" y="108" width="778" height="48"/>
  707. <constraints>
  708. <constraint firstAttribute="height" constant="48" id="5IJ-am-97c"/>
  709. </constraints>
  710. <viewLayoutGuide key="contentLayoutGuide" id="pwQ-UP-ctT"/>
  711. <viewLayoutGuide key="frameLayoutGuide" id="Tbe-yV-ueT"/>
  712. </scrollView>
  713. </subviews>
  714. <constraints>
  715. <constraint firstAttribute="trailing" secondItem="Zys-QN-184" secondAttribute="trailing" id="0WJ-x2-E30"/>
  716. <constraint firstItem="Z2Y-LD-RFG" firstAttribute="top" secondItem="Ajw-zF-nXf" secondAttribute="top" constant="13" id="1u2-sR-u0X"/>
  717. <constraint firstItem="oVz-hr-vFh" firstAttribute="centerY" secondItem="Z2Y-LD-RFG" secondAttribute="centerY" id="2Cc-48-asa"/>
  718. <constraint firstItem="DVA-Pi-NA3" firstAttribute="top" secondItem="gGf-Qb-Uc9" secondAttribute="bottom" constant="4" id="6ep-gf-jcg"/>
  719. <constraint firstItem="Zys-QN-184" firstAttribute="top" secondItem="Sy5-2r-bc6" secondAttribute="bottom" constant="8" id="9RY-MK-0Ai"/>
  720. <constraint firstItem="Zys-QN-184" firstAttribute="leading" secondItem="Ajw-zF-nXf" secondAttribute="leading" id="DR1-Dy-wrD"/>
  721. <constraint firstItem="Nnj-5b-sBF" firstAttribute="trailing" secondItem="Ajw-zF-nXf" secondAttribute="trailingMargin" id="HQH-Bw-1Rb"/>
  722. <constraint firstItem="2JG-Qa-LOy" firstAttribute="leading" secondItem="Z2Y-LD-RFG" secondAttribute="trailing" constant="20" id="Htb-lD-6o2"/>
  723. <constraint firstItem="Sy5-2r-bc6" firstAttribute="leading" secondItem="Ajw-zF-nXf" secondAttribute="leading" constant="16" id="KLo-jb-e66"/>
  724. <constraint firstItem="gGf-Qb-Uc9" firstAttribute="leading" secondItem="oVz-hr-vFh" secondAttribute="trailing" constant="10" id="Ons-s6-Tr6"/>
  725. <constraint firstItem="Sy5-2r-bc6" firstAttribute="top" secondItem="DVA-Pi-NA3" secondAttribute="bottom" constant="8" id="Q8S-UT-oEw"/>
  726. <constraint firstItem="oVz-hr-vFh" firstAttribute="leading" secondItem="k8U-Ey-RSG" secondAttribute="trailing" constant="30" id="SDY-5j-jAi"/>
  727. <constraint firstItem="Nnj-5b-sBF" firstAttribute="trailing" secondItem="DVA-Pi-NA3" secondAttribute="trailing" id="T6f-bO-s8P"/>
  728. <constraint firstItem="k8U-Ey-RSG" firstAttribute="leading" secondItem="2JG-Qa-LOy" secondAttribute="trailing" constant="30" id="awj-pL-4yV"/>
  729. <constraint firstItem="DVA-Pi-NA3" firstAttribute="leading" secondItem="Z2Y-LD-RFG" secondAttribute="leading" id="ez6-iK-ITP"/>
  730. <constraint firstItem="gGf-Qb-Uc9" firstAttribute="centerY" secondItem="Z2Y-LD-RFG" secondAttribute="centerY" id="gct-pl-dCL"/>
  731. <constraint firstItem="Nnj-5b-sBF" firstAttribute="centerY" secondItem="Z2Y-LD-RFG" secondAttribute="centerY" id="hwf-o2-abY"/>
  732. <constraint firstItem="Z2Y-LD-RFG" firstAttribute="leading" secondItem="Ajw-zF-nXf" secondAttribute="leading" constant="16" id="mHY-qN-zBd"/>
  733. <constraint firstItem="oVz-hr-vFh" firstAttribute="centerY" secondItem="k8U-Ey-RSG" secondAttribute="centerY" id="mw2-L2-Gko"/>
  734. <constraint firstAttribute="trailing" secondItem="Sy5-2r-bc6" secondAttribute="trailing" constant="16" id="nMa-0z-Lis"/>
  735. <constraint firstItem="2JG-Qa-LOy" firstAttribute="centerY" secondItem="Z2Y-LD-RFG" secondAttribute="centerY" id="oDb-Rf-nAi"/>
  736. <constraint firstItem="Nnj-5b-sBF" firstAttribute="leading" secondItem="gGf-Qb-Uc9" secondAttribute="trailing" constant="10" id="sf4-ee-m7i"/>
  737. <constraint firstAttribute="bottom" secondItem="Zys-QN-184" secondAttribute="bottom" id="xcU-0r-0oF"/>
  738. </constraints>
  739. </tableViewCellContentView>
  740. <connections>
  741. <outlet property="editQTY" destination="gGf-Qb-Uc9" id="QHu-a1-ys6"/>
  742. <outlet property="labelDescription" destination="DVA-Pi-NA3" id="oD1-iG-Gvm"/>
  743. <outlet property="labelDimension" destination="2JG-Qa-LOy" id="BFk-hZ-AOX"/>
  744. <outlet property="labelModel" destination="Z2Y-LD-RFG" id="pej-PG-D8q"/>
  745. <outlet property="labelStock" destination="k8U-Ey-RSG" id="QFV-eg-36Y"/>
  746. <outlet property="priceScrollView" destination="Sy5-2r-bc6" id="njG-vs-qqu"/>
  747. <outlet property="steper" destination="Nnj-5b-sBF" id="Lba-IX-lJj"/>
  748. </connections>
  749. </tableViewCell>
  750. </prototypes>
  751. <connections>
  752. <outlet property="dataSource" destination="p2v-UD-wPL" id="4pz-n4-gQR"/>
  753. <outlet property="delegate" destination="p2v-UD-wPL" id="kvt-ru-Td0"/>
  754. </connections>
  755. </tableView>
  756. </subviews>
  757. <viewLayoutGuide key="safeArea" id="kJK-2I-SQO"/>
  758. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  759. <constraints>
  760. <constraint firstItem="kJK-2I-SQO" firstAttribute="trailing" secondItem="bW9-lh-e8E" secondAttribute="trailing" id="9XJ-w6-Rom"/>
  761. <constraint firstItem="N1G-LR-2o5" firstAttribute="centerY" secondItem="zM0-LF-q8I" secondAttribute="centerY" id="CyQ-E6-Xas"/>
  762. <constraint firstItem="N1G-LR-2o5" firstAttribute="top" secondItem="bW9-lh-e8E" secondAttribute="bottom" constant="20" id="DjH-DK-l5t"/>
  763. <constraint firstItem="bW9-lh-e8E" firstAttribute="top" secondItem="wgc-2E-fLG" secondAttribute="bottom" constant="16" id="Dzd-6G-XNl"/>
  764. <constraint firstItem="kJK-2I-SQO" firstAttribute="trailing" secondItem="N1G-LR-2o5" secondAttribute="trailing" constant="40" id="JMN-mC-Jp7"/>
  765. <constraint firstItem="N1G-LR-2o5" firstAttribute="leading" secondItem="zM0-LF-q8I" secondAttribute="trailing" constant="40" id="Lk7-5c-XO9"/>
  766. <constraint firstItem="bW9-lh-e8E" firstAttribute="leading" secondItem="kJK-2I-SQO" secondAttribute="leading" id="NU7-9g-SxT"/>
  767. <constraint firstItem="XSY-X8-3ee" firstAttribute="trailing" secondItem="bW9-lh-e8E" secondAttribute="trailing" id="Ud8-aI-4EP"/>
  768. <constraint firstItem="kJK-2I-SQO" firstAttribute="bottom" secondItem="N1G-LR-2o5" secondAttribute="bottom" constant="40" id="ZGa-sj-pwl"/>
  769. <constraint firstItem="XSY-X8-3ee" firstAttribute="centerY" secondItem="wgc-2E-fLG" secondAttribute="centerY" id="ldh-Yn-10z"/>
  770. <constraint firstItem="wgc-2E-fLG" firstAttribute="top" secondItem="IpQ-Py-Irh" secondAttribute="top" constant="16" id="vCL-3M-6R2"/>
  771. <constraint firstItem="XSY-X8-3ee" firstAttribute="leading" secondItem="wgc-2E-fLG" secondAttribute="trailing" constant="16" id="xKM-41-YA3"/>
  772. </constraints>
  773. </view>
  774. <value key="contentSizeForViewInPopover" type="size" width="480" height="320"/>
  775. <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
  776. <connections>
  777. <outlet property="btnUpdateStoc" destination="wgc-2E-fLG" id="P1G-S4-18m"/>
  778. <outlet property="labelStock" destination="XSY-X8-3ee" id="6vF-yn-yrd"/>
  779. <outlet property="tableView" destination="bW9-lh-e8E" id="N4g-Py-fjm"/>
  780. </connections>
  781. </viewController>
  782. <placeholder placeholderIdentifier="IBFirstResponder" id="Hy3-80-z6R" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  783. </objects>
  784. <point key="canvasLocation" x="-828.8888888888888" y="130"/>
  785. </scene>
  786. <!--Cart View Controller-->
  787. <scene sceneID="202-v9-HZP">
  788. <objects>
  789. <viewController storyboardIdentifier="CartViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="oRS-pB-8jo" customClass="CartViewController" sceneMemberID="viewController">
  790. <view key="view" contentMode="scaleToFill" id="Nru-ZY-H46">
  791. <rect key="frame" x="0.0" y="0.0" width="810" height="1080"/>
  792. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  793. <subviews>
  794. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="RmD-zr-fSi" userLabel="cart item view">
  795. <rect key="frame" x="0.0" y="40" width="810" height="916"/>
  796. <subviews>
  797. <activityIndicatorView opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" hidesWhenStopped="YES" animating="YES" style="whiteLarge" translatesAutoresizingMaskIntoConstraints="NO" id="lpm-Ch-BkE" userLabel="mum">
  798. <rect key="frame" x="386.5" y="439.5" width="37" height="37"/>
  799. <color key="color" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  800. </activityIndicatorView>
  801. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="120" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="3W5-s1-uRe">
  802. <rect key="frame" x="0.0" y="0.0" width="810" height="916"/>
  803. <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
  804. <color key="sectionIndexBackgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  805. <prototypes>
  806. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="CartItemCell" rowHeight="146" id="fdn-6O-9Xe" customClass="ModelItemCell">
  807. <rect key="frame" x="0.0" y="50.5" width="810" height="146"/>
  808. <autoresizingMask key="autoresizingMask"/>
  809. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="fdn-6O-9Xe" id="dsP-tF-cWg">
  810. <rect key="frame" x="0.0" y="0.0" width="810" height="146"/>
  811. <autoresizingMask key="autoresizingMask"/>
  812. <subviews>
  813. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="name aaaaaaaaaaaaa aaaaaaaaaa BBBBB CCCCC" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="oqD-9S-X3Y" userLabel="name and description">
  814. <rect key="frame" x="123" y="10" width="224" height="100"/>
  815. <fontDescription key="fontDescription" name="HelveticaNeue" family="Helvetica Neue" pointSize="15"/>
  816. <nil key="highlightedColor"/>
  817. </label>
  818. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" text="9999" borderStyle="roundedRect" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="1eH-Ve-85d" userLabel="qty">
  819. <rect key="frame" x="480" y="41" width="60" height="32"/>
  820. <constraints>
  821. <constraint firstAttribute="height" constant="32" id="cJg-9M-hWQ"/>
  822. <constraint firstAttribute="width" constant="60" id="gBB-Cj-PZn"/>
  823. </constraints>
  824. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  825. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  826. <textInputTraits key="textInputTraits" keyboardType="numberPad"/>
  827. <connections>
  828. <outlet property="delegate" destination="fdn-6O-9Xe" id="gSw-aO-tkP"/>
  829. </connections>
  830. </textField>
  831. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="IiP-RS-RWr" userLabel="imgbtn detail">
  832. <rect key="frame" x="15" y="10" width="100" height="100"/>
  833. <constraints>
  834. <constraint firstAttribute="height" constant="100" id="Hke-5f-GAw"/>
  835. <constraint firstAttribute="width" constant="100" id="dZn-2v-NbT"/>
  836. </constraints>
  837. <state key="normal">
  838. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  839. </state>
  840. <connections>
  841. <action selector="imgbtnClick:" destination="oRS-pB-8jo" eventType="touchUpInside" id="tKi-4F-GnW"/>
  842. </connections>
  843. </button>
  844. <stepper opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" value="1" maximumValue="99999" translatesAutoresizingMaskIntoConstraints="NO" id="6xs-Lv-Lz6">
  845. <rect key="frame" x="555" y="41" width="94" height="32"/>
  846. <constraints>
  847. <constraint firstAttribute="height" constant="32" id="axG-nU-ukL"/>
  848. <constraint firstAttribute="width" constant="94" id="nPK-gx-pbW"/>
  849. </constraints>
  850. <connections>
  851. <action selector="setpperChanged:" destination="fdn-6O-9Xe" eventType="touchUpInside" id="Oq0-fY-ryy"/>
  852. </connections>
  853. </stepper>
  854. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="12345678.99" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="G3q-Ix-H24" userLabel="unit price">
  855. <rect key="frame" x="355" y="46.5" width="110" height="21"/>
  856. <constraints>
  857. <constraint firstAttribute="width" constant="110" id="xFT-aA-Bp3"/>
  858. </constraints>
  859. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  860. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  861. <nil key="highlightedColor"/>
  862. </label>
  863. <label hidden="YES" opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="30 bundle item with $xxx" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="1IO-bU-Oxa">
  864. <rect key="frame" x="123" y="87.5" width="490" height="21"/>
  865. <constraints>
  866. <constraint firstAttribute="height" constant="21" id="hez-sl-3Yv"/>
  867. </constraints>
  868. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  869. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  870. <nil key="highlightedColor"/>
  871. </label>
  872. <label hidden="YES" opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="12345678.99" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Q6c-K9-rlF" userLabel="price before discount" customClass="StrikethroughLabel">
  873. <rect key="frame" x="355" y="10" width="110" height="21"/>
  874. <constraints>
  875. <constraint firstAttribute="width" constant="110" id="7ER-mm-hzG"/>
  876. <constraint firstAttribute="height" constant="21" id="lEf-wa-bUr"/>
  877. </constraints>
  878. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  879. <color key="textColor" red="0.33333333329999998" green="0.33333333329999998" blue="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  880. <nil key="highlightedColor"/>
  881. </label>
  882. <label hidden="YES" opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="99.99% off" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="N1Z-2x-l0W" userLabel="discount">
  883. <rect key="frame" x="509" y="10" width="100" height="21"/>
  884. <constraints>
  885. <constraint firstAttribute="width" constant="100" id="Cr1-6y-5Ag"/>
  886. </constraints>
  887. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  888. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  889. <nil key="highlightedColor"/>
  890. </label>
  891. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Sold in QTY of:9999" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="tLh-hg-C39">
  892. <rect key="frame" x="619" y="10" width="160" height="21"/>
  893. <constraints>
  894. <constraint firstAttribute="height" constant="21" id="ayf-7z-kaO"/>
  895. <constraint firstAttribute="width" constant="160" id="p0E-C7-5Od"/>
  896. </constraints>
  897. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  898. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  899. <nil key="highlightedColor"/>
  900. </label>
  901. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="123456789.00" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="UkH-i1-iGl" userLabel="subtotal price">
  902. <rect key="frame" x="664" y="46.5" width="115" height="21"/>
  903. <constraints>
  904. <constraint firstAttribute="width" constant="115" id="Jcg-7F-KDZ"/>
  905. </constraints>
  906. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  907. <nil key="highlightedColor"/>
  908. </label>
  909. <button hidden="YES" opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="rWd-EH-8O4" customClass="BundleDetailButton">
  910. <rect key="frame" x="621" y="83" width="50" height="30"/>
  911. <constraints>
  912. <constraint firstAttribute="height" constant="30" id="ciL-EM-lOo"/>
  913. <constraint firstAttribute="width" constant="50" id="nKh-Cx-BM8"/>
  914. </constraints>
  915. <state key="normal" title="Detail">
  916. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  917. </state>
  918. <connections>
  919. <action selector="OnClick_BundleDetail:" destination="fdn-6O-9Xe" eventType="touchUpInside" id="Ql0-6Q-qbO"/>
  920. </connections>
  921. </button>
  922. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="nhs-qX-bOm">
  923. <rect key="frame" x="15" y="117" width="780" height="21"/>
  924. <constraints>
  925. <constraint firstAttribute="height" constant="21" id="R3w-bO-5Ss"/>
  926. </constraints>
  927. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  928. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  929. <nil key="highlightedColor"/>
  930. </label>
  931. <label hidden="YES" opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="No Such Model" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="faS-8H-H1x">
  932. <rect key="frame" x="61" y="60" width="337" height="42"/>
  933. <constraints>
  934. <constraint firstAttribute="width" constant="337" id="BzO-dn-cAj"/>
  935. <constraint firstAttribute="height" constant="42" id="Zqx-xO-eue"/>
  936. </constraints>
  937. <fontDescription key="fontDescription" type="boldSystem" pointSize="35"/>
  938. <color key="textColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  939. <nil key="highlightedColor"/>
  940. </label>
  941. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="0Qp-mD-Agt">
  942. <rect key="frame" x="15" y="10" width="100" height="100"/>
  943. <constraints>
  944. <constraint firstAttribute="height" constant="100" id="ElE-td-g8R"/>
  945. <constraint firstAttribute="width" constant="100" id="YeG-4G-9ZU"/>
  946. </constraints>
  947. <string key="text"> Out
  948. of
  949. Stock</string>
  950. <fontDescription key="fontDescription" type="boldSystem" pointSize="20"/>
  951. <color key="textColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
  952. <nil key="highlightedColor"/>
  953. </label>
  954. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="NbN-g8-LAY" customClass="BundleDetailButton">
  955. <rect key="frame" x="679" y="83" width="100" height="30"/>
  956. <constraints>
  957. <constraint firstAttribute="height" constant="30" id="IDL-jT-zy1"/>
  958. <constraint firstAttribute="width" constant="100" id="adt-KM-bK9"/>
  959. </constraints>
  960. <state key="normal" title="Master Model"/>
  961. <connections>
  962. <action selector="masterBundleClick:" destination="fdn-6O-9Xe" eventType="touchUpInside" id="Brs-ex-bpJ"/>
  963. </connections>
  964. </button>
  965. </subviews>
  966. <constraints>
  967. <constraint firstItem="UkH-i1-iGl" firstAttribute="trailing" secondItem="tLh-hg-C39" secondAttribute="trailing" id="2Hv-WB-Xh8"/>
  968. <constraint firstAttribute="trailing" secondItem="nhs-qX-bOm" secondAttribute="trailing" constant="15" id="38m-P6-eAH"/>
  969. <constraint firstItem="oqD-9S-X3Y" firstAttribute="leading" secondItem="IiP-RS-RWr" secondAttribute="trailing" constant="8" id="7TB-cB-yNr"/>
  970. <constraint firstItem="NbN-g8-LAY" firstAttribute="leading" secondItem="rWd-EH-8O4" secondAttribute="trailing" constant="8" id="84A-FG-xZt"/>
  971. <constraint firstItem="0Qp-mD-Agt" firstAttribute="top" secondItem="dsP-tF-cWg" secondAttribute="top" constant="10" id="8LD-fW-nVa"/>
  972. <constraint firstItem="oqD-9S-X3Y" firstAttribute="bottom" secondItem="0Qp-mD-Agt" secondAttribute="bottom" id="9O0-5x-DMI"/>
  973. <constraint firstItem="1eH-Ve-85d" firstAttribute="leading" secondItem="G3q-Ix-H24" secondAttribute="trailing" constant="15" id="9YX-qv-hp0"/>
  974. <constraint firstItem="nhs-qX-bOm" firstAttribute="top" secondItem="NbN-g8-LAY" secondAttribute="bottom" constant="4" id="F5s-nI-gu6"/>
  975. <constraint firstItem="oqD-9S-X3Y" firstAttribute="top" secondItem="0Qp-mD-Agt" secondAttribute="top" id="IIi-uM-Vfy"/>
  976. <constraint firstItem="NbN-g8-LAY" firstAttribute="firstBaseline" secondItem="rWd-EH-8O4" secondAttribute="firstBaseline" id="ILG-tk-zI3"/>
  977. <constraint firstItem="6xs-Lv-Lz6" firstAttribute="centerY" secondItem="G3q-Ix-H24" secondAttribute="centerY" id="PaN-wg-Z49"/>
  978. <constraint firstItem="nhs-qX-bOm" firstAttribute="leading" secondItem="dsP-tF-cWg" secondAttribute="leading" constant="15" id="R2v-HC-4jj"/>
  979. <constraint firstItem="IiP-RS-RWr" firstAttribute="top" secondItem="dsP-tF-cWg" secondAttribute="top" constant="10" id="Sd2-Sr-1F3"/>
  980. <constraint firstItem="tLh-hg-C39" firstAttribute="top" secondItem="0Qp-mD-Agt" secondAttribute="top" id="UL7-rf-qx7"/>
  981. <constraint firstItem="6xs-Lv-Lz6" firstAttribute="top" secondItem="N1Z-2x-l0W" secondAttribute="bottom" constant="10" id="UMA-jR-Cz0"/>
  982. <constraint firstItem="IiP-RS-RWr" firstAttribute="leading" secondItem="dsP-tF-cWg" secondAttribute="leading" constant="15" id="UOf-sk-VIp"/>
  983. <constraint firstItem="rWd-EH-8O4" firstAttribute="top" secondItem="6xs-Lv-Lz6" secondAttribute="bottom" constant="10" id="WnE-Hq-j0Q"/>
  984. <constraint firstItem="Q6c-K9-rlF" firstAttribute="leading" secondItem="oqD-9S-X3Y" secondAttribute="trailing" constant="8" id="Z2p-mN-s27"/>
  985. <constraint firstItem="1eH-Ve-85d" firstAttribute="centerY" secondItem="G3q-Ix-H24" secondAttribute="centerY" id="acw-1G-fUC"/>
  986. <constraint firstAttribute="trailingMargin" secondItem="NbN-g8-LAY" secondAttribute="trailing" constant="15" id="atw-OG-hhL"/>
  987. <constraint firstItem="UkH-i1-iGl" firstAttribute="centerY" secondItem="G3q-Ix-H24" secondAttribute="centerY" id="cQQ-qR-ejt"/>
  988. <constraint firstItem="rWd-EH-8O4" firstAttribute="leading" secondItem="1IO-bU-Oxa" secondAttribute="trailing" constant="8" id="gUn-As-Akd"/>
  989. <constraint firstItem="faS-8H-H1x" firstAttribute="top" secondItem="dsP-tF-cWg" secondAttribute="topMargin" constant="45" id="iZh-zK-76i"/>
  990. <constraint firstAttribute="bottom" secondItem="nhs-qX-bOm" secondAttribute="bottom" constant="8" id="j2y-zD-CVF"/>
  991. <constraint firstItem="0Qp-mD-Agt" firstAttribute="leading" secondItem="dsP-tF-cWg" secondAttribute="leading" constant="15" id="llo-6b-x0p"/>
  992. <constraint firstItem="UkH-i1-iGl" firstAttribute="leading" secondItem="6xs-Lv-Lz6" secondAttribute="trailing" constant="15" id="lyC-Yx-nun"/>
  993. <constraint firstItem="NbN-g8-LAY" firstAttribute="trailing" secondItem="UkH-i1-iGl" secondAttribute="trailing" id="nru-Ky-V4o"/>
  994. <constraint firstItem="Q6c-K9-rlF" firstAttribute="leading" secondItem="G3q-Ix-H24" secondAttribute="leading" id="qfh-b3-c7N"/>
  995. <constraint firstItem="rWd-EH-8O4" firstAttribute="firstBaseline" secondItem="1IO-bU-Oxa" secondAttribute="firstBaseline" id="rmY-BO-axC"/>
  996. <constraint firstItem="faS-8H-H1x" firstAttribute="leading" secondItem="dsP-tF-cWg" secondAttribute="leadingMargin" constant="45" id="sI4-Ut-sLv"/>
  997. <constraint firstItem="NbN-g8-LAY" firstAttribute="leading" secondItem="rWd-EH-8O4" secondAttribute="trailing" constant="8" id="sec-mG-24x"/>
  998. <constraint firstItem="1IO-bU-Oxa" firstAttribute="leading" secondItem="IiP-RS-RWr" secondAttribute="trailing" constant="8" id="tig-Bg-jEC"/>
  999. <constraint firstItem="tLh-hg-C39" firstAttribute="firstBaseline" secondItem="Q6c-K9-rlF" secondAttribute="firstBaseline" id="veh-bQ-a6g"/>
  1000. <constraint firstItem="tLh-hg-C39" firstAttribute="leading" secondItem="N1Z-2x-l0W" secondAttribute="trailing" constant="10" id="wDE-ow-WN3"/>
  1001. <constraint firstItem="N1Z-2x-l0W" firstAttribute="firstBaseline" secondItem="Q6c-K9-rlF" secondAttribute="firstBaseline" id="xeu-Kg-9Bn"/>
  1002. <constraint firstItem="6xs-Lv-Lz6" firstAttribute="leading" secondItem="1eH-Ve-85d" secondAttribute="trailing" constant="15" id="zyP-H8-Wsf"/>
  1003. </constraints>
  1004. </tableViewCellContentView>
  1005. <connections>
  1006. <outlet property="btnImage" destination="IiP-RS-RWr" id="8fI-I9-kVy"/>
  1007. <outlet property="bundleButton" destination="rWd-EH-8O4" id="ezu-J0-5aq"/>
  1008. <outlet property="bundleLabel" destination="1IO-bU-Oxa" id="Dre-9S-k0R"/>
  1009. <outlet property="editCount" destination="1eH-Ve-85d" id="Ebu-vK-uDR"/>
  1010. <outlet property="labelDescription" destination="oqD-9S-X3Y" id="oyO-td-DtA"/>
  1011. <outlet property="labelDiscount" destination="N1Z-2x-l0W" id="8uh-rG-4Rt"/>
  1012. <outlet property="labelMasterpack" destination="tLh-hg-C39" id="lLF-dE-E3r"/>
  1013. <outlet property="labelNoSuchModel" destination="faS-8H-H1x" id="Lsf-SM-8Tq"/>
  1014. <outlet property="labelNotes" destination="nhs-qX-bOm" id="1UN-4y-LUV"/>
  1015. <outlet property="labelOldPrice" destination="Q6c-K9-rlF" id="iLs-1P-SBQ"/>
  1016. <outlet property="labelOutOfStock" destination="0Qp-mD-Agt" id="hYk-fi-cZ1"/>
  1017. <outlet property="labelPrice" destination="UkH-i1-iGl" id="2oP-ZQ-yzl"/>
  1018. <outlet property="labelUnitPrice" destination="G3q-Ix-H24" id="vNl-ty-SEj"/>
  1019. <outlet property="masterBtn" destination="NbN-g8-LAY" id="HbA-Uh-mxf"/>
  1020. <outlet property="stepper" destination="6xs-Lv-Lz6" id="8FR-ez-c8b"/>
  1021. </connections>
  1022. </tableViewCell>
  1023. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" restorationIdentifier="ScanCartItemCell" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ScanCartItemCell" rowHeight="120" id="Bb2-X4-qir" customClass="ScanCartItemCell">
  1024. <rect key="frame" x="0.0" y="196.5" width="810" height="120"/>
  1025. <autoresizingMask key="autoresizingMask"/>
  1026. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Bb2-X4-qir" id="6UY-HP-ApY">
  1027. <rect key="frame" x="0.0" y="0.0" width="810" height="120"/>
  1028. <autoresizingMask key="autoresizingMask"/>
  1029. <subviews>
  1030. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="name aaaaaaaaaaaaa aaaaaaaaaa BBBBB CCCCC" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="6dX-9b-w6l" userLabel="name and description">
  1031. <rect key="frame" x="15" y="37" width="336" height="54"/>
  1032. <fontDescription key="fontDescription" name="HelveticaNeue" family="Helvetica Neue" pointSize="15"/>
  1033. <nil key="highlightedColor"/>
  1034. </label>
  1035. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" text="9999" borderStyle="roundedRect" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="V3e-A3-y8I" userLabel="qty">
  1036. <rect key="frame" x="491" y="41.5" width="60" height="32"/>
  1037. <constraints>
  1038. <constraint firstAttribute="width" constant="60" id="W12-Fv-Xth"/>
  1039. <constraint firstAttribute="height" constant="32" id="d8i-y9-e8i"/>
  1040. </constraints>
  1041. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1042. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  1043. <textInputTraits key="textInputTraits" keyboardType="numberPad"/>
  1044. <connections>
  1045. <outlet property="delegate" destination="Bb2-X4-qir" id="fWF-9f-MvK"/>
  1046. </connections>
  1047. </textField>
  1048. <stepper opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" value="1" maximumValue="99999" translatesAutoresizingMaskIntoConstraints="NO" id="S0K-Bu-637">
  1049. <rect key="frame" x="566" y="41.5" width="94" height="32"/>
  1050. <constraints>
  1051. <constraint firstAttribute="height" constant="32" id="Bwt-Dk-y1D"/>
  1052. <constraint firstAttribute="width" constant="94" id="NaB-Sw-2Cw"/>
  1053. </constraints>
  1054. <connections>
  1055. <action selector="setpperChanged:" destination="Bb2-X4-qir" eventType="valueChanged" id="TUZ-RB-2lJ"/>
  1056. </connections>
  1057. </stepper>
  1058. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="12345678.99" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Hlt-a1-Obi" userLabel="unit price">
  1059. <rect key="frame" x="366" y="47" width="110" height="21"/>
  1060. <constraints>
  1061. <constraint firstAttribute="width" constant="110" id="A1n-Bu-hvn"/>
  1062. </constraints>
  1063. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1064. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1065. <nil key="highlightedColor"/>
  1066. </label>
  1067. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Sold in QTY of:9999" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="sfo-Yw-I0g">
  1068. <rect key="frame" x="630" y="11" width="160" height="21"/>
  1069. <constraints>
  1070. <constraint firstAttribute="width" constant="160" id="4tF-dv-3cb"/>
  1071. <constraint firstAttribute="height" constant="21" id="6HM-8j-A6Z"/>
  1072. </constraints>
  1073. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1074. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1075. <nil key="highlightedColor"/>
  1076. </label>
  1077. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="123456789.00" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="8RN-F1-G0M" userLabel="subtotal price">
  1078. <rect key="frame" x="675" y="47" width="115" height="21"/>
  1079. <constraints>
  1080. <constraint firstAttribute="width" constant="115" id="XTi-4B-GAs"/>
  1081. </constraints>
  1082. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1083. <nil key="highlightedColor"/>
  1084. </label>
  1085. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="93p-eO-r5r">
  1086. <rect key="frame" x="15" y="91" width="780" height="21"/>
  1087. <constraints>
  1088. <constraint firstAttribute="height" constant="21" id="xJC-Y7-ODb"/>
  1089. </constraints>
  1090. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1091. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1092. <nil key="highlightedColor"/>
  1093. </label>
  1094. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3Cs-3s-CCg">
  1095. <rect key="frame" x="15" y="11" width="44.5" height="21"/>
  1096. <constraints>
  1097. <constraint firstAttribute="height" constant="21" id="jqE-UM-qLG"/>
  1098. </constraints>
  1099. <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
  1100. <nil key="textColor"/>
  1101. <nil key="highlightedColor"/>
  1102. </label>
  1103. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="ATy-eu-2mi">
  1104. <rect key="frame" x="491" y="74.5" width="169" height="34.5"/>
  1105. <state key="normal" title="Button"/>
  1106. <buttonConfiguration key="configuration" style="plain" title="Discount"/>
  1107. <connections>
  1108. <action selector="onScanDiscount:" destination="oRS-pB-8jo" eventType="touchUpInside" id="d9h-lA-RcO"/>
  1109. </connections>
  1110. </button>
  1111. <label hidden="YES" opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="12345678.99" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="boP-G8-Lp6" userLabel="price before discount" customClass="StrikethroughLabel">
  1112. <rect key="frame" x="366" y="76" width="110" height="21"/>
  1113. <constraints>
  1114. <constraint firstAttribute="width" constant="110" id="v3j-Sh-hTs"/>
  1115. </constraints>
  1116. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1117. <color key="textColor" red="0.33333333329999998" green="0.33333333329999998" blue="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1118. <nil key="highlightedColor"/>
  1119. </label>
  1120. </subviews>
  1121. <constraints>
  1122. <constraint firstItem="ATy-eu-2mi" firstAttribute="leading" secondItem="V3e-A3-y8I" secondAttribute="leading" id="24u-kB-ZTW"/>
  1123. <constraint firstItem="8RN-F1-G0M" firstAttribute="trailing" secondItem="sfo-Yw-I0g" secondAttribute="trailing" id="5gN-4E-b0J"/>
  1124. <constraint firstItem="boP-G8-Lp6" firstAttribute="top" secondItem="Hlt-a1-Obi" secondAttribute="bottom" constant="8" symbolic="YES" id="5kv-xC-Mgl"/>
  1125. <constraint firstItem="Hlt-a1-Obi" firstAttribute="leading" secondItem="boP-G8-Lp6" secondAttribute="leading" id="6CT-Ah-YWm"/>
  1126. <constraint firstItem="V3e-A3-y8I" firstAttribute="leading" secondItem="Hlt-a1-Obi" secondAttribute="trailing" constant="15" id="6TO-z7-7Kt"/>
  1127. <constraint firstItem="6dX-9b-w6l" firstAttribute="top" secondItem="3Cs-3s-CCg" secondAttribute="bottom" constant="5" id="87y-Z7-Hjd"/>
  1128. <constraint firstItem="3Cs-3s-CCg" firstAttribute="leading" secondItem="6UY-HP-ApY" secondAttribute="leading" constant="15" id="8sb-DO-kZb"/>
  1129. <constraint firstAttribute="bottom" secondItem="93p-eO-r5r" secondAttribute="bottom" constant="8" id="Bfi-UY-dkf"/>
  1130. <constraint firstItem="S0K-Bu-637" firstAttribute="trailing" secondItem="ATy-eu-2mi" secondAttribute="trailing" id="D0a-fG-ado"/>
  1131. <constraint firstAttribute="bottom" secondItem="ATy-eu-2mi" secondAttribute="bottom" constant="11" id="D1J-WH-H1j"/>
  1132. <constraint firstItem="S0K-Bu-637" firstAttribute="leading" secondItem="V3e-A3-y8I" secondAttribute="trailing" constant="15" id="GZs-5w-tdj"/>
  1133. <constraint firstItem="V3e-A3-y8I" firstAttribute="centerY" secondItem="Hlt-a1-Obi" secondAttribute="centerY" id="HZi-R1-rbC"/>
  1134. <constraint firstAttribute="trailing" secondItem="93p-eO-r5r" secondAttribute="trailing" constant="15" id="Jrg-pz-XQM"/>
  1135. <constraint firstItem="8RN-F1-G0M" firstAttribute="top" secondItem="sfo-Yw-I0g" secondAttribute="bottom" constant="15" id="OuW-Vh-JF4"/>
  1136. <constraint firstAttribute="trailing" secondItem="8RN-F1-G0M" secondAttribute="trailing" constant="20" id="Q90-Vd-eCT"/>
  1137. <constraint firstItem="8RN-F1-G0M" firstAttribute="centerY" secondItem="Hlt-a1-Obi" secondAttribute="centerY" id="R13-ks-goL"/>
  1138. <constraint firstItem="3Cs-3s-CCg" firstAttribute="top" secondItem="6UY-HP-ApY" secondAttribute="top" constant="11" id="RWt-7Z-Ux1"/>
  1139. <constraint firstItem="Hlt-a1-Obi" firstAttribute="trailing" secondItem="boP-G8-Lp6" secondAttribute="trailing" id="Reb-Rf-V7w"/>
  1140. <constraint firstItem="93p-eO-r5r" firstAttribute="top" secondItem="6dX-9b-w6l" secondAttribute="bottom" id="U4m-dk-ipl"/>
  1141. <constraint firstItem="sfo-Yw-I0g" firstAttribute="top" secondItem="3Cs-3s-CCg" secondAttribute="top" id="VHF-PX-bed"/>
  1142. <constraint firstItem="8RN-F1-G0M" firstAttribute="leading" secondItem="S0K-Bu-637" secondAttribute="trailing" constant="15" id="c2w-AI-hFk"/>
  1143. <constraint firstItem="S0K-Bu-637" firstAttribute="centerY" secondItem="Hlt-a1-Obi" secondAttribute="centerY" id="lLa-YW-blq"/>
  1144. <constraint firstItem="Hlt-a1-Obi" firstAttribute="leading" secondItem="6dX-9b-w6l" secondAttribute="trailing" constant="15" id="lui-4P-z76"/>
  1145. <constraint firstItem="93p-eO-r5r" firstAttribute="leading" secondItem="6UY-HP-ApY" secondAttribute="leading" constant="15" id="n1s-K8-fxD"/>
  1146. <constraint firstItem="6dX-9b-w6l" firstAttribute="leading" secondItem="3Cs-3s-CCg" secondAttribute="leading" id="whO-dQ-M3N"/>
  1147. </constraints>
  1148. </tableViewCellContentView>
  1149. <connections>
  1150. <outlet property="btnScanDiscount" destination="ATy-eu-2mi" id="0Cf-UF-gCF"/>
  1151. <outlet property="editQTY" destination="V3e-A3-y8I" id="FWb-DY-FqR"/>
  1152. <outlet property="labelDescription" destination="6dX-9b-w6l" id="IFY-dj-vpy"/>
  1153. <outlet property="labelModel" destination="3Cs-3s-CCg" id="bL7-Bb-deE"/>
  1154. <outlet property="labelMpack" destination="sfo-Yw-I0g" id="Vmm-hZ-BfX"/>
  1155. <outlet property="labelNotes" destination="93p-eO-r5r" id="jUe-eq-2M6"/>
  1156. <outlet property="labelOldPrice" destination="boP-G8-Lp6" id="xzi-lI-1ZK"/>
  1157. <outlet property="labelSubtotal" destination="8RN-F1-G0M" id="SmT-Mi-C57"/>
  1158. <outlet property="labelUnitPrice" destination="Hlt-a1-Obi" id="shy-5B-Yxo"/>
  1159. <outlet property="setpperQTY" destination="S0K-Bu-637" id="lcy-u9-jZk"/>
  1160. </connections>
  1161. </tableViewCell>
  1162. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" indentationWidth="10" reuseIdentifier="section_header_cell" rowHeight="50" id="PUX-MI-ptL">
  1163. <rect key="frame" x="0.0" y="316.5" width="810" height="50"/>
  1164. <autoresizingMask key="autoresizingMask"/>
  1165. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="PUX-MI-ptL" id="eIK-df-kd8">
  1166. <rect key="frame" x="0.0" y="0.0" width="810" height="50"/>
  1167. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1168. <subviews>
  1169. <label opaque="NO" userInteractionEnabled="NO" tag="8520" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Section" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="YoP-Cy-WJk">
  1170. <rect key="frame" x="15" y="0.0" width="780" height="50"/>
  1171. <fontDescription key="fontDescription" type="system" pointSize="21"/>
  1172. <nil key="textColor"/>
  1173. <nil key="highlightedColor"/>
  1174. </label>
  1175. </subviews>
  1176. <constraints>
  1177. <constraint firstAttribute="trailing" secondItem="YoP-Cy-WJk" secondAttribute="trailing" constant="15" id="091-qz-puJ"/>
  1178. <constraint firstItem="YoP-Cy-WJk" firstAttribute="top" secondItem="eIK-df-kd8" secondAttribute="top" id="Bkd-Pt-YXu"/>
  1179. <constraint firstAttribute="bottom" secondItem="YoP-Cy-WJk" secondAttribute="bottom" id="Dss-hw-R6w"/>
  1180. <constraint firstItem="YoP-Cy-WJk" firstAttribute="leading" secondItem="eIK-df-kd8" secondAttribute="leading" constant="15" id="kES-cg-Wfo"/>
  1181. </constraints>
  1182. </tableViewCellContentView>
  1183. <color key="backgroundColor" red="0.42482998700000002" green="0.29070497229999998" blue="0.040483503669999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1184. <constraints>
  1185. <constraint firstItem="eIK-df-kd8" firstAttribute="leading" secondItem="PUX-MI-ptL" secondAttribute="leading" id="Nh0-lb-QhW"/>
  1186. <constraint firstAttribute="bottom" secondItem="eIK-df-kd8" secondAttribute="bottom" id="QHC-gh-Kd2"/>
  1187. <constraint firstItem="eIK-df-kd8" firstAttribute="top" secondItem="PUX-MI-ptL" secondAttribute="top" id="hUm-Qj-5yG"/>
  1188. <constraint firstAttribute="trailing" secondItem="eIK-df-kd8" secondAttribute="trailing" id="zWk-kG-1oN"/>
  1189. </constraints>
  1190. </tableViewCell>
  1191. </prototypes>
  1192. <connections>
  1193. <outlet property="dataSource" destination="oRS-pB-8jo" id="h26-eI-fbc"/>
  1194. <outlet property="delegate" destination="oRS-pB-8jo" id="DgS-PD-uqt"/>
  1195. </connections>
  1196. </tableView>
  1197. <label hidden="YES" opaque="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Cannot get data from server.
Tap to try again." textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Rac-Ya-aVK">
  1198. <rect key="frame" x="284.5" y="435.5" width="241.5" height="45.5"/>
  1199. <fontDescription key="fontDescription" type="system" pointSize="19"/>
  1200. <color key="textColor" red="0.33333333329999998" green="0.33333333329999998" blue="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1201. <nil key="highlightedColor"/>
  1202. </label>
  1203. </subviews>
  1204. <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1205. <constraints>
  1206. <constraint firstItem="Rac-Ya-aVK" firstAttribute="centerX" secondItem="RmD-zr-fSi" secondAttribute="centerX" id="2f6-mM-5YG"/>
  1207. <constraint firstItem="lpm-Ch-BkE" firstAttribute="centerY" secondItem="RmD-zr-fSi" secondAttribute="centerY" id="7hu-VN-Kwd"/>
  1208. <constraint firstItem="3W5-s1-uRe" firstAttribute="top" secondItem="RmD-zr-fSi" secondAttribute="top" id="Vmk-SF-Qhl"/>
  1209. <constraint firstItem="3W5-s1-uRe" firstAttribute="leading" secondItem="RmD-zr-fSi" secondAttribute="leading" id="ZHp-5v-V7S"/>
  1210. <constraint firstItem="lpm-Ch-BkE" firstAttribute="centerX" secondItem="RmD-zr-fSi" secondAttribute="centerX" id="buh-zJ-yWu"/>
  1211. <constraint firstAttribute="trailing" secondItem="3W5-s1-uRe" secondAttribute="trailing" id="qWD-9t-O8q"/>
  1212. <constraint firstItem="Rac-Ya-aVK" firstAttribute="centerY" secondItem="RmD-zr-fSi" secondAttribute="centerY" id="vvD-Fu-fyy"/>
  1213. <constraint firstAttribute="bottom" secondItem="3W5-s1-uRe" secondAttribute="bottom" id="wwS-rg-Sxa"/>
  1214. </constraints>
  1215. </view>
  1216. <toolbar hidden="YES" opaque="NO" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Rxh-S5-42X">
  1217. <rect key="frame" x="0.0" y="1036" width="810" height="44"/>
  1218. <constraints>
  1219. <constraint firstAttribute="height" constant="44" id="cVA-QF-XVg"/>
  1220. </constraints>
  1221. <items>
  1222. <barButtonItem title="Select All" id="1Dp-sO-suu">
  1223. <connections>
  1224. <action selector="OnEditSelectClick:" destination="oRS-pB-8jo" id="aR1-hD-nCf"/>
  1225. </connections>
  1226. </barButtonItem>
  1227. <barButtonItem width="42" style="plain" systemItem="fixedSpace" id="ZBW-XP-wIf"/>
  1228. <barButtonItem title="Move To Wish List" id="kpx-Gm-qig">
  1229. <connections>
  1230. <action selector="onEditAddWishClick:" destination="oRS-pB-8jo" id="p51-v9-QIr"/>
  1231. </connections>
  1232. </barButtonItem>
  1233. <barButtonItem width="42" style="plain" systemItem="fixedSpace" id="xxz-nF-LoK"/>
  1234. <barButtonItem title="Delete" id="XVs-gw-r3X">
  1235. <connections>
  1236. <action selector="onEditDelClick:" destination="oRS-pB-8jo" id="CY6-6x-6Or"/>
  1237. </connections>
  1238. </barButtonItem>
  1239. <barButtonItem style="plain" systemItem="flexibleSpace" id="iuu-yW-hGc"/>
  1240. <barButtonItem title="End Edit" id="m1v-Dw-xPT">
  1241. <connections>
  1242. <action selector="onEndEditClick:" destination="oRS-pB-8jo" id="Jec-QS-kEl"/>
  1243. </connections>
  1244. </barButtonItem>
  1245. </items>
  1246. </toolbar>
  1247. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="G78-MN-iaL">
  1248. <rect key="frame" x="0.0" y="956" width="810" height="124"/>
  1249. <subviews>
  1250. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Total QTY:" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="DdS-4S-1zx" userLabel="total qty">
  1251. <rect key="frame" x="366.5" y="6" width="74.5" height="20"/>
  1252. <constraints>
  1253. <constraint firstAttribute="height" constant="20" id="eFU-xu-5Ku"/>
  1254. </constraints>
  1255. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  1256. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1257. <nil key="highlightedColor"/>
  1258. </label>
  1259. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Subtotal Price:" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="lRq-Ow-fEk" userLabel="subtotal price">
  1260. <rect key="frame" x="557" y="30.5" width="110" height="20"/>
  1261. <constraints>
  1262. <constraint firstAttribute="width" constant="110" id="Fnc-WO-f4O"/>
  1263. </constraints>
  1264. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  1265. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1266. <nil key="highlightedColor"/>
  1267. </label>
  1268. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="eiF-G7-95R" userLabel="val_subtotal">
  1269. <rect key="frame" x="675" y="30.5" width="120" height="20"/>
  1270. <constraints>
  1271. <constraint firstAttribute="width" constant="120" id="gzv-zF-5DK"/>
  1272. <constraint firstAttribute="height" constant="20" id="n7f-Nu-VEd"/>
  1273. </constraints>
  1274. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  1275. <nil key="textColor"/>
  1276. <nil key="highlightedColor"/>
  1277. </label>
  1278. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="8gM-ne-ChU" userLabel="val_cuft">
  1279. <rect key="frame" x="675" y="6" width="120" height="20"/>
  1280. <constraints>
  1281. <constraint firstAttribute="height" constant="20" id="5Nx-rU-92d"/>
  1282. <constraint firstAttribute="width" constant="120" id="LBs-do-I4g"/>
  1283. </constraints>
  1284. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  1285. <nil key="highlightedColor"/>
  1286. </label>
  1287. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Prh-BQ-CkY" customClass="DefaultImageButton">
  1288. <rect key="frame" x="665" y="84" width="130" height="30"/>
  1289. <constraints>
  1290. <constraint firstAttribute="height" constant="30" id="3Ci-aJ-2hT"/>
  1291. <constraint firstAttribute="width" constant="130" id="ABv-Ui-RXU"/>
  1292. </constraints>
  1293. <state key="normal" title="Place Order" backgroundImage="continue">
  1294. <color key="titleColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  1295. </state>
  1296. <userDefinedRuntimeAttributes>
  1297. <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
  1298. <integer key="value" value="15"/>
  1299. </userDefinedRuntimeAttribute>
  1300. </userDefinedRuntimeAttributes>
  1301. <connections>
  1302. <action selector="onPlaceOrder:" destination="oRS-pB-8jo" eventType="touchUpInside" id="6MN-HR-RET"/>
  1303. </connections>
  1304. </button>
  1305. <button hidden="YES" opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="3hY-G2-bAt" customClass="DefaultImageButton">
  1306. <rect key="frame" x="615" y="84" width="30" height="30"/>
  1307. <constraints>
  1308. <constraint firstAttribute="height" constant="30" id="8BN-db-j9R"/>
  1309. <constraint firstAttribute="width" constant="30" id="gd5-ss-Lfd"/>
  1310. </constraints>
  1311. <state key="normal" title="Cancel Order" backgroundImage="btn_cancelorder">
  1312. <color key="titleColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  1313. </state>
  1314. <connections>
  1315. <action selector="OnCancelOrderClicked:" destination="oRS-pB-8jo" eventType="touchUpInside" id="WoB-Fs-XvY"/>
  1316. </connections>
  1317. </button>
  1318. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Total CuFt:" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="IpA-sg-I9m">
  1319. <rect key="frame" x="557" y="6" width="110" height="20"/>
  1320. <constraints>
  1321. <constraint firstAttribute="width" constant="110" id="mhe-zO-hNM"/>
  1322. </constraints>
  1323. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  1324. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1325. <nil key="highlightedColor"/>
  1326. </label>
  1327. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Total  Items:" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="UVG-on-4aI">
  1328. <rect key="frame" x="353" y="30.5" width="88" height="20"/>
  1329. <constraints>
  1330. <constraint firstAttribute="height" constant="20" id="tXP-jf-Jbq"/>
  1331. </constraints>
  1332. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  1333. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1334. <nil key="highlightedColor"/>
  1335. </label>
  1336. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="EcM-RL-hry">
  1337. <rect key="frame" x="15" y="84" width="140" height="30"/>
  1338. <constraints>
  1339. <constraint firstAttribute="width" constant="140" id="HV9-Om-2DM"/>
  1340. <constraint firstAttribute="height" constant="30" id="yag-60-1xF"/>
  1341. </constraints>
  1342. <state key="normal" title="Special Instructions"/>
  1343. <connections>
  1344. <action selector="onEditGeneralNotes:" destination="oRS-pB-8jo" eventType="touchUpInside" id="1M2-S8-TH2"/>
  1345. </connections>
  1346. </button>
  1347. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="jbJ-5K-Qgr">
  1348. <rect key="frame" x="155" y="89" width="340" height="20"/>
  1349. <constraints>
  1350. <constraint firstAttribute="height" constant="20" id="2DQ-eN-zoh"/>
  1351. </constraints>
  1352. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  1353. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1354. <nil key="highlightedColor"/>
  1355. </label>
  1356. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Fkc-Lk-5jB">
  1357. <rect key="frame" x="15" y="10" width="30" height="30"/>
  1358. <constraints>
  1359. <constraint firstAttribute="height" constant="30" id="BzR-8i-dR2"/>
  1360. <constraint firstAttribute="width" constant="30" id="NLz-kk-iSM"/>
  1361. </constraints>
  1362. <state key="normal" title="Edit"/>
  1363. <userDefinedRuntimeAttributes>
  1364. <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
  1365. <integer key="value" value="15"/>
  1366. </userDefinedRuntimeAttribute>
  1367. </userDefinedRuntimeAttributes>
  1368. <connections>
  1369. <action selector="onEditClick:" destination="oRS-pB-8jo" eventType="touchUpInside" id="MZc-jt-K0w"/>
  1370. </connections>
  1371. </button>
  1372. <button hidden="YES" opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="g1j-nr-vEW">
  1373. <rect key="frame" x="565" y="84" width="30" height="30"/>
  1374. <constraints>
  1375. <constraint firstAttribute="height" constant="30" id="Mnb-qo-2cV"/>
  1376. <constraint firstAttribute="width" constant="30" id="xPm-1Y-ius"/>
  1377. </constraints>
  1378. <state key="normal" backgroundImage="btn_email_order"/>
  1379. <connections>
  1380. <action selector="emailButtonClick:" destination="oRS-pB-8jo" eventType="touchUpInside" id="rLH-tN-CcJ"/>
  1381. </connections>
  1382. </button>
  1383. <button hidden="YES" opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="XBV-xN-bZf">
  1384. <rect key="frame" x="515" y="84" width="30" height="30"/>
  1385. <constraints>
  1386. <constraint firstAttribute="width" constant="30" id="Sh8-0k-Ps7"/>
  1387. <constraint firstAttribute="height" constant="30" id="lju-as-nWm"/>
  1388. </constraints>
  1389. <state key="normal" backgroundImage="btn_print_order"/>
  1390. <connections>
  1391. <action selector="printCartButtonClick:" destination="oRS-pB-8jo" eventType="touchUpInside" id="cpf-MK-TYN"/>
  1392. </connections>
  1393. </button>
  1394. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Price Type:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ubF-HT-6Rg">
  1395. <rect key="frame" x="15" y="5.5" width="85" height="21"/>
  1396. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1397. <nil key="textColor"/>
  1398. <nil key="highlightedColor"/>
  1399. </label>
  1400. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="0i6-zY-RD3">
  1401. <rect key="frame" x="110" y="1" width="100" height="30"/>
  1402. <constraints>
  1403. <constraint firstAttribute="width" constant="100" id="zeS-YR-DtO"/>
  1404. </constraints>
  1405. <state key="normal" title="WHSE"/>
  1406. <userDefinedRuntimeAttributes>
  1407. <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
  1408. <integer key="value" value="15"/>
  1409. </userDefinedRuntimeAttribute>
  1410. </userDefinedRuntimeAttributes>
  1411. <connections>
  1412. <action selector="onChangePrice:" destination="oRS-pB-8jo" eventType="touchUpInside" id="JO7-64-TIF"/>
  1413. </connections>
  1414. </button>
  1415. <button hidden="YES" opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="MkS-tT-MEd">
  1416. <rect key="frame" x="504.5" y="80.5" width="140.5" height="34.5"/>
  1417. <state key="normal" title="Button"/>
  1418. <buttonConfiguration key="configuration" style="tinted" title="Customer Type"/>
  1419. <connections>
  1420. <action selector="onScanChangeCustomerType:" destination="oRS-pB-8jo" eventType="touchUpInside" id="bfl-wr-XOX"/>
  1421. </connections>
  1422. </button>
  1423. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Surcharge:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="pfb-lq-2lh">
  1424. <rect key="frame" x="358" y="50.5" width="83" height="21"/>
  1425. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1426. <nil key="textColor"/>
  1427. <nil key="highlightedColor"/>
  1428. </label>
  1429. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Total Price:" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="y4m-c1-DFh">
  1430. <rect key="frame" x="557" y="50.5" width="110" height="21"/>
  1431. <constraints>
  1432. <constraint firstAttribute="width" constant="110" id="qxt-mz-uDs"/>
  1433. </constraints>
  1434. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1435. <nil key="textColor"/>
  1436. <nil key="highlightedColor"/>
  1437. </label>
  1438. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" text="" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Dd5-g0-8Ub" userLabel="val_surcharge">
  1439. <rect key="frame" x="449" y="51" width="100" height="20"/>
  1440. <constraints>
  1441. <constraint firstAttribute="width" constant="100" id="7mG-ez-dq8"/>
  1442. <constraint firstAttribute="height" constant="20" id="fuf-uc-YfB"/>
  1443. </constraints>
  1444. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1445. <nil key="textColor"/>
  1446. <nil key="highlightedColor"/>
  1447. </label>
  1448. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="DcE-qL-jJq">
  1449. <rect key="frame" x="449" y="30.5" width="100" height="20"/>
  1450. <constraints>
  1451. <constraint firstAttribute="height" constant="20" id="6he-ZG-y1N"/>
  1452. <constraint firstAttribute="width" constant="100" id="oco-zZ-8nm"/>
  1453. </constraints>
  1454. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  1455. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1456. <nil key="highlightedColor"/>
  1457. </label>
  1458. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="cPY-vO-WZ0">
  1459. <rect key="frame" x="15" y="46" width="149" height="30"/>
  1460. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  1461. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  1462. <state key="normal" title="Bulk Update Discount"/>
  1463. <connections>
  1464. <action selector="onBulkDiscount:" destination="oRS-pB-8jo" eventType="touchUpInside" id="dcf-oc-bXG"/>
  1465. </connections>
  1466. </button>
  1467. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Dx2-do-qf9" userLabel="val_total">
  1468. <rect key="frame" x="675" y="51" width="120" height="20"/>
  1469. <constraints>
  1470. <constraint firstAttribute="height" constant="20" id="APX-py-DFH"/>
  1471. <constraint firstAttribute="width" constant="120" id="SOB-al-OHg"/>
  1472. </constraints>
  1473. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1474. <nil key="textColor"/>
  1475. <nil key="highlightedColor"/>
  1476. </label>
  1477. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="sS1-r0-cLw" userLabel="val_qty">
  1478. <rect key="frame" x="449" y="6" width="100" height="20"/>
  1479. <constraints>
  1480. <constraint firstAttribute="height" constant="20" id="QK3-oa-eZO"/>
  1481. <constraint firstAttribute="width" constant="100" id="r2b-D2-1Q0"/>
  1482. </constraints>
  1483. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  1484. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1485. <nil key="highlightedColor"/>
  1486. </label>
  1487. </subviews>
  1488. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1489. <constraints>
  1490. <constraint firstItem="Dx2-do-qf9" firstAttribute="trailing" secondItem="8gM-ne-ChU" secondAttribute="trailing" id="08O-Yo-RZE"/>
  1491. <constraint firstAttribute="bottom" secondItem="MkS-tT-MEd" secondAttribute="bottom" constant="9" id="0NU-Hk-RyZ"/>
  1492. <constraint firstAttribute="trailing" secondItem="Prh-BQ-CkY" secondAttribute="trailing" constant="15" id="0by-01-SwR"/>
  1493. <constraint firstItem="3hY-G2-bAt" firstAttribute="leading" secondItem="g1j-nr-vEW" secondAttribute="trailing" constant="20" id="1Fc-Xk-22e"/>
  1494. <constraint firstItem="IpA-sg-I9m" firstAttribute="leading" secondItem="sS1-r0-cLw" secondAttribute="trailing" constant="8" id="22l-Oh-mf4"/>
  1495. <constraint firstItem="Prh-BQ-CkY" firstAttribute="leading" secondItem="MkS-tT-MEd" secondAttribute="trailing" constant="20" id="2Ei-HL-QLf"/>
  1496. <constraint firstAttribute="bottom" secondItem="EcM-RL-hry" secondAttribute="bottom" constant="10" id="2Z3-SC-CW7"/>
  1497. <constraint firstItem="cPY-vO-WZ0" firstAttribute="top" secondItem="Fkc-Lk-5jB" secondAttribute="bottom" constant="6" id="39l-Lx-DdN"/>
  1498. <constraint firstItem="Dd5-g0-8Ub" firstAttribute="leading" secondItem="DcE-qL-jJq" secondAttribute="leading" id="4Vk-Dj-Eth"/>
  1499. <constraint firstAttribute="height" constant="124" id="Adt-4W-5pA"/>
  1500. <constraint firstItem="UVG-on-4aI" firstAttribute="centerY" secondItem="lRq-Ow-fEk" secondAttribute="centerY" id="B2m-ln-4jb"/>
  1501. <constraint firstItem="y4m-c1-DFh" firstAttribute="centerY" secondItem="pfb-lq-2lh" secondAttribute="centerY" id="EVs-cY-a5D"/>
  1502. <constraint firstItem="3hY-G2-bAt" firstAttribute="bottom" secondItem="XBV-xN-bZf" secondAttribute="bottom" id="FJg-9B-RhK"/>
  1503. <constraint firstItem="IpA-sg-I9m" firstAttribute="trailing" secondItem="lRq-Ow-fEk" secondAttribute="trailing" id="H2R-oN-uow"/>
  1504. <constraint firstItem="Prh-BQ-CkY" firstAttribute="leading" secondItem="3hY-G2-bAt" secondAttribute="trailing" constant="20" id="JNx-Ee-BQv"/>
  1505. <constraint firstItem="XBV-xN-bZf" firstAttribute="leading" secondItem="jbJ-5K-Qgr" secondAttribute="trailing" constant="20" id="Jh4-cl-d5N"/>
  1506. <constraint firstItem="IpA-sg-I9m" firstAttribute="centerY" secondItem="sS1-r0-cLw" secondAttribute="centerY" id="LdZ-ad-eXE"/>
  1507. <constraint firstItem="g1j-nr-vEW" firstAttribute="leading" secondItem="XBV-xN-bZf" secondAttribute="trailing" constant="20" id="MD2-e8-SCH"/>
  1508. <constraint firstItem="Fkc-Lk-5jB" firstAttribute="leading" secondItem="G78-MN-iaL" secondAttribute="leading" constant="15" id="MEJ-ty-xl7"/>
  1509. <constraint firstItem="sS1-r0-cLw" firstAttribute="leading" secondItem="DdS-4S-1zx" secondAttribute="trailing" constant="8" id="NDK-Jt-80j"/>
  1510. <constraint firstItem="Fkc-Lk-5jB" firstAttribute="top" secondItem="G78-MN-iaL" secondAttribute="top" constant="10" id="R0N-8I-YGp"/>
  1511. <constraint firstItem="UVG-on-4aI" firstAttribute="top" secondItem="DdS-4S-1zx" secondAttribute="bottom" constant="4.5" id="R6c-F3-2yS"/>
  1512. <constraint firstItem="EcM-RL-hry" firstAttribute="leading" secondItem="G78-MN-iaL" secondAttribute="leading" constant="15" id="U1h-9m-98l"/>
  1513. <constraint firstItem="DdS-4S-1zx" firstAttribute="top" secondItem="G78-MN-iaL" secondAttribute="top" constant="6" id="U5d-cg-ZkS"/>
  1514. <constraint firstItem="8gM-ne-ChU" firstAttribute="centerY" secondItem="DdS-4S-1zx" secondAttribute="centerY" id="VRS-T5-fLs"/>
  1515. <constraint firstAttribute="trailing" secondItem="Dx2-do-qf9" secondAttribute="trailing" constant="15" id="Vy3-wo-mWp"/>
  1516. <constraint firstItem="UVG-on-4aI" firstAttribute="trailing" secondItem="DdS-4S-1zx" secondAttribute="trailing" id="XuP-kL-6zS"/>
  1517. <constraint firstItem="g1j-nr-vEW" firstAttribute="bottom" secondItem="XBV-xN-bZf" secondAttribute="bottom" id="ZAm-rp-exn"/>
  1518. <constraint firstItem="IpA-sg-I9m" firstAttribute="centerY" secondItem="DdS-4S-1zx" secondAttribute="centerY" id="aHz-vB-UrV"/>
  1519. <constraint firstItem="Dx2-do-qf9" firstAttribute="leading" secondItem="y4m-c1-DFh" secondAttribute="trailing" constant="8" id="bE6-ie-m0t"/>
  1520. <constraint firstItem="DcE-qL-jJq" firstAttribute="centerY" secondItem="UVG-on-4aI" secondAttribute="centerY" id="blJ-hb-quR"/>
  1521. <constraint firstItem="0i6-zY-RD3" firstAttribute="leading" secondItem="ubF-HT-6Rg" secondAttribute="trailing" constant="10" id="cY6-Bd-slj"/>
  1522. <constraint firstAttribute="bottom" secondItem="Prh-BQ-CkY" secondAttribute="bottom" constant="10" id="d7A-oO-Jo6"/>
  1523. <constraint firstItem="Dx2-do-qf9" firstAttribute="leading" secondItem="eiF-G7-95R" secondAttribute="leading" id="eFV-uG-Wd0"/>
  1524. <constraint firstItem="ubF-HT-6Rg" firstAttribute="leading" secondItem="EcM-RL-hry" secondAttribute="leading" id="eRY-Ny-QmT"/>
  1525. <constraint firstItem="Prh-BQ-CkY" firstAttribute="bottom" secondItem="XBV-xN-bZf" secondAttribute="bottom" id="eSI-6t-C2i"/>
  1526. <constraint firstAttribute="trailing" secondItem="eiF-G7-95R" secondAttribute="trailing" constant="15" id="hV4-qm-7cs"/>
  1527. <constraint firstItem="jbJ-5K-Qgr" firstAttribute="firstBaseline" secondItem="EcM-RL-hry" secondAttribute="firstBaseline" id="hvb-Hs-p0i"/>
  1528. <constraint firstItem="Dd5-g0-8Ub" firstAttribute="centerY" secondItem="pfb-lq-2lh" secondAttribute="centerY" id="ioy-HG-0Am"/>
  1529. <constraint firstItem="UVG-on-4aI" firstAttribute="trailing" secondItem="pfb-lq-2lh" secondAttribute="trailing" id="kGy-hS-5hN"/>
  1530. <constraint firstItem="jbJ-5K-Qgr" firstAttribute="leading" secondItem="EcM-RL-hry" secondAttribute="trailing" id="o2n-hY-mEQ"/>
  1531. <constraint firstItem="DcE-qL-jJq" firstAttribute="leading" secondItem="UVG-on-4aI" secondAttribute="trailing" constant="8" id="ocO-lr-ngG"/>
  1532. <constraint firstItem="0i6-zY-RD3" firstAttribute="centerY" secondItem="ubF-HT-6Rg" secondAttribute="centerY" id="odm-FA-KLw"/>
  1533. <constraint firstItem="pfb-lq-2lh" firstAttribute="centerY" secondItem="cPY-vO-WZ0" secondAttribute="centerY" id="q4F-Jh-ZhE"/>
  1534. <constraint firstItem="eiF-G7-95R" firstAttribute="centerY" secondItem="lRq-Ow-fEk" secondAttribute="centerY" id="rll-bI-fIu"/>
  1535. <constraint firstItem="EcM-RL-hry" firstAttribute="leading" secondItem="cPY-vO-WZ0" secondAttribute="leading" id="rsP-6m-uiG"/>
  1536. <constraint firstItem="8gM-ne-ChU" firstAttribute="leading" secondItem="IpA-sg-I9m" secondAttribute="trailing" constant="8" id="uBl-rg-L3q"/>
  1537. <constraint firstItem="Dx2-do-qf9" firstAttribute="centerY" secondItem="y4m-c1-DFh" secondAttribute="centerY" id="vWN-L3-Tqt"/>
  1538. <constraint firstItem="DdS-4S-1zx" firstAttribute="centerY" secondItem="ubF-HT-6Rg" secondAttribute="centerY" id="xuh-fD-gA1"/>
  1539. </constraints>
  1540. </view>
  1541. </subviews>
  1542. <viewLayoutGuide key="safeArea" id="Rgg-vQ-7HT"/>
  1543. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1544. <constraints>
  1545. <constraint firstItem="G78-MN-iaL" firstAttribute="leading" secondItem="Rgg-vQ-7HT" secondAttribute="leading" id="Csg-gU-nMR"/>
  1546. <constraint firstItem="Rxh-S5-42X" firstAttribute="trailing" secondItem="Rgg-vQ-7HT" secondAttribute="trailing" id="CzP-Jh-hTJ"/>
  1547. <constraint firstItem="G78-MN-iaL" firstAttribute="trailing" secondItem="Rgg-vQ-7HT" secondAttribute="trailing" id="PsF-zy-5j9"/>
  1548. <constraint firstItem="RmD-zr-fSi" firstAttribute="top" secondItem="Nru-ZY-H46" secondAttribute="top" constant="40" id="UKn-4r-EAA"/>
  1549. <constraint firstAttribute="bottom" secondItem="Rxh-S5-42X" secondAttribute="bottom" id="VEG-dD-rtz"/>
  1550. <constraint firstItem="RmD-zr-fSi" firstAttribute="trailing" secondItem="Rgg-vQ-7HT" secondAttribute="trailing" id="dlJ-VB-4yv"/>
  1551. <constraint firstAttribute="bottom" secondItem="G78-MN-iaL" secondAttribute="bottom" id="hQL-5t-ea5"/>
  1552. <constraint firstItem="G78-MN-iaL" firstAttribute="top" secondItem="RmD-zr-fSi" secondAttribute="bottom" id="i1b-ep-UGk"/>
  1553. <constraint firstItem="Rxh-S5-42X" firstAttribute="leading" secondItem="Rgg-vQ-7HT" secondAttribute="leading" id="uIx-NR-Elx"/>
  1554. <constraint firstItem="RmD-zr-fSi" firstAttribute="leading" secondItem="Rgg-vQ-7HT" secondAttribute="leading" id="wYp-iY-BFK"/>
  1555. </constraints>
  1556. </view>
  1557. <connections>
  1558. <outlet property="btnBulkDiscount" destination="cPY-vO-WZ0" id="dTl-Ta-8AA"/>
  1559. <outlet property="btnPrice" destination="0i6-zY-RD3" id="ecM-tU-WKg"/>
  1560. <outlet property="btn_addwish" destination="kpx-Gm-qig" id="Ot0-Qi-7Hn"/>
  1561. <outlet property="btn_delete" destination="XVs-gw-r3X" id="xv7-gz-evt"/>
  1562. <outlet property="btn_edit_select" destination="1Dp-sO-suu" id="piX-OA-FpF"/>
  1563. <outlet property="cancelOrderButton" destination="3hY-G2-bAt" id="Ahl-gr-36S"/>
  1564. <outlet property="cartItemView" destination="RmD-zr-fSi" id="grc-gh-lJO"/>
  1565. <outlet property="editButton" destination="Fkc-Lk-5jB" id="F77-EH-va1"/>
  1566. <outlet property="emailButton" destination="g1j-nr-vEW" id="FhI-0v-CCx"/>
  1567. <outlet property="itemListTable" destination="3W5-s1-uRe" id="dc7-kL-vlD"/>
  1568. <outlet property="labelScanSubtotal" destination="eiF-G7-95R" id="CHc-sE-d6X"/>
  1569. <outlet property="labelTotalPrice" destination="Dx2-do-qf9" id="oSu-rJ-PtB"/>
  1570. <outlet property="labelTotalSurcharge" destination="Dd5-g0-8Ub" id="Sc1-ba-EIu"/>
  1571. <outlet property="labelTotalcuft" destination="IpA-sg-I9m" id="gvT-Bh-Cug"/>
  1572. <outlet property="label_cuft" destination="8gM-ne-ChU" id="Ovj-aG-Fj6"/>
  1573. <outlet property="label_items" destination="DcE-qL-jJq" id="hBY-Ws-0Sw"/>
  1574. <outlet property="label_net_err" destination="Rac-Ya-aVK" id="65D-vu-uGA"/>
  1575. <outlet property="label_notes" destination="jbJ-5K-Qgr" id="frI-Qt-0d3"/>
  1576. <outlet property="label_qty" destination="sS1-r0-cLw" id="LNQ-CK-pHN"/>
  1577. <outlet property="mum" destination="lpm-Ch-BkE" id="vy3-7s-wna"/>
  1578. <outlet property="placeOrderButton" destination="Prh-BQ-CkY" id="mzw-sB-X8J"/>
  1579. <outlet property="printButton" destination="XBV-xN-bZf" id="2jT-L9-Rmr"/>
  1580. <outlet property="toolbar" destination="Rxh-S5-42X" id="QjP-2w-fsT"/>
  1581. <outlet property="toolpanel" destination="G78-MN-iaL" id="vRO-fo-YfC"/>
  1582. <outlet property="valuecuft" destination="8gM-ne-ChU" id="Oxp-RD-uxc"/>
  1583. </connections>
  1584. </viewController>
  1585. <placeholder placeholderIdentifier="IBFirstResponder" id="SMC-LY-nXG" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1586. </objects>
  1587. <point key="canvasLocation" x="1799.9999999999998" y="609.44444444444446"/>
  1588. </scene>
  1589. <!--Scan Search View Controller-->
  1590. <scene sceneID="BMt-94-Jmb">
  1591. <objects>
  1592. <viewController storyboardIdentifier="ScanSearchViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="lUM-3R-fk4" customClass="ScanSearchViewController" sceneMemberID="viewController">
  1593. <view key="view" contentMode="scaleToFill" id="0fB-og-gMM">
  1594. <rect key="frame" x="0.0" y="0.0" width="810" height="1080"/>
  1595. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1596. <subviews>
  1597. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="Zxn-QV-WBs">
  1598. <rect key="frame" x="0.0" y="64" width="810" height="1016"/>
  1599. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  1600. <prototypes>
  1601. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" restorationIdentifier="ScanListCell" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ScanListCell" rowHeight="166" id="RBD-TT-DqV" customClass="ScanListCell">
  1602. <rect key="frame" x="0.0" y="50.5" width="810" height="166"/>
  1603. <autoresizingMask key="autoresizingMask"/>
  1604. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="RBD-TT-DqV" translatesAutoresizingMaskIntoConstraints="NO" id="h6v-P5-Y6J">
  1605. <rect key="frame" x="0.0" y="0.0" width="810" height="166"/>
  1606. <subviews>
  1607. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="252" verticalHuggingPriority="251" text="Model" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ToU-Mo-Rx3" userLabel="item label">
  1608. <rect key="frame" x="16" y="13" width="50.5" height="21"/>
  1609. <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
  1610. <nil key="textColor"/>
  1611. <nil key="highlightedColor"/>
  1612. </label>
  1613. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="252" verticalHuggingPriority="251" textAlignment="natural" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="H92-P3-tCf" userLabel="description">
  1614. <rect key="frame" x="16" y="45.5" width="778" height="54.5"/>
  1615. <string key="text">line 1
  1616. line 2
  1617. line 3</string>
  1618. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  1619. <nil key="textColor"/>
  1620. <nil key="highlightedColor"/>
  1621. </label>
  1622. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" verticalHuggingPriority="251" text="42.8 x 68.3 x 30.5H" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="CXZ-rU-fI4" userLabel="item label">
  1623. <rect key="frame" x="76.5" y="14.5" width="464.5" height="18"/>
  1624. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  1625. <nil key="textColor"/>
  1626. <nil key="highlightedColor"/>
  1627. </label>
  1628. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Stock:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="yG2-aU-fHH">
  1629. <rect key="frame" x="571" y="13" width="48.5" height="21"/>
  1630. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1631. <nil key="textColor"/>
  1632. <nil key="highlightedColor"/>
  1633. </label>
  1634. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="LEh-OL-gzO">
  1635. <rect key="frame" x="685.5" y="6.5" width="108.5" height="34"/>
  1636. <constraints>
  1637. <constraint firstAttribute="height" constant="34" id="THg-oZ-qqR"/>
  1638. <constraint firstAttribute="width" constant="108.5" id="X0W-EQ-UiB"/>
  1639. </constraints>
  1640. <state key="normal" title="Button"/>
  1641. <buttonConfiguration key="configuration" style="plain" title="Add to cart"/>
  1642. <connections>
  1643. <action selector="onAddToCart:" destination="RBD-TT-DqV" eventType="touchUpInside" id="rkh-1Q-1AH"/>
  1644. </connections>
  1645. </button>
  1646. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Qpi-vL-Zo9" userLabel="bottom line">
  1647. <rect key="frame" x="0.0" y="164" width="810" height="2"/>
  1648. <color key="backgroundColor" systemColor="systemGrayColor"/>
  1649. <constraints>
  1650. <constraint firstAttribute="height" constant="2" id="cgm-ea-XuX"/>
  1651. </constraints>
  1652. </view>
  1653. <scrollView contentMode="scaleToFill" showsVerticalScrollIndicator="NO" contentInsetAdjustmentBehavior="never" translatesAutoresizingMaskIntoConstraints="NO" id="sv1-pr-ice">
  1654. <rect key="frame" x="16" y="108" width="778" height="48"/>
  1655. </scrollView>
  1656. <textField opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="248" contentHorizontalAlignment="center" contentVerticalAlignment="center" text="1" borderStyle="roundedRect" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="CiU-Ny-JZk">
  1657. <rect key="frame" x="627.5" y="6.5" width="50" height="34"/>
  1658. <constraints>
  1659. <constraint firstAttribute="width" constant="50" id="jWi-h1-6Sz"/>
  1660. </constraints>
  1661. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  1662. <textInputTraits key="textInputTraits" keyboardType="numbersAndPunctuation"/>
  1663. </textField>
  1664. </subviews>
  1665. <constraints>
  1666. <constraint firstItem="LEh-OL-gzO" firstAttribute="centerY" secondItem="yG2-aU-fHH" secondAttribute="centerY" id="8OT-bM-Vzv"/>
  1667. <constraint firstAttribute="trailing" secondItem="LEh-OL-gzO" secondAttribute="trailing" constant="16" id="HfR-Cw-wP1"/>
  1668. <constraint firstAttribute="bottom" secondItem="Qpi-vL-Zo9" secondAttribute="bottom" id="Jg4-ge-Odt"/>
  1669. <constraint firstItem="CXZ-rU-fI4" firstAttribute="centerY" secondItem="ToU-Mo-Rx3" secondAttribute="centerY" id="P1J-ap-Uu3"/>
  1670. <constraint firstItem="LEh-OL-gzO" firstAttribute="trailing" secondItem="H92-P3-tCf" secondAttribute="trailing" id="Pw3-x1-Dk2"/>
  1671. <constraint firstItem="Qpi-vL-Zo9" firstAttribute="leading" secondItem="h6v-P5-Y6J" secondAttribute="leading" id="UJk-sg-ofv"/>
  1672. <constraint firstItem="yG2-aU-fHH" firstAttribute="leading" secondItem="CXZ-rU-fI4" secondAttribute="trailing" constant="30" id="XOs-n1-ApE"/>
  1673. <constraint firstItem="LEh-OL-gzO" firstAttribute="leading" secondItem="CiU-Ny-JZk" secondAttribute="trailing" constant="8" id="YS4-gK-1dh"/>
  1674. <constraint firstItem="CiU-Ny-JZk" firstAttribute="centerY" secondItem="ToU-Mo-Rx3" secondAttribute="centerY" id="aa3-OU-133"/>
  1675. <constraint firstItem="ToU-Mo-Rx3" firstAttribute="top" secondItem="h6v-P5-Y6J" secondAttribute="top" constant="13" id="b8M-cn-QtL"/>
  1676. <constraint firstItem="H92-P3-tCf" firstAttribute="top" secondItem="LEh-OL-gzO" secondAttribute="bottom" constant="5" id="euM-1a-bUh"/>
  1677. <constraint firstItem="H92-P3-tCf" firstAttribute="leading" secondItem="ToU-Mo-Rx3" secondAttribute="leading" id="hSy-MA-lRZ"/>
  1678. <constraint firstAttribute="trailing" secondItem="Qpi-vL-Zo9" secondAttribute="trailing" id="i8c-Yg-Qyb"/>
  1679. <constraint firstItem="ToU-Mo-Rx3" firstAttribute="leading" secondItem="h6v-P5-Y6J" secondAttribute="leading" constant="16" id="kXQ-AV-Tkp"/>
  1680. <constraint firstItem="sv1-pr-ice" firstAttribute="top" secondItem="H92-P3-tCf" secondAttribute="bottom" constant="8" id="nsv-c1-top"/>
  1681. <constraint firstItem="sv1-pr-ice" firstAttribute="leading" secondItem="h6v-P5-Y6J" secondAttribute="leading" constant="16" id="nsv-c2-lft"/>
  1682. <constraint firstAttribute="trailing" secondItem="sv1-pr-ice" secondAttribute="trailing" constant="16" id="nsv-c3-trl"/>
  1683. <constraint firstItem="sv1-pr-ice" firstAttribute="height" constant="48" id="nsv-c4-hgt"/>
  1684. <constraint firstItem="Qpi-vL-Zo9" firstAttribute="top" secondItem="sv1-pr-ice" secondAttribute="bottom" constant="8" id="nsv-c5-btm"/>
  1685. <constraint firstItem="LEh-OL-gzO" firstAttribute="centerY" secondItem="ToU-Mo-Rx3" secondAttribute="centerY" id="uXH-JK-tUT"/>
  1686. <constraint firstItem="CiU-Ny-JZk" firstAttribute="leading" secondItem="yG2-aU-fHH" secondAttribute="trailing" constant="8" id="whL-np-zIK"/>
  1687. <constraint firstItem="CXZ-rU-fI4" firstAttribute="leading" secondItem="ToU-Mo-Rx3" secondAttribute="trailing" constant="10" id="xBH-HB-4VK"/>
  1688. </constraints>
  1689. </tableViewCellContentView>
  1690. <constraints>
  1691. <constraint firstItem="h6v-P5-Y6J" firstAttribute="leading" secondItem="RBD-TT-DqV" secondAttribute="leading" id="7nR-WY-aaD"/>
  1692. <constraint firstItem="h6v-P5-Y6J" firstAttribute="top" secondItem="RBD-TT-DqV" secondAttribute="top" id="MBy-89-eGL"/>
  1693. <constraint firstAttribute="trailing" secondItem="h6v-P5-Y6J" secondAttribute="trailing" id="ZqG-Al-qyp"/>
  1694. <constraint firstAttribute="bottom" secondItem="h6v-P5-Y6J" secondAttribute="bottom" id="kxl-8Q-8FR"/>
  1695. </constraints>
  1696. <connections>
  1697. <outlet property="labelDescription" destination="H92-P3-tCf" id="y8Y-Nd-qF3"/>
  1698. <outlet property="labelDimension" destination="CXZ-rU-fI4" id="8jf-KN-H7H"/>
  1699. <outlet property="labelModel" destination="ToU-Mo-Rx3" id="DrI-ba-gvb"/>
  1700. <outlet property="labelStock" destination="yG2-aU-fHH" id="zrg-82-hkh"/>
  1701. <outlet property="priceScrollView" destination="sv1-pr-ice" id="psv-01-out"/>
  1702. <outlet property="qtyField" destination="CiU-Ny-JZk" id="WcC-WU-dqM"/>
  1703. </connections>
  1704. </tableViewCell>
  1705. </prototypes>
  1706. <connections>
  1707. <outlet property="dataSource" destination="lUM-3R-fk4" id="SeB-wE-d8I"/>
  1708. <outlet property="delegate" destination="lUM-3R-fk4" id="5Hl-c5-5St"/>
  1709. </connections>
  1710. </tableView>
  1711. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="6GX-om-hTb" userLabel="searchbar">
  1712. <rect key="frame" x="0.0" y="20" width="810" height="44"/>
  1713. <subviews>
  1714. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="4ma-Om-aYp">
  1715. <rect key="frame" x="0.0" y="4.5" width="146" height="35"/>
  1716. <state key="normal" title="Button"/>
  1717. <buttonConfiguration key="configuration" style="plain" title="Sync Availability"/>
  1718. <connections>
  1719. <action selector="onUpdateStock:" destination="lUM-3R-fk4" eventType="touchUpInside" id="DME-yR-0QG"/>
  1720. <action selector="onUpdateStock:" destination="p2v-UD-wPL" eventType="touchUpInside" id="cns-jN-A3D"/>
  1721. </connections>
  1722. </button>
  1723. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Last Update Unknown" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="k4X-6G-CnI">
  1724. <rect key="frame" x="176" y="11.5" width="169" height="21"/>
  1725. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1726. <nil key="textColor"/>
  1727. <nil key="highlightedColor"/>
  1728. </label>
  1729. <searchBar contentMode="redraw" searchBarStyle="minimal" placeholder="Enter keyword" translatesAutoresizingMaskIntoConstraints="NO" id="XiM-yi-Oqa">
  1730. <rect key="frame" x="555" y="0.0" width="240" height="44"/>
  1731. <constraints>
  1732. <constraint firstAttribute="width" constant="240" id="6hL-oJ-3XL"/>
  1733. <constraint firstAttribute="height" constant="44" id="EnJ-0T-fkB"/>
  1734. </constraints>
  1735. <textInputTraits key="textInputTraits"/>
  1736. <connections>
  1737. <outlet property="delegate" destination="lUM-3R-fk4" id="yNI-Ub-tGq"/>
  1738. </connections>
  1739. </searchBar>
  1740. </subviews>
  1741. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1742. <constraints>
  1743. <constraint firstItem="k4X-6G-CnI" firstAttribute="leading" secondItem="4ma-Om-aYp" secondAttribute="trailing" constant="30" id="7N4-FO-rVO"/>
  1744. <constraint firstAttribute="height" constant="44" id="Jsa-vZ-v8r"/>
  1745. <constraint firstAttribute="trailing" secondItem="XiM-yi-Oqa" secondAttribute="trailing" constant="15" id="RcI-eJ-h3J"/>
  1746. <constraint firstItem="k4X-6G-CnI" firstAttribute="centerY" secondItem="4ma-Om-aYp" secondAttribute="centerY" id="STh-gi-m0K"/>
  1747. <constraint firstItem="XiM-yi-Oqa" firstAttribute="centerY" secondItem="6GX-om-hTb" secondAttribute="centerY" id="bHO-nA-5Hc"/>
  1748. <constraint firstItem="XiM-yi-Oqa" firstAttribute="centerY" secondItem="4ma-Om-aYp" secondAttribute="centerY" id="oCq-4i-OZP"/>
  1749. </constraints>
  1750. </view>
  1751. </subviews>
  1752. <viewLayoutGuide key="safeArea" id="Tvp-1a-lIR"/>
  1753. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  1754. <constraints>
  1755. <constraint firstItem="Tvp-1a-lIR" firstAttribute="bottom" secondItem="Zxn-QV-WBs" secondAttribute="bottom" id="8Bl-lK-rgd"/>
  1756. <constraint firstItem="4ma-Om-aYp" firstAttribute="leading" secondItem="Zxn-QV-WBs" secondAttribute="leading" id="T3Z-tw-rVJ"/>
  1757. <constraint firstItem="6GX-om-hTb" firstAttribute="leading" secondItem="Tvp-1a-lIR" secondAttribute="leading" id="WAy-la-TKm"/>
  1758. <constraint firstItem="Tvp-1a-lIR" firstAttribute="trailing" secondItem="Zxn-QV-WBs" secondAttribute="trailing" id="WF3-hF-mle"/>
  1759. <constraint firstItem="Zxn-QV-WBs" firstAttribute="leading" secondItem="Tvp-1a-lIR" secondAttribute="leading" id="afS-hg-asP"/>
  1760. <constraint firstItem="Zxn-QV-WBs" firstAttribute="top" secondItem="6GX-om-hTb" secondAttribute="bottom" id="eL1-cg-g69"/>
  1761. <constraint firstItem="Tvp-1a-lIR" firstAttribute="trailing" secondItem="6GX-om-hTb" secondAttribute="trailing" id="ild-BP-4V2"/>
  1762. <constraint firstItem="6GX-om-hTb" firstAttribute="top" secondItem="Tvp-1a-lIR" secondAttribute="top" id="nfF-ch-ag6"/>
  1763. </constraints>
  1764. </view>
  1765. <connections>
  1766. <outlet property="headerView" destination="6GX-om-hTb" id="Iqv-GJ-Dqy"/>
  1767. <outlet property="labelStock" destination="k4X-6G-CnI" id="0mp-Kg-0Jg"/>
  1768. <outlet property="searchBar" destination="XiM-yi-Oqa" id="NvG-2e-RVh"/>
  1769. <outlet property="tableview" destination="Zxn-QV-WBs" id="D9e-aP-h09"/>
  1770. </connections>
  1771. </viewController>
  1772. <placeholder placeholderIdentifier="IBFirstResponder" id="SgX-3r-9B0" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  1773. </objects>
  1774. <point key="canvasLocation" x="-2230" y="768"/>
  1775. </scene>
  1776. <!--Setup Server-->
  1777. <scene sceneID="RBm-Dh-AFt">
  1778. <objects>
  1779. <viewController storyboardIdentifier="SetupServerViewController" title="Setup Server" useStoryboardIdentifierAsRestorationIdentifier="YES" id="90X-Sr-PW7" customClass="SetupServerViewController" sceneMemberID="viewController">
  1780. <view key="view" contentMode="scaleToFill" id="uQc-Lh-Rs6">
  1781. <rect key="frame" x="0.0" y="0.0" width="810" height="1080"/>
  1782. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1783. <subviews>
  1784. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="server_bg" translatesAutoresizingMaskIntoConstraints="NO" id="Fch-tn-bXo">
  1785. <rect key="frame" x="0.0" y="0.0" width="810" height="1080"/>
  1786. </imageView>
  1787. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="c9q-te-KHg">
  1788. <rect key="frame" x="215" y="400" width="380" height="260"/>
  1789. <subviews>
  1790. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Homelegance Warehouse Location:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="5Vv-Np-lYi">
  1791. <rect key="frame" x="24" y="16" width="332" height="24"/>
  1792. <fontDescription key="fontDescription" type="boldSystem" pointSize="20"/>
  1793. <nil key="textColor"/>
  1794. <nil key="highlightedColor"/>
  1795. </label>
  1796. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="pIX-gE-l1R">
  1797. <rect key="frame" x="121.5" y="56" width="137.5" height="34.5"/>
  1798. <state key="normal" title="Button"/>
  1799. <buttonConfiguration key="configuration" style="plain" title="Select a server"/>
  1800. <connections>
  1801. <action selector="onSelectServer:" destination="90X-Sr-PW7" eventType="touchUpInside" id="z7C-c4-hEC"/>
  1802. </connections>
  1803. </button>
  1804. <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="Password" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="AcX-Su-5k5">
  1805. <rect key="frame" x="24" y="106.5" width="332" height="34"/>
  1806. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  1807. <textInputTraits key="textInputTraits" secureTextEntry="YES"/>
  1808. </textField>
  1809. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="cO1-GO-FNL">
  1810. <rect key="frame" x="295" y="156.5" width="61" height="34.5"/>
  1811. <state key="normal" title="Button"/>
  1812. <buttonConfiguration key="configuration" style="plain" title="Save"/>
  1813. <connections>
  1814. <action selector="onSaveClick:" destination="90X-Sr-PW7" eventType="touchUpInside" id="fjn-o6-gyF"/>
  1815. </connections>
  1816. </button>
  1817. <button hidden="YES" opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="ogl-HO-s1X">
  1818. <rect key="frame" x="279.5" y="223" width="76.5" height="34.5"/>
  1819. <state key="normal" title="Button"/>
  1820. <buttonConfiguration key="configuration" style="plain" title="Cancel"/>
  1821. <connections>
  1822. <action selector="onCancelClick:" destination="90X-Sr-PW7" eventType="touchUpInside" id="G4J-VR-nep"/>
  1823. </connections>
  1824. </button>
  1825. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="j4q-WP-XaC">
  1826. <rect key="frame" x="24" y="156.5" width="114.5" height="34.5"/>
  1827. <state key="normal" title="Button"/>
  1828. <buttonConfiguration key="configuration" style="plain" title="Refresh List"/>
  1829. <connections>
  1830. <action selector="onreloadList:" destination="90X-Sr-PW7" eventType="touchUpInside" id="sqE-Vm-FnM"/>
  1831. </connections>
  1832. </button>
  1833. </subviews>
  1834. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  1835. <constraints>
  1836. <constraint firstItem="5Vv-Np-lYi" firstAttribute="top" secondItem="c9q-te-KHg" secondAttribute="top" constant="16" id="ARj-my-hwI"/>
  1837. <constraint firstAttribute="height" constant="260" id="BJ3-kB-3bf"/>
  1838. <constraint firstItem="cO1-GO-FNL" firstAttribute="top" secondItem="AcX-Su-5k5" secondAttribute="bottom" constant="16" id="Oh4-1c-KcK"/>
  1839. <constraint firstItem="5Vv-Np-lYi" firstAttribute="centerX" secondItem="c9q-te-KHg" secondAttribute="centerX" id="R1y-Bw-fin"/>
  1840. <constraint firstItem="AcX-Su-5k5" firstAttribute="width" secondItem="5Vv-Np-lYi" secondAttribute="width" id="SC5-oR-IPR"/>
  1841. <constraint firstItem="cO1-GO-FNL" firstAttribute="trailing" secondItem="AcX-Su-5k5" secondAttribute="trailing" id="SXM-gU-yBR"/>
  1842. <constraint firstItem="AcX-Su-5k5" firstAttribute="top" secondItem="pIX-gE-l1R" secondAttribute="bottom" constant="16" id="Xcp-3c-nhg"/>
  1843. <constraint firstItem="cO1-GO-FNL" firstAttribute="centerY" secondItem="j4q-WP-XaC" secondAttribute="centerY" id="XxH-C6-aMa"/>
  1844. <constraint firstItem="pIX-gE-l1R" firstAttribute="top" secondItem="5Vv-Np-lYi" secondAttribute="bottom" constant="16" id="fSK-Dq-0A0"/>
  1845. <constraint firstItem="cO1-GO-FNL" firstAttribute="trailing" secondItem="ogl-HO-s1X" secondAttribute="trailing" id="h2C-fp-AmP"/>
  1846. <constraint firstItem="j4q-WP-XaC" firstAttribute="leading" secondItem="AcX-Su-5k5" secondAttribute="leading" id="iAe-VM-tsW"/>
  1847. <constraint firstItem="ogl-HO-s1X" firstAttribute="top" secondItem="cO1-GO-FNL" secondAttribute="bottom" constant="32" id="ibL-3W-jfL"/>
  1848. <constraint firstAttribute="width" constant="380" id="lEF-5e-SdY"/>
  1849. <constraint firstItem="AcX-Su-5k5" firstAttribute="centerX" secondItem="c9q-te-KHg" secondAttribute="centerX" id="pZ7-1p-8Yu"/>
  1850. <constraint firstItem="pIX-gE-l1R" firstAttribute="centerX" secondItem="c9q-te-KHg" secondAttribute="centerX" id="qrH-gh-mnJ"/>
  1851. </constraints>
  1852. </view>
  1853. </subviews>
  1854. <viewLayoutGuide key="safeArea" id="m60-Iy-Zef"/>
  1855. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  1856. <constraints>
  1857. <constraint firstItem="c9q-te-KHg" firstAttribute="centerX" secondItem="m60-Iy-Zef" secondAttribute="centerX" id="5py-rA-UQR"/>
  1858. <constraint firstItem="Fch-tn-bXo" firstAttribute="top" secondItem="uQc-Lh-Rs6" secondAttribute="top" id="SfD-fe-Ur7"/>
  1859. <constraint firstItem="c9q-te-KHg" firstAttribute="centerY" secondItem="uQc-Lh-Rs6" secondAttribute="centerY" priority="750" id="dWN-tt-I2P"/>
  1860. <constraint firstItem="Fch-tn-bXo" firstAttribute="leading" secondItem="m60-Iy-Zef" secondAttribute="leading" id="ecu-14-4j6"/>
  1861. <constraint firstItem="m60-Iy-Zef" firstAttribute="bottom" relation="greaterThanOrEqual" secondItem="c9q-te-KHg" secondAttribute="bottom" constant="420" id="qJH-sf-KLA"/>
  1862. <constraint firstAttribute="bottom" secondItem="Fch-tn-bXo" secondAttribute="bottom" id="rSE-qk-tFf"/>
  1863. <constraint firstItem="m60-Iy-Zef" firstAttribute="trailing" secondItem="Fch-tn-bXo" secondAttribute="trailing" id="xc6-v5-vy7"/>
  1864. </constraints>
  1865. </view>
  1866. <connections>
  1867. <outlet property="btnCancel" destination="ogl-HO-s1X" id="Ms1-qy-7V3"/>
  1868. <outlet property="btnSelectServer" destination="pIX-gE-l1R" id="PbD-qc-Ic9"/>
  1869. <outlet property="editPassword" destination="AcX-Su-5k5" id="2tu-2E-xen"/>
  1870. </connections>
  1871. </viewController>
  1872. <placeholder placeholderIdentifier="IBFirstResponder" id="eeH-R3-pfb" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  1873. </objects>
  1874. <point key="canvasLocation" x="-1426.6129032258063" y="777.6699029126213"/>
  1875. </scene>
  1876. <!--Scan Server List View Controller-->
  1877. <scene sceneID="4sh-Im-wPt">
  1878. <objects>
  1879. <viewController storyboardIdentifier="ScanServerListViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="5Xm-sJ-ELC" customClass="ScanServerListViewController" sceneMemberID="viewController">
  1880. <view key="view" contentMode="scaleToFill" id="2i6-bB-uDo">
  1881. <rect key="frame" x="0.0" y="0.0" width="810" height="1080"/>
  1882. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1883. <subviews>
  1884. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="AOw-ME-gdy">
  1885. <rect key="frame" x="0.0" y="20" width="810" height="1060"/>
  1886. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  1887. <prototypes>
  1888. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="cell" id="hO3-NR-b05">
  1889. <rect key="frame" x="0.0" y="50.5" width="810" height="52"/>
  1890. <autoresizingMask key="autoresizingMask"/>
  1891. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="hO3-NR-b05" id="jg4-JD-jFQ">
  1892. <rect key="frame" x="0.0" y="0.0" width="810" height="52"/>
  1893. <autoresizingMask key="autoresizingMask"/>
  1894. </tableViewCellContentView>
  1895. </tableViewCell>
  1896. </prototypes>
  1897. <connections>
  1898. <outlet property="dataSource" destination="5Xm-sJ-ELC" id="aGz-H2-4l4"/>
  1899. <outlet property="delegate" destination="5Xm-sJ-ELC" id="kc1-7Z-34e"/>
  1900. </connections>
  1901. </tableView>
  1902. </subviews>
  1903. <viewLayoutGuide key="safeArea" id="JPn-WP-YuD"/>
  1904. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  1905. <constraints>
  1906. <constraint firstItem="AOw-ME-gdy" firstAttribute="leading" secondItem="JPn-WP-YuD" secondAttribute="leading" id="Hv8-2s-lzO"/>
  1907. <constraint firstItem="JPn-WP-YuD" firstAttribute="bottom" secondItem="AOw-ME-gdy" secondAttribute="bottom" id="f2E-4b-Ds8"/>
  1908. <constraint firstItem="AOw-ME-gdy" firstAttribute="top" secondItem="JPn-WP-YuD" secondAttribute="top" id="pN1-dS-LZR"/>
  1909. <constraint firstItem="JPn-WP-YuD" firstAttribute="trailing" secondItem="AOw-ME-gdy" secondAttribute="trailing" id="qsG-wx-8MN"/>
  1910. </constraints>
  1911. </view>
  1912. </viewController>
  1913. <placeholder placeholderIdentifier="IBFirstResponder" id="Po2-Ch-srx" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  1914. </objects>
  1915. <point key="canvasLocation" x="-2868" y="716"/>
  1916. </scene>
  1917. <!--Price Group List View Controller-->
  1918. <scene sceneID="Oum-wJ-fMD">
  1919. <objects>
  1920. <viewController storyboardIdentifier="PriceGroupListViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="Q9h-sX-dBy" customClass="PriceGroupListViewController" sceneMemberID="viewController">
  1921. <view key="view" contentMode="scaleToFill" id="heg-1s-u69">
  1922. <rect key="frame" x="0.0" y="0.0" width="810" height="1080"/>
  1923. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1924. <subviews>
  1925. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="P62-AP-fR0">
  1926. <rect key="frame" x="0.0" y="74" width="810" height="1006"/>
  1927. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  1928. <prototypes>
  1929. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="cell" id="k1t-dv-O2g">
  1930. <rect key="frame" x="0.0" y="50.5" width="810" height="52"/>
  1931. <autoresizingMask key="autoresizingMask"/>
  1932. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="k1t-dv-O2g" id="JR5-7G-JCb">
  1933. <rect key="frame" x="0.0" y="0.0" width="810" height="52"/>
  1934. <autoresizingMask key="autoresizingMask"/>
  1935. </tableViewCellContentView>
  1936. </tableViewCell>
  1937. </prototypes>
  1938. <connections>
  1939. <outlet property="dataSource" destination="Q9h-sX-dBy" id="sHN-iW-vry"/>
  1940. <outlet property="delegate" destination="Q9h-sX-dBy" id="5qJ-6f-qy0"/>
  1941. </connections>
  1942. </tableView>
  1943. </subviews>
  1944. <viewLayoutGuide key="safeArea" id="QI8-Ar-oqS"/>
  1945. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  1946. <constraints>
  1947. <constraint firstItem="P62-AP-fR0" firstAttribute="leading" secondItem="QI8-Ar-oqS" secondAttribute="leading" id="0Wy-zY-psD"/>
  1948. <constraint firstItem="QI8-Ar-oqS" firstAttribute="trailing" secondItem="P62-AP-fR0" secondAttribute="trailing" id="R51-2a-S9F"/>
  1949. <constraint firstItem="QI8-Ar-oqS" firstAttribute="bottom" secondItem="P62-AP-fR0" secondAttribute="bottom" id="jcD-Db-jtl"/>
  1950. <constraint firstItem="P62-AP-fR0" firstAttribute="top" secondItem="QI8-Ar-oqS" secondAttribute="top" id="vX1-Ms-DjO"/>
  1951. </constraints>
  1952. </view>
  1953. <simulatedNavigationBarMetrics key="simulatedTopBarMetrics" prompted="NO"/>
  1954. </viewController>
  1955. <placeholder placeholderIdentifier="IBFirstResponder" id="2SL-GM-xSC" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  1956. </objects>
  1957. <point key="canvasLocation" x="-3698" y="716"/>
  1958. </scene>
  1959. </scenes>
  1960. <resources>
  1961. <image name="btn_cancelorder" width="30" height="30"/>
  1962. <image name="btn_email_order" width="30" height="30"/>
  1963. <image name="btn_print_order" width="30" height="30"/>
  1964. <image name="continue" width="131" height="30"/>
  1965. <image name="notfound_s" width="180" height="180"/>
  1966. <image name="server_bg" width="1829" height="1372"/>
  1967. <systemColor name="systemBackgroundColor">
  1968. <color white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1969. </systemColor>
  1970. <systemColor name="systemGrayColor">
  1971. <color red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1972. </systemColor>
  1973. </resources>
  1974. </document>