lxf пре 1 година
родитељ
комит
e2abcd94cf
2 измењених фајлова са 6 додато и 0 уклоњено
  1. 3 0
      src/components/process/EHSD/PriceSheet.vue
  2. 3 0
      src/components/process/PriceSheet.vue

+ 3 - 0
src/components/process/EHSD/PriceSheet.vue

@@ -834,6 +834,9 @@ const props = defineProps({
 onMounted(() => {
   if (props.queryData.priceSheetId) {
     proxy.post("/saleQuotation/detail", { id: props.queryData.priceSheetId }).then((res) => {
+      res.countryId = res.buyCountryId;
+      res.provinceId = res.buyProvinceId;
+      res.cityId = res.buyCityId;
       for (var text in res) {
         formData.data[text] = res[text];
       }

+ 3 - 0
src/components/process/PriceSheet.vue

@@ -744,6 +744,9 @@ const props = defineProps({
 onMounted(() => {
   if (props.queryData.priceSheetId) {
     proxy.post("/saleQuotation/detail", { id: props.queryData.priceSheetId }).then((res) => {
+      res.countryId = res.buyCountryId;
+      res.provinceId = res.buyProvinceId;
+      res.cityId = res.buyCityId;
       for (var text in res) {
         formData.data[text] = res[text];
       }