123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678 |
- <template>
- <!-- 新增发运明细 -->
- <div id="AddShipDetDrawer">
- <a-drawer
- title="新增发运明细"
- width="89%"
- placement="right"
- :closable="true"
- :visible="visible"
- @close="handleCancel"
- >
- <!-- 主表信息 填写-->
- <a-card :bordered="true">
- <div class="table-page-search-wrapper">
- <!-- :rules="validatorRules" -->
- <a-form-model layout="inline" ref="form" :model="addShipDet">
- <a-row :gutter="24">
- <a-col :md="6" :sm="8">
- <!-- required必填项 disabled 禁用 -->
- <a-form-model-item label="单据号" prop="documentNo">
- <a-input placeholder="请输入单据号" v-model="addShipDet.documentNo"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <a-form-model-item label="单据日期" prop="documentDate">
- <a-date-picker
- placeholder="请选择单据日期"
- :format="dateFormat"
- style="width:100%;"
- v-model="addShipDet.documentDate"
- />
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <a-form-model-item label="客户" prop="customer">
- <a-input placeholder="请输入客户" v-model="addShipDet.customer"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <a-form-model-item label="预发货日期" prop="preDeliveryDate">
- <a-date-picker
- placeholder="请选择预发货时间"
- :format="dateFormat"
- style="width:100%;"
- v-model="addShipDet.preDeliveryDate"
- />
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <a-form-model-item label="预完工日期" prop="preCompletionDate">
- <a-date-picker
- placeholder="请选择预完工日期"
- :format="dateFormat"
- style="width:100%;"
- v-model="addShipDet.preCompletionDate"
- />
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <a-form-model-item label="pack id" prop="packId">
- <a-input placeholder="请输入pack id" v-model="addShipDet.packId"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <a-form-model-item label="分销点" prop="distributionPoint">
- <a-input placeholder="请输入分销点" v-model="addShipDet.distributionPoint"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <a-form-model-item label="数量" prop="todo">
- <a-input placeholder="合计" v-model="addShipDet.todo"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <a-form-model-item label="单价" prop="salesUnitPrice">
- <a-input placeholder="销售" v-model="addShipDet.salesUnitPrice"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <a-form-model-item label="采购/委外订单号" prop="purOrSubOrder">
- <a-input placeholder="请输入采购/委外订单号" v-model="addShipDet.purOrSubOrder"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <a-form-model-item label="订单类型" prop="orderType">
- <a-input placeholder="请输入订单类型" v-model="addShipDet.orderType"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <a-form-model-item label="工厂单价" prop="factoryUnitPrice">
- <a-input placeholder="采购/委外单价" v-model="addShipDet.factoryUnitPrice"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <a-form-model-item label="申报要素" prop="declarationElements">
- <a-input placeholder="单证维护" v-model="addShipDet.declarationElements"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <a-form-model-item label="套装件数" prop="numberOfSets">
- <a-input placeholder="存货自定义项" v-model="addShipDet.numberOfSets"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <a-form-model-item label="中文品名" prop="chineseName">
- <a-input placeholder="请输入中文品名" v-model="addShipDet.chineseName"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <a-form-model-item label="英文品名" prop="englishName">
- <a-input placeholder="请输入英文品名" v-model="addShipDet.englishName"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <a-form-model-item label="成衣工厂" prop="garmentFactory">
- <a-input placeholder="请输入成衣工厂" v-model="addShipDet.garmentFactory"></a-input>
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <a-form-model-item label="报关单价" prop="customsDeclarationUnitPrice">
- <a-input placeholder="请输入报关单价" v-model="addShipDet.customsDeclarationUnitPrice"></a-input>
- </a-form-model-item>
- </a-col>
- <!-- U8系统适用 -->
- <a-col :md="12" :sm="12">
- <a-form-model-item label="备注" prop="memo">
- <a-input placeholder="U8系统适用" v-model="addShipDet.memo"></a-input>
- </a-form-model-item>
- </a-col>
- </a-row>
- </a-form-model>
- </div>
- </a-card>
- <!-- 参照订单数据 増行-->
- <a-card :bordered="true" style="margin:10px 0">
- <div class="table-operator">
- <a-button type="primary" @click.stop="referOrderDataOpen" icon="ordered-list">参照订单数据</a-button>
- <a-button type="primary" @click.stop="handleAddColumn" icon="plus" style="margin-left: 20px">増行</a-button>
- </div>
- <!-- 子表 :model="form" rowKey="id" ,y:800 -->
- <a-spin :spinning="confirmLoading">
- <a-form-model ref="formRef">
- <a-table
- :loading="loading"
- v-if="syShippingDetailsItemList"
- bordered
- :rowKey="record => record.id"
- :columns="columns"
- :data-source="syShippingDetailsItemList"
- :pagination="false"
- :scroll="{ x: 1500 }"
- size="small"
- >
- <!-- 款号 输入框 :rules="rules.itemNumber" -->
- <template slot="itemNumber" slot-scope="text, record, index">
- <a-form-model-item prop="itemNumber">
- <a-input style="width:100%" type="text" v-model="record.itemNumber" />
- </a-form-model-item>
- </template>
- <!-- 发货数量 :rules="rules.shipQuantity"-->
- <template slot="shipQuantity" slot-scope="text, record, index">
- <a-form-model-item prop="shipmentQuantity">
- <a-input style="width:100%" type="text" v-model="record.shipQuantity" />
- </a-form-model-item>
- </template>
- <!-- 是否TC功能 :rules="rules.isTC"-->
- <!-- isTc ' 是否 tc 功能 0 否 1 是', -->
- <template slot="isTC" slot-scope="text, record, index">
- <a-form-model-item prop="isTc">
- <a-select v-model="record.isTC">
- <a-select-option value="">请选择</a-select-option>
- <a-select-option :value="1">是</a-select-option>
- <a-select-option :value="0">否</a-select-option>
- </a-select>
- </a-form-model-item>
- </template>
- <!-- 物料成分 :rules="rules.materialComposition"-->
- <template slot="materialComposition" slot-scope="text, record, index">
- <a-form-model-item prop="materialComposition">
- <a-input style="width:100%" type="text" v-model="record.materialComposition" />
- </a-form-model-item>
- </template>
- <!-- 操作 -->
- <template slot="operationSlot" slot-scope="text, record, index">
- <a-popconfirm
- v-if="syShippingDetailsItemList.length"
- title="确定删除吗?"
- @confirm="handleDelete(index)"
- >
- <a href="javascript:void(0);" style="color:red;">删除</a>
- </a-popconfirm>
- <a-divider type="vertical" />
- <a @click="copy(record)">复制</a>
- </template>
- </a-table>
- </a-form-model>
- </a-spin>
- </a-card>
- <!-- 页面底部保存取消 -->
- <div
- :style="{
- position: 'absolute',
- right: 0,
- bottom: 0,
- width: '100%',
- borderTop: '1px solid #e9e9e9',
- padding: '10px 16px',
- background: '#fff',
- textAlign: 'right',
- zIndex: 1
- }"
- >
- <a-popconfirm title="确定放弃新增?" @confirm="handleCancel" okText="确定" cancelText="取消">
- <a-button :style="{ marginRight: '8px' }">取消</a-button>
- </a-popconfirm>
- <a-button type="primary" @click="addSave">
- 保存
- </a-button>
- </div>
- </a-drawer>
- <!-- 参照订单数据弹框 -->
- <referOrderData-modal ref="referOrderDataModal" @bao="getSon" @ok="referOrderDataOk"></referOrderData-modal>
- </div>
- </template>
- <script>
- import { JeecgListMixin } from '@/mixins/JeecgListMixin'
- import JEllipsis from '@/components/jeecg/JEllipsis'
- import moment from 'moment'
- // import 'moment/locale/zh-cn'
- import ReferOrderDataModal from '@views/shipment-details/referOrderDataModal.vue'
- import { addShipmentList } from '@api/document/shipmentList'
- export default {
- name: 'AddShipDetDrawer', // 新增 发运明细 抽屉
- mixins: [JeecgListMixin],
- components: { JEllipsis, ReferOrderDataModal, moment }, // 参照订单数据 弹框
- data() {
- let ellipsis = (v, l = 20) => <j-ellipsis value={v} length={l} />
- return {
- id: '',
- // 表头
- columns: [
- {
- title: '账套',
- dataIndex: 'pkOrg',
- width: 80,
- fixed: 'left',
- className: 'replacecolor'
- },
- {
- title: '订单号',
- dataIndex: 'orderNumber',
- width: 120,
- fixed: 'left',
- className: 'replacecolor'
- },
- {
- title: '款号',
- dataIndex: 'itemNumber',
- scopedSlots: { customRender: 'itemNumber' },
- fixed: 'left',
- width: 180,
- className: 'replacecolor'
- },
- // {
- // title: '创建时间',
- // dataIndex: 'createTime',
- // align: 'center',
- // sorter: true,
- // customRender: text => {
- // return moment(text).format('YYYY-MM-DD')
- // }
- // },
- {
- title: '订单日期',
- dataIndex: 'orderDate',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '业务类型',
- dataIndex: 'businessTypeText',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '客户订单',
- dataIndex: 'customerOrderNumber',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '小po',
- dataIndex: 'smallPo',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: 'Pack Id',
- dataIndex: 'packId',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '订单数据',
- dataIndex: 'orderDate',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '订单剩余数量',
- dataIndex: 'orderRemainingQuantity',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '发货数量',
- dataIndex: 'shipQuantity',
- scopedSlots: { customRender: 'shipQuantity' },
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '是否TC功能',
- dataIndex: 'isTC',
- width: 90,
- scopedSlots: { customRender: 'isTC' },
- className: 'replacecolor'
- },
- {
- title: '物料成分',
- dataIndex: 'materialComposition',
- scopedSlots: { customRender: 'materialComposition' },
- width: 140,
- className: 'replacecolor'
- },
- {
- title: '销售类型',
- dataIndex: 'salesTypeText',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '客户简称',
- dataIndex: 'customerAbbreviation',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '客户名称',
- dataIndex: 'customerName',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '汇率',
- dataIndex: 'exchangeRate',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '整单合计',
- dataIndex: 'wholeOrderTotal',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '销售部门',
- dataIndex: 'salesDepartment',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '业务员',
- dataIndex: 'salesman',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '币种',
- dataIndex: 'currencyText',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '品牌方',
- dataIndex: 'brandSide',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '第三方',
- dataIndex: 'thirdParty',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '定金比例(%)',
- dataIndex: 'depositRatio',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '定金',
- dataIndex: 'deposit',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '协同路线',
- dataIndex: 'collaborativeRoute',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '付款条件',
- dataIndex: 'termOfPayment',
- width: 160,
- customRender: t => ellipsis(t),
- className: 'replacecolor'
- },
- {
- title: '最终客户',
- dataIndex: 'endCustomer',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '订单备注',
- dataIndex: 'orderRemarks',
- width: 160,
- customRender: t => ellipsis(t),
- className: 'replacecolor'
- },
- {
- title: '价格备注',
- dataIndex: 'priceRemarks',
- width: 160,
- customRender: t => ellipsis(t),
- className: 'replacecolor'
- },
- {
- title: '订单变更说明',
- dataIndex: 'orderChangeDescription',
- width: 160,
- customRender: t => ellipsis(t),
- className: 'replacecolor'
- },
- {
- title: '操作',
- dataIndex: 'operation',
- scopedSlots: { customRender: 'operationSlot' },
- width: 160,
- fixed: 'right',
- className: 'replacecolor'
- }
- ],
- msgFormSon: 'test', // 子组件传来数据的变量
- syShippingDetailsItemList: [], // 子表数据
- addShipDet: {}, // 新增发运明细
- visible: false,
- confirmLoading: false,
- dateFormat: 'YYYY-MM-DD',
- state: '0', // 单据状态初始未【仅保存】
- pushState: '0' // 推送状态初始未【仅保存】
- // validatorRules: {
- // documentNo: [{ required: true, message: '单据号不能为空', trigger: 'blur' }], 单据号
- }
- },
- // 接收父组件查询方法
- props: {
- fatherList: {
- type: Function,
- default: null
- }
- },
- created() {},
- methods: {
- getSon(val) {
- console.log('勾选订单数据', val)
- this.msgFormSon = val
- this.syShippingDetailsItemList = this.msgFormSon
- console.log('新增页 子表信息', this.syShippingDetailsItemList)
- },
- // 参照订单数据
- referOrderDataOpen() {
- this.$refs.referOrderDataModal.referOrderDataModVis = true
- console.log('点击参照订单数据')
- },
- // 新增 保存
- addSave() {
- var newObj = {} // 新增对象
- newObj.documentNo = this.addShipDet.documentNo
- newObj.documentDate = this.addShipDet.documentDate.format('YYYY-MM-DD')
- newObj.customer = this.addShipDet.customer
- newObj.preDeliveryDate = this.addShipDet.preDeliveryDate.format('YYYY-MM-DD') // 预发货日期
- newObj.preCompletionDate = this.addShipDet.preCompletionDate.format('YYYY-MM-DD') // 预完工日期
- // 2022-06-10 增加的字段
- newObj.packId = this.addShipDet.packId
- newObj.distributionPoint = this.addShipDet.distributionPoint
- newObj.todo = this.addShipDet.todo //数量(合计)
- newObj.salesUnitPrice = this.addShipDet.salesUnitPrice
- newObj.purOrSubOrder = this.addShipDet.purOrSubOrder
- newObj.orderType = this.addShipDet.orderType
- newObj.factoryUnitPrice = this.addShipDet.factoryUnitPrice
- newObj.declarationElements = this.addShipDet.declarationElements
- newObj.numberOfSets = this.addShipDet.numberOfSets
- newObj.chineseName = this.addShipDet.chineseName
- newObj.englishName = this.addShipDet.englishName
- newObj.garmentFactory = this.addShipDet.garmentFactory
- newObj.customsDeclarationUnitPrice = this.addShipDet.customsDeclarationUnitPrice
- newObj.memo = this.addShipDet.memo // U8系统适用
- newObj.syShippingDetailsItemList = this.syShippingDetailsItemList // 子表信息赋值
- // 单据状态
- // newObj.state = this.state
- // newObj.pushState = this.pushState
- // 必须选择子表 --- 参照订单数据
- if (newObj.syShippingDetailsItemList.length == 0) {
- this.$message.error('请选择参照订单数据')
- } else {
- addShipmentList(newObj).then(res => {
- if (res.success) {
- this.$message.success('新增成功')
- console.log('新增的对象', newObj)
- this.close()
- //清空信息
- newObj = {}
- newObj.syShippingDetailsItemList = []
- this.fatherList() // 调用父组件 查询方法
- // this.msgFormSon = {} 清空子表信息
- console.log('空')
- }
- })
- }
- },
- // 増行
- handleAddColumn() {
- console.log('増行')
- const addrow = {
- accountSet: '',
- documentNo: '',
- itemNumber: '',
- orderDate: '',
- businessType: '',
- customerOrder: '',
- smallPo: '',
- packId: '',
- orderDate: '',
- orderRemaQuantity: '',
- shipQuantity: '',
- isTC: '',
- materialComposition: '',
- saleType: '',
- customerShortName: '',
- customerName: '',
- exchangeRate: '',
- wholeSingleCombined: '',
- salesDepartment: '',
- salesman: '',
- currency: '',
- brand: '',
- thirdParty: '',
- depositRate: '',
- deposit: '',
- collaborativeRoute: '',
- paymentClause: '',
- finalCustomer: '',
- orderNote: '',
- priceNote: '',
- orderChangeDesc: '',
- operation: ''
- }
- this.syShippingDetailsItemList.push(addrow)
- },
- // --------------------------------------
- // 操作 删除
- handleDelete(index) {
- console.log('index', index)
- console.log('删除该项订单数据', index)
- return this.syShippingDetailsItemList.splice(index, 1)
- },
- // 操作 复制 复制一行已有的数据
- copy(record) {},
- // --------------------------------------
- // 抽屉 取消
- handleCancel() {
- this.close()
- },
- // --------------------------------------
- close() {
- this.$emit('close')
- this.visible = false
- this.addShipDet = {}
- this.syShippingDetailsItemList = []
- },
- // 参照订单数据弹框 ok-------------------------------------
- referOrderDataOk() {
- console.log('参照订单数据弹框确定')
- this.$refs.referOrderDataModal.referOrderDataModVis = false
- }
- },
- computed: {},
- mounted() {}
- }
- </script>
- <style lang="less" scoped>
- @import '~@assets/less/common.less';
- /deep/ .ant-table-thead > tr > th {
- text-align: center;
- // font-weight: 700;
- }
- /deep/ .ant-table-tbody {
- text-align: center;
- }
- // /deep/ th.replacecolor {
- // background-color: #ccc;
- // }
- // 抽屉里的card样式
- /deep/ .ant-drawer-content {
- background-color: #f0f2f5;
- }
- /deep/ .ant-drawer-body {
- padding: 10px;
- }
- // 子表下拉显示
- /deep/ .ant-card-body {
- margin-bottom: 50px;
- }
- </style>
|