Browse Source

完善采购退货单--商品列表中退货金额计算后可以手动修改

zhanglei
yunuo970428 11 months ago
parent
commit
1ecbc9744c
  1. 6
      yxt-as-ui/src/views/purchase/purchasereturn/purchasereturnAdd.vue
  2. 6
      yxt-as-ui/src/views/workFlow/caigoutuihuoFlow/purchasereturnEdit.vue

6
yxt-as-ui/src/views/purchase/purchasereturn/purchasereturnAdd.vue

@ -136,7 +136,11 @@
<el-input @input="backAmountInput(scope.row)" @keyup.native="scope.row.backCount = getNumber(scope.row.backCount, 2)" v-model="scope.row.backCount" clearable placeholder="" />
</template>
</el-table-column>
<el-table-column prop="backAmount" label="退货金额" align="center" width="140" />
<el-table-column label="退货金额" align="center" width="150">
<template slot-scope="scope">
<el-input @keyup.native="scope.row.backAmount = getNumber(scope.row.backAmount, 2)" v-model="scope.row.backAmount" clearable placeholder="" />
</template>
</el-table-column>
</el-table>
<el-row>
<el-col :span="24">

6
yxt-as-ui/src/views/workFlow/caigoutuihuoFlow/purchasereturnEdit.vue

@ -135,7 +135,11 @@
<el-input @input="backAmountInput(scope.row)" @keyup.native="scope.row.backCount = getNumber(scope.row.backCount, 2)" v-model="scope.row.backCount" clearable placeholder="" />
</template>
</el-table-column>
<el-table-column prop="backAmount" label="退货金额" align="center" width="140" />
<el-table-column label="退货金额" align="center" width="150">
<template slot-scope="scope">
<el-input @keyup.native="scope.row.backAmount = getNumber(scope.row.backAmount, 2)" v-model="scope.row.backAmount" clearable placeholder="" />
</template>
</el-table-column>
</el-table>
<el-row>
<el-col :span="24">

Loading…
Cancel
Save