| | |
| | | deliveryDate:'', |
| | | salesmanId:'', |
| | | salesman:'', |
| | | freight:'', |
| | | freightPrice:'', |
| | | freightQuantity:'', |
| | | creatorId:userStore.user.userid, |
| | | creator:userStore.user.userName |
| | | }) |
| | |
| | | remarks:'', |
| | | createTime:'', |
| | | deliveryDate:'', |
| | | creator:'' |
| | | creator:'', |
| | | freight:'', |
| | | freightPrice:'', |
| | | freightQuantity:'', |
| | | }, |
| | | finishedGoodsInventory:{ |
| | | quantityAvailable:'', |
| | |
| | | options: [ |
| | | [ |
| | | { code: 'copyChecked', name: t('basicData.selectSame'), prefixIcon: 'vxe-icon-copy', visible: true, disabled: false }, |
| | | { code: 'otherMoney', name: t('basicData.otherAmounts'), prefixIcon: 'vxe-icon-chart-bar-x', visible: true, disabled: false } |
| | | //{ code: 'otherMoney', name: t('basicData.otherAmounts'), prefixIcon: 'vxe-icon-chart-bar-x', visible: true, disabled: false } |
| | | ] |
| | | ] |
| | | } |
| | |
| | | ElMessage.error(t('delivery.pleaseEnterThePaymentMethod')) |
| | | return |
| | | } |
| | | |
| | | |
| | | const freightPrice = titleUploadData.value.freightPrice |
| | | if(freightPrice=== null || freightPrice === undefined || freightPrice === ''){ |
| | | titleUploadData.value.freightPrice=0 |
| | | } |
| | | const freightQuantity = titleUploadData.value.freightQuantity |
| | | if(freightQuantity=== null || freightQuantity === undefined || freightQuantity === ''){ |
| | | titleUploadData.value.freightQuantity=0 |
| | | } |
| | | |
| | | |
| | | let flowData = ref({ |
| | |
| | | <el-col :span="3"><el-input v-model="titleUploadData.salesman" :readonly="true"/></el-col> |
| | | <el-col :span="2"><el-text>{{$t('delivery.shipper')}}:</el-text></el-col> |
| | | <el-col :span="5"><el-input v-model="titleUploadData.creator" :readonly="true"/></el-col> |
| | | <el-col :span="1"><el-text>运费单价:</el-text></el-col> |
| | | <el-col :span="1"><el-input v-model="titleUploadData.freightPrice" /></el-col> |
| | | <el-col :span="1"><el-text>运费数量:</el-text></el-col> |
| | | <el-col :span="1"><el-input v-model="titleUploadData.freightQuantity" /></el-col> |
| | | <el-col :span="1"><el-text>运费金额:</el-text></el-col> |
| | | <el-col :span="2"><el-input v-model="titleUploadData.freight" :readonly="true"/></el-col> |
| | | </el-row> |
| | | </div> |
| | | <div class="order-detail"> |