lxf 1 жил өмнө
parent
commit
e2abcd94cf

+ 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];
       }