| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406 |
- <template>
- <el-form ref="form" :model="form" :rules="rules">
- <ele-pro-table show-summary :summary-method="getSummaries" ref="table" row-key="id" :needPage="false"
- :columns="columns" max-height="500px" :toolkit="[]" :datasource="datasource"
- cache-key="systemRoleTable17-1111" class="time-form">
- <!-- 表头工具栏 -->
- <template v-slot:action="{ row,$index }">
- <el-popconfirm class="ele-action" title="确定要删除吗?" @confirm="remove(index,$index,'line')">
- <template v-slot:reference>
- <el-link type="danger" v-if="dialogType!=='view'" :underline="false" icon="el-icon-delete">
- 删除
- </el-link>
- </template>
- </el-popconfirm>
- </template>
- <template v-slot:productName="{ row,$index }">
- <el-popover
- placement="right"
- width="80%"
- trigger="hover">
- <ele-pro-table ref="childrenTable"
- row-key="id"
- max-height="300px"
- :needPage="false" :columns="childrenColumns" :toolkit="[]"
- :datasource="row.productList"
- cache-key="systemRoleTable17-222" class="time-form">
- </ele-pro-table>
- <el-button type="text" slot="reference">{{ row.productName }}</el-button>
- </el-popover>
- </template>
- </ele-pro-table>
- <el-row v-if="dialogType=='view'" style="margin-top: 10px">
- <el-col :span="6" style="float: right;">
- <el-descriptions class="margin-top" direction="vertical" :column="3" size="small" border>
- <el-descriptions-item label="未付款总金额">{{ dataForm.amountNotPaidPrice }}</el-descriptions-item>
- <el-descriptions-item label="未开票总金额">
- <template>{{ dataForm.amountNotInvoicedPrice }}</template>
- </el-descriptions-item>
- </el-descriptions>
- </el-col>
- </el-row>
- </el-form>
- </template>
- <script>
- export default {
- components: {},
- props: ['datasource', 'dialogType','dataForm'],
- computed: {
- columns() {
- let basicFields = [
- {
- width: 60,
- label: '序号',
- type: 'index',
- columnKey: 'index',
- align: 'center',
- },
- {
- minWidth: 130,
- prop: 'contractNo',
- label: '合同编号',
- align: 'center',
- slot: 'contractNo',
- },
- {
- minWidth: 120,
- prop: 'orderNo',
- label: '采购订单编码',
- slot: 'orderNo',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- minWidth: 140,
- prop: 'productName',
- label: '产品名称',
- slot: 'productName',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- minWidth: 100,
- prop: 'specification',
- label: '规格',
- align: 'center',
- slot: 'specification',
- showOverflowTooltip: true
- },
- {
- minWidth: 100,
- prop: 'modelType',
- label: '型号',
- align: 'center',
- slot: 'modelType',
- showOverflowTooltip: true
- },
- {
- minWidth: 130,
- prop: 'contractTotalCount',
- label: '合同总数量',
- align: 'center',
- slot: 'contractTotalCount'
- },
- {
- minWidth: 100,
- prop: 'singlePrice',
- label: '单价',
- align: 'center',
- slot: 'singlePrice'
- },
- {
- minWidth: 100,
- prop: 'discountSinglePrice',
- label: '折后单价',
- align: 'center',
- slot: 'discountSinglePrice'
- },
- {
- minWidth: 130,
- prop: 'contractTotalPrice',
- label: '合同总金额',
- align: 'center',
- slot: 'contractTotalPrice'
- },
- {
- minWidth: 140,
- prop: 'receiveGoodsDate',
- label: '收货日期',
- align: 'center',
- slot: 'receiveGoodsDate',
- showOverflowTooltip: true
- },
- {
- minWidth: 120,
- prop: 'totalCount',
- label: '已收货数量',
- align: 'center',
- slot: 'totalCount'
- },
- {
- minWidth: 130,
- prop: 'totalPrice',
- label: '已收货金额',
- align: 'center',
- slot: 'totalPrice'
- },
- {
- minWidth: 130,
- prop: 'discountTotalPrice',
- label: '折后已收货金额',
- align: 'center',
- slot: 'discountTotalPrice'
- },
- ]
- let permissionType = {
- // 'add': [
- // {
- // columnKey: 'action',
- // label: '操作',
- // width: 120,
- // align: 'center',
- // resizable: false,
- // slot: 'action',
- // fixed: 'right',
- // showOverflowTooltip: true
- // }
- // ],
- // 'update': [
- // {
- // columnKey: 'action',
- // label: '操作',
- // width: 120,
- // align: 'center',
- // resizable: false,
- // slot: 'action',
- // fixed: 'right',
- // showOverflowTooltip: true
- // }
- // ],
- 'view': [
- {
- minWidth: 140,
- prop: 'paidDate',
- label: '付款日期',
- align: 'center',
- slot: 'paidDate',
- showOverflowTooltip: true
- },
- {
- minWidth: 130,
- prop: 'paidPrice',
- label: '已付款金额',
- align: 'center',
- slot: 'paidPrice'
- },
- {
- minWidth: 130,
- prop: 'notPaidPrice',
- label: '应付款金额',
- align: 'center',
- slot: 'notPaidPrice'
- },
- {
- minWidth: 130,
- prop: 'invoicedPrice',
- label: '已开票金额',
- align: 'center',
- slot: 'invoicedPrice'
- },
- {
- minWidth: 130,
- prop: 'notInvoicedPrice',
- label: '未开票金额',
- align: 'center',
- slot: 'notInvoicedPrice'
- },
- ]
- }
- permissionType[this.dialogType] && basicFields.push(...permissionType[this.dialogType])
- console.log(basicFields);
- return basicFields
- },
- },
- data() {
- return {
- rules: {},
- form: {},
- childrenColumns: [
- {
- minWidth: 120,
- prop: 'orderNo',
- label: '单据编码',
- align: 'center',
- slot: 'orderNo'
- },
- {
- minWidth: 120,
- prop: 'orderType',
- label: '单据类型',
- slot: 'orderType',
- align: 'center',
- formatter: (_row, _column, cellValue) => {
- return _row.orderType === 1 ? '销售发货' : _row.orderType === 2 ? '销售退货' : ""
- }
- },
- {
- minWidth: 140,
- prop: 'productName',
- label: '产品名称',
- align: 'center',
- slot: 'productName',
- },
- {
- minWidth: 100,
- prop: 'productCode',
- label: '编码',
- align: 'center',
- slot: 'productCode'
- },
- {
- minWidth: 100,
- prop: 'productBrand',
- label: '牌号',
- align: 'center',
- slot: 'productBrand'
- },
- {
- minWidth: 100,
- prop: 'modelType',
- label: '型号',
- align: 'center',
- slot: 'modelType'
- },
- {
- minWidth: 100,
- prop: 'specification',
- label: '规格',
- align: 'center',
- slot: 'specification'
- },
- {
- minWidth: 100,
- prop: 'totalCount',
- label: '数量',
- align: 'center',
- slot: 'totalCount'
- },
- {
- minWidth: 120,
- prop: 'measuringUnit',
- label: '计量单位',
- align: 'center',
- slot: 'measuringUnit'
- },
- {
- minWidth: 100,
- prop: 'singlePrice',
- label: '单价',
- align: 'center',
- slot: 'singlePrice'
- },
- {
- minWidth: 100,
- prop: 'totalPrice',
- label: '金额',
- align: 'center',
- slot: 'totalPrice'
- }
- ],
- };
- },
- methods: {
- remove(tableIndex, lineIndex, delType) {
- let params = {
- tableIndex,
- lineIndex,
- delType
- }
- this.$emit('handleRemove', params)
- },
- getSummaries(param) {
- const {columns, data} = param;
- const sums = [];
- let fields = ['totalPrice', 'paidPrice', 'notPaidPrice', 'invoicedPrice', 'notInvoicedPrice','discountTotalPrice']
- columns.forEach((column, index) => {
- if (index === 0) {
- sums[index] = '合计';
- return;
- }
- const values = fields.includes(column.property) ? data.map(item => Number(item[column.property])) : []
- if (!values.every(value => isNaN(value))) {
- sums[index] = values.reduce((prev, curr) => {
- const value = Number(curr);
- if (!isNaN(value)) {
- return prev + curr;
- } else {
- return prev;
- }
- }, 0);
- sums[index] = (sums[index]).toFixed(2)
- } else {
- sums[index] = '';
- }
- });
- return sums;
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .headbox {
- display: flex;
- justify-content: space-between;
- align-items: center;
- .amount {
- font-size: 14px;
- font-weight: bold;
- padding-right: 30px;
- }
- }
- .time-form .el-form-item {
- margin-bottom: 0 !important;
- }
- ::v-deep .period {
- display: flex;
- .borderleftnone {
- .el-input--medium .el-input__inner {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
- }
- }
- .borderrightnone {
- .el-input--medium .el-input__inner {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
- }
- }
- }
- ::v-deep .time-form tbody > tr:hover > td {
- background-color: transparent !important;
- }
- ::v-deep .time-form .el-table tr {
- background-color: #ffffff;
- }
- .pricebox {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- font-weight: bold;
- }
- </style>
|