浏览代码

change: indent计价增加US选项.

peter 2 周之前
父节点
当前提交
45ae035ef4

+ 1 - 0
src/pages/indent-manage/indent/components/calcPrice/index.vue

@@ -7,6 +7,7 @@
       :step3-form-list="step3FormList"
       :step2-form-list="formList"
       :creator-options="creatorOptions"
+      :city2="formData.cal_city.local_city"
       :city="exportForm.pdf_city"
     ></exportQuota>
     <!-- :city="formData.cal_city.local_city" -->

+ 13 - 3
src/pages/indent-manage/indent/components/exportQuota.vue

@@ -15,7 +15,7 @@
       </div>
 
       <div class="flex justify-between items-start">
-        <div class="">
+        <div v-if="city2 !== 'US'">
           <div class="">FAIR OCEAN TRADING AUSTRALIA</div>
           <div class="">PTY LTD</div>
           <div class="">15/10 Chilvers Road,</div>
@@ -30,6 +30,13 @@
           <div class="">Fax Number:&nbsp;&nbsp;&nbsp;&nbsp;02 9008 1157</div>
         </div>
 
+        <div v-else>
+          <div>Promocollection, LLC</div>
+          <div>1309 COFFEEN AVE STE 1200</div>
+          <div>SHERIDAN</div>
+          <div>WY 82801</div>
+        </div>
+
         <div class="">
           <div class="flex items-center">
             <div style="font-weight: bold">Sales Person:&nbsp;</div>
@@ -142,8 +149,8 @@
       </div> -->
 
       <div class="pb-2">
-        Freight to {{ city_short[city] || city }} is included.Price based on exchange
-        rate of {{ exportForm.exchange }}. Price is only valid for
+        Freight to {{ city_short[city] || city }} is included.Price based on
+        exchange rate of {{ exportForm.exchange }}. Price is only valid for
         {{ exportForm.days }} days.
       </div>
 
@@ -196,6 +203,7 @@ defineComponent({
 })
 const {
   city = '',
+  city2 = '',
   productInfo = {} as any,
   exportForm = {} as any,
   step2FormList = [],
@@ -203,6 +211,7 @@ const {
   creatorOptions = [],
 } = defineProps<{
   city: string
+  city2: string
   productInfo: object
   exportForm: object
   step2FormList: any[]
@@ -215,6 +224,7 @@ const city_short = {
   Brisbane: 'Brisbane',
   SA: 'Adelaide',
   WA: 'Perth',
+  US: 'US',
   '': '',
 } as any