Pārlūkot izejas kodu

出库,入库收款详细添加开票金额、开票时间、发票号
2022年7月15日 19点32分

纪新园 3 gadi atpakaļ
vecāks
revīzija
3753f68f3a

+ 12 - 0
src/views/Warehousing/components/incomeMoney.vue

@@ -139,6 +139,18 @@
             <el-input v-model="scope.row.fMblno" :disabled="browseStatus || scope.row.fBillstatus == 6"
               placeholder="提单号" show-word-limit />
           </span>
+          <span v-else-if="item.label == 'fInvamount'">
+            <el-input v-model="scope.row.fInvamount" :disabled="browseStatus || scope.row.fBillstatus == 6"
+                                     placeholder="开票金额" show-word-limit disabled/>
+          </span>
+                    <span v-else-if="item.label == 'fInvnos'">
+            <el-input v-model="scope.row.fInvnos" :disabled="browseStatus || scope.row.fBillstatus == 6"
+                                     placeholder="发票号" show-word-limit disabled/>
+          </span>
+                    <span v-else-if="item.label == 'fInvoicingDate'">
+            <el-date-picker v-model="scope.row.fInvoicingDate" :disabled="browseStatus || scope.row.fBillstatus == 6"
+                                           placeholder="开票时间" format="yyyy-MM-dd" value-format="yyyy-MM-dd" disabled/>
+          </span>
           <span v-else-if="item.label == 'fProductName'">
             <el-input v-model="scope.row.fProductName" :disabled="browseStatus || scope.row.fBillstatus == 6"
               placeholder="品名" show-word-limit />

+ 13 - 0
src/views/Warehousing/outStock/AddOrUpdate.vue

@@ -763,6 +763,19 @@
                     :value="item.dictValue" />
                 </el-select>
               </span>
+              <span v-else-if="item.label == 'fInvamount'">
+                <el-input v-model="scope.row.fInvamount" :disabled="browseStatus || scope.row.fBillstatus == 6"
+                          placeholder="开票金额" show-word-limit disabled/>
+              </span>
+              <span v-else-if="item.label == 'fInvnos'">
+                <el-input v-model="scope.row.fInvnos" :disabled="browseStatus || scope.row.fBillstatus == 6"
+                          placeholder="发票号" show-word-limit disabled/>
+              </span>
+              <span v-else-if="item.label == 'fInvoicingDate'">
+                <el-date-picker v-model="scope.row.fInvoicingDate"
+                                :disabled="browseStatus || scope.row.fBillstatus == 6" placeholder="开票时间" format="yyyy-MM-dd"
+                                value-format="yyyy-MM-dd" disabled/>
+              </span>
               <span v-else-if="item.label == 'fQty'">
                 <el-input
                   oninput='this.value=this.value.replace(/[^0-9.]/g,"").replace(/^(\-)*(\d+)\.(\d\d\d).*$/,"$1$2.$3")'