ソースを参照

新增调拨单默认人民币;

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
     }
   },