Преглед на файлове

新增调拨单默认人民币;

001295 преди 1 година
родител
ревизия
43dc50c4c8
променени са 1 файла, в които са добавени 7 реда и са изтрити 0 реда
  1. 7 0
      src/views/purchase/transferOrder/add.vue

+ 7 - 0
src/views/purchase/transferOrder/add.vue

@@ -1554,6 +1554,13 @@ export default {
     } else if (this.pageStu == "add") {
       this.basicForm.rate = 1;
       this.basicForm.billDate = new Date();
+      let currency = {
+        id: '1002Z0100000000001K1',
+        name: '人民币',
+      }
+      this.basicForm.currency = currency.id;
+      this.basicForm.currencyName = currency.name;
+      this.currencyOptions = [currency];
       this.loading = false
     }
   },