123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786 |
- <template>
- <a-spin :spinning="loading">
- <JFormContainer :disabled="disabled">
- <template #detail>
- <a-form v-bind="formItemLayout" name="quotationFormForm" ref="formRef">
- <a-row>
- <a-col :span="12">
- <a-form-item label="报价单号(bill code)" v-bind="validateInfos.billCode" id="quotationFormForm-billCode" name="billCode" :labelCol="formItemLayout.labelCol1" :wrapperCol="formItemLayout.wrapperCol1">
- <a-input v-model:value="formData.billCode" placeholder="自动生成" disabled></a-input>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="单据日期(bill date)" v-bind="validateInfos.billDate" id="quotationFormForm-billDate" name="billDate">
- <a-date-picker placeholder="请选择单据日期(bill date)" v-model:value="formData.billDate" value-format="YYYY-MM-DD" disabled style="width: 100%" allow-clear />
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="报价项目(quotation project)" v-bind="validateInfos.quotationProjectName" id="quotationFormForm-quotationProjectName" name="quotationProjectName">
- <a-input-search v-model:value="formData.quotationProjectName" placeholder="请输入报价项目(inquiry project)" allow-clear enter-button="Search" :disabled="notAllowEdit" @search="onSearchProject"></a-input-search>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="报价客户(quotation customer)" v-bind="validateInfos.quotationCustomer" id="quotationFormForm-quotationCustomer" name="quotationCustomer" :labelCol="formItemLayout.labelCol1" :wrapperCol="formItemLayout.wrapperCol1">
- <JSelectInput v-model:value="formData.quotationCustomer" placeholder="请选择" :options="customerOption" disabled></JSelectInput>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="报价有效期(quotation period)" v-bind="validateInfos.quotationPeriod" id="quotationFormForm-quotationPeriod" name="quotationPeriod">
- <a-range-picker v-model:value="quotationPeriod" :format="['YYYY-MM-DD','YYYY-MM-DD']" @change="onChangequotationPeriod" style="width: 100%" />
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="优先级(priority)" v-bind="validateInfos.priority" id="quotationFormForm-priority" name="priority">
- <JDictSelectTag v-model:value="formData.priority" placeholder="请选择" dictCode="priority"/>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="产品分类(production class)" v-bind="validateInfos.productionClass" id="quotationFormForm-productionClass" name="productionClass" :labelCol="formItemLayout.labelCol1" :wrapperCol="formItemLayout.wrapperCol1">
- <JSelectInput v-model:value="formData.productionClass" placeholder="请选择" :options="classOption"></JSelectInput>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="机型(model)" v-bind="validateInfos.model" id="quotationFormForm-model" name="model">
- <JSelectMultiple v-model:value="formData.model" placeholder="请选择" dictCode="model_typer"/>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="厂家(maker)" v-bind="validateInfos.maker" id="quotationFormForm-maker" name="maker" :labelCol="formItemLayout.labelCol1" :wrapperCol="formItemLayout.wrapperCol1">
- <JDictSelectTag v-model:value="formData.maker" placeholder="请选择" dictCode="factory"/>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="币种(currency)" v-bind="validateInfos.currency" id="quotationFormForm-currency" name="currency" :labelCol="formItemLayout.labelCol1" :wrapperCol="formItemLayout.wrapperCol1">
- <JDictSelectTag v-model:value="formData.currency" placeholder="请选择" dictCode="currency" />
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="汇率(exchangeRate)" v-bind="validateInfos.exchangeRate" id="quotationFormForm-exchangeRate" name="exchangeRate" >
- <a-input-number v-model:value="formData.exchangeRate" placeholder="请输入" allow-clear AutoComplete="off" @change="changeDiscountOrExchangeRate" suffix="%"></a-input-number>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="贸易方式(delivery terms)" v-bind="validateInfos.deliveryTerms" id="quotationFormForm-deliveryTerms" name="deliveryTerms" :labelCol="formItemLayout.labelCol1" :wrapperCol="formItemLayout.wrapperCol1">
- <JDictSelectTag v-model:value="formData.deliveryTerms" placeholder="请选择" dictCode="delivery_terms"/>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="交期(delivery time)" v-bind="validateInfos.deliveryDayHead" id="quotationFormForm-deliveryDayHead" name="deliveryDayHead">
- <a-input-number placeholder="" v-model:value="formData.deliveryDayHead" @change="changeDelivertTime" style="width: 100%" allow-clear />
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="付款条件(payment terms)" v-bind="validateInfos.paymentTerms" id="quotationFormForm-paymentTerms" name="paymentTerms" :labelCol="formItemLayout.labelCol1" :wrapperCol="formItemLayout.wrapperCol1">
- <JDictSelectTag v-model:value="formData.paymentTerms" placeholder="请选择" dictCode="payment_terms"/>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="交货地点(place of delivery)" v-bind="validateInfos.placeDelivery" id="quotationFormForm-placeDelivery" name="placeDelivery">
- <a-input v-model:value="formData.placeDelivery" placeholder="请输入交货地点(place of delivery)" allow-clear AutoComplete="off"></a-input>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="客户折扣(custumer discount)" v-bind="validateInfos.custumerDiscount" id="quotationFormForm-custumerDiscount" name="custumerDiscount" :labelCol="formItemLayout.labelCol1" :wrapperCol="formItemLayout.wrapperCol1">
- <a-input v-model:value="formData.custumerDiscount" placeholder="请输入客户折扣(custumer discount)" allow-clear AutoComplete="off" @change="changeDiscountOrExchangeRate" suffix="%"></a-input>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="销售部门(sale department)" v-bind="validateInfos.saleDepartment" id="SaleInquiryFormForm-saleDepartment" name="saleDepartment">
- <a-input v-model:value="formData.saleDepartmentName" placeholder="" allow-clear disabled></a-input>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="包装方式(packaging method)" v-bind="validateInfos.packagingMethod" id="quotationFormForm-packagingMethod" name="packagingMethod" :labelCol="formItemLayout.labelCol1" :wrapperCol="formItemLayout.wrapperCol1">
- <a-input v-model:value="formData.packagingMethod" placeholder="请输入包装方式(packaging method)" allow-clear AutoComplete="off"></a-input>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="业务员(salesman)" v-bind="validateInfos.salesman" id="quotationFormForm-salesman" name="salesman">
- <a-input v-model:value="formData.salesmanName" placeholder="" allow-clear disabled></a-input>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="报价备注(quotation notes)" v-bind="validateInfos.quotationNotes" id="quotationFormForm-quotationNotes" name="quotationNotes" :labelCol="formItemLayout.labelCol1" :wrapperCol="formItemLayout.wrapperCol1">
- <a-input v-model:value="formData.quotationNotes" placeholder="请输入报价备注(quotation notes)" allow-clear AutoComplete="off"></a-input>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="附件(attachs)" v-bind="validateInfos.attachs" id="quotationFormForm-attachs" name="attachs">
- <JUpload v-model:value="formData.attachs"></JUpload>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="供应商技术资料(supplier quotation attachs)" v-bind="validateInfos.supplierAttachs" id="quotationFormForm-supplierAttachs" name="supplierAttachs" :labelCol="formItemLayout.labelCol1" :wrapperCol="formItemLayout.wrapperCol1">
- <a :href="baseUrl+formData.supplierAttachs" v-if="formData.supplierAttachs">{{formData.supplierAttachs}}</a>
- <a-input v-model:value="formData.supplierAttachs" disabled v-if="!formData.supplierAttachs"></a-input>
- </a-form-item>
- </a-col>
- </a-row>
- </a-form>
- </template>
- </JFormContainer>
- <!-- 子表单区域 -->
- <a-tabs v-model:activeKey="activeKey" animated style=" padding: 24px;padding-top: 0px;">
- <a-tab-pane tab="销售报价单 - 产品明细(product details)" key="saleQuotationFormProduct" :forceRender="true">
- <a-button type="primary" @click="selectProducts" style="margin-right: 1%;margin-bottom: 1%;"> 选择产品(select product)</a-button>
- <a-button type="primary" @click="chooseSupplier"> 选择供应商报价(selete supplier quotation)</a-button>
- <j-vxe-table
- :keep-source="true"
- resizable
- ref="saleQuotationFormProductTableRef"
- :loading="saleQuotationFormProductTable.loading"
- :columns="saleQuotationFormProductTable.columns"
- :dataSource="saleQuotationFormProductTable.dataSource"
- :height="340"
- :disabled="disabled"
- :rowNumber="true"
- :rowSelection="true"
- asyncRemove
- @valueChange="changeValues"
- >
- <template #lastPrice="props">
- <a @click="viewHistory">{{ props.row.lastPrice }}</a>
- </template>
- <template #action="props">
- <a-popconfirm title="确定删除吗?" @confirm="handleDelete1(props)">
- <a>删除(delete)</a>
- </a-popconfirm>
- </template>
- </j-vxe-table>
- </a-tab-pane>
- <a-tab-pane tab="销售报价单 - 船明细(ship details)" key="saleQuotationFormShip" :forceRender="true">
- <a-button type="primary" @click="selectShip"> 选择船(select ship)</a-button>
- <j-vxe-table
- :keep-source="true"
- resizable
- ref="saleQuotationFormShipTableRef"
- :loading="saleQuotationFormShipTable.loading"
- :columns="saleQuotationFormShipTable.columns"
- :dataSource="saleQuotationFormShipTable.dataSource"
- :height="340"
- :disabled="disabled"
- :rowNumber="true"
- :rowSelection="true"
- >
- <template #action="props" >
- <a @click="viewAccessory(props)" >查看配件信息(view accessory information)</a>
- <a-divider type="vertical"/>
- <a-popconfirm title="确定删除吗?" @confirm="handleDelete(props)">
- <a>删除(delete)</a>
- </a-popconfirm>
- </template>
- </j-vxe-table>
- </a-tab-pane>
-
- </a-tabs>
- <SelectShipSModal ref="SelectShipSModalRef" @select="addShip"></SelectShipSModal>
- <BaseShipArchiveAccessoriesModal ref="BaseShipArchiveAccessoriesListRef"></BaseShipArchiveAccessoriesModal>
- <SelectPrpductModal ref="SelectPrpductModalRef" @selectProduct="addProduct"></SelectPrpductModal>
- <SelectProjectModal ref="SelectProjectModalRef" @selectProject="addProject"></SelectProjectModal>
- <ViewHistoryQuotationModal ref="ViewHistoryQuotationModalRef" ></ViewHistoryQuotationModal>
- <SelectSupplierQuotation ref="SelectSupplierQuotationRef" @selectSupplierQuatationConfirm="addProductFromSupplier"></SelectSupplierQuotation>
- </a-spin>
- </template>
- <script lang="ts">
- import { defineComponent, ref, reactive, computed, toRaw, onMounted } from 'vue';
- import { defHttp } from '/@/utils/http/axios';
- import { useValidateAntFormAndTable } from '/@/hooks/system/useJvxeMethods';
- import { querysaleQuotationFormShipListByMainId,querysaleVersonFormShipListByMainId,querySaleQuotationFormProductListByMainId, querySaleVersonProductListByMainId,queryDataById, saveOrUpdate,HistoryQuotation,queryVersonHistoryById } from '../quotationForm.api';
- import { JVxeTable } from '/@/components/jeecg/JVxeTable';
- import {saleQuotationFormShipColumns, saleQuotationFormProductColumns} from '../quotationForm.data';
- import SelectShipSModal from '../../../publicComponents/SelectShipSModal.vue';
- import BaseShipArchiveAccessoriesModal from '../../../publicComponents/BaseShipArchiveAccessoriesModal.vue';
- import SelectPrpductModal from '../../../publicComponents/SelectPrpductModal.vue';
- import SelectProjectModal from '../../../publicComponents/SelectProjectModal.vue';
- import SelectSupplierQuotation from '../../../publicComponents/SelectSupplierQuotation.vue';
- import ViewHistoryQuotationModal from './ViewHistoryQuotationModal.vue';
- import JFormContainer from '/@/components/Form/src/container/JFormContainer.vue';
- import JUpload from '/@/components/Form/src/jeecg/components/JUpload/JUpload.vue';
- import { JDictSelectTag,JSelectMultiple} from '/@/components/Form';
- import JSelectInput from '/@/components/Form/src/jeecg/components/JSelectInput.vue';
- import { Form,message } from 'ant-design-vue';
- import { useUserStore } from '/@/store/modules/user';
- import moment from 'moment';
- import { useGlobSetting } from '/@/hooks/setting';
- const { domainUrl } = useGlobSetting();
- const userStore = useUserStore();
- const useForm = Form.useForm;
- export default defineComponent({
- name: "quotationFormForm",
- components:{
- JVxeTable,
- JFormContainer,
- SelectShipSModal,
- BaseShipArchiveAccessoriesModal,
- SelectPrpductModal,
- JUpload,
- SelectProjectModal,
- SelectSupplierQuotation,
- ViewHistoryQuotationModal,
- JDictSelectTag,
- JSelectInput,
- JSelectMultiple
- },
- props:{
- formDisabled:{
- type: Boolean,
- default: false
- },
- formData: { type: Object, default: ()=>{} },
- formBpm: { type: Boolean, default: true }
- },
- emits:['success'],
- setup(props, {emit}) {
- const baseUrl = domainUrl + '/sys/common/static/';
- const loading = ref(false);
- const formRef = ref();
- var SelectPrpductModalRef = ref()
- var SelectProjectModalRef = ref()
- var ViewHistoryQuotationModalRef = ref()
- var SelectSupplierQuotationRef = ref()
- var quotationPeriod = ref([])
- const saleQuotationFormShipTableRef = ref();
- const saleQuotationFormShipTable = reactive<Record<string, any>>({
- loading: false,
- columns:saleQuotationFormShipColumns,
- dataSource: []
- });
- const saleQuotationFormProductTableRef = ref();
- const saleQuotationFormProductTable = reactive<Record<string, any>>({
- loading: false,
- columns: saleQuotationFormProductColumns,
- dataSource: []
- });
- var SelectShipSModalRef = ref();
- var BaseShipArchiveAccessoriesListRef = ref();
- const activeKey = ref('saleQuotationFormProduct');
- var notAllowEdit = ref(false);
- var classOption = ref([]);
- var customerOption =ref([]);
- const formData = reactive<Record<string, any>>({
- id: '',
- status: undefined,
- delFlag: undefined,
- otherStatus: '',
- billDate: moment(new Date()).format('YYYY-MM-DD'),
- billCode: '',
- quotationProject: '',
- quotationProjectName: '',
- quotationCustomer: '',
- quotationCustomerName: '',
- quotationPeriodBegin: '',
- quotationPeriodEnd: '',
- busynessType: '',
- priority: '',
- productionClass: '',
- model: '',
- maker: '',
- currency:"",
- deliveryTerms: '',
- deliveryDayHead: '',
- paymentTerms: '',
- placeDelivery: '',
- custumerDiscount: '',
- saleDepartment:'',
- saleDepartmentName: '',
- packagingMethod:'',
- salesman: '',
- salesmanName: '',
- quotationNotes:"",
- attachs: '',
- supplierAttachs: '',
- sourceCode:'',
- exchangeRate:''
- });
- //表单验证
- const validatorRules = reactive({
- });
- const {resetFields, validate, validateInfos} = useForm(formData, validatorRules, {immediate: false});
- const dbData = {};
- const formItemLayout = {
- labelCol: {xs: {span: 24}, sm: {span: 8}},
- wrapperCol: {xs: {span: 24}, sm: {span: 13}},
- labelCol1: {xs: {span: 24}, sm: {span: 8}},
- wrapperCol1: {xs: {span: 24}, sm: {span: 13}},
- };
- // 表单禁用
- const disabled = computed(()=>{
- if(props.formBpm === true){
- if(props.formData.disabled === false){
- return false;
- }else{
- return true;
- }
- }
- return props.formDisabled;
- });
-
- //新增方法
- function add() {
- resetFields();
- saleQuotationFormShipTable.dataSource = [];
- saleQuotationFormProductTable.dataSource = [];
- activeKey.value = 'saleQuotationFormProduct'
- getOptiom()
- getCustomerOptions()
- quotationPeriod.value = []
- formData.salesman=userStore.getUserInfo.username;
- formData.salesmanName=userStore.getUserInfo.realname;
- formData.saleDepartment = userStore.getUserInfo.orgCode
- formData.saleDepartmentName = userStore.getUserInfo.orgName
- notAllowEdit.value = false
- }
- //编辑方法
- async function edit(row) {
- //主表数据
- await queryMainData(row.id);
- //子表数据
- const saleQuotationFormShipDataList = await querysaleQuotationFormShipListByMainId(row['id']);
- saleQuotationFormShipTable.dataSource = [...saleQuotationFormShipDataList];
- const saleQuotationFormProductDataList = await querySaleQuotationFormProductListByMainId(row['id']);
- saleQuotationFormProductTable.dataSource = [...saleQuotationFormProductDataList];
- getOptiom()
- getCustomerOptions()
- quotationPeriod.value[0]=formData.quotationPeriodBegin?moment(formData.quotationPeriodBegin):''
- quotationPeriod.value[1]=formData.quotationPeriodEnd?moment(formData.quotationPeriodEnd):''
- notAllowEdit.value=true
- }
- //获取主表
- async function queryMainData(id) {
- const row = await queryDataById(id);
- resetFields();
- const tmpData = {};
- Object.keys(formData).forEach((key) => {
- if(row.hasOwnProperty(key)){
- tmpData[key] = row[key]
- }
- })
- //赋值
- Object.assign(formData,tmpData);
- }
- const {getSubFormAndTableData, transformData} = useValidateAntFormAndTable(activeKey, {
- 'saleQuotationShip': saleQuotationFormShipTableRef,
- 'saleQuotationProduct': saleQuotationFormProductTableRef,
- });
- //获取表单信息
- async function getFormData() {
- try {
- // 触发表单验证
- await validate();
- } catch ({ errorFields }) {
- if (errorFields) {
- const firstField = errorFields[0];
- if (firstField) {
- formRef.value.scrollToField(firstField.name, { behavior: 'smooth', block: 'center' });
- }
- }
- return Promise.reject(errorFields);
- }
- return transformData(toRaw(formData))
- }
- //保存
- async function submitForm() {
- if(formData.sourceCode==''){
- message.warning('请选择供应商报价单')
- }else{
- const mainData = await getFormData();
- const subData = await getSubFormAndTableData();
- const values = Object.assign({}, dbData, mainData, subData);
- console.log('表单提交数据', values)
- const isUpdate = values.id ? true : false
- const isRevise = values.status=='1' ? true : false
- await saveOrUpdate(values, isUpdate,isRevise);
- //关闭弹窗
- emit('success');
- }
- }
-
- function setFieldsValue(values) {
- if(values){
- Object.keys(values).map(k=>{
- formData[k] = values[k];
- });
- }
- }
- /**
- * 值改变事件触发-树控件回调
- * @param key
- * @param value
- */
- function handleFormChange(key, value) {
- formData[key] = value;
- }
- //传明细-删除行
- async function handleDelete(prop) {
- var newArray = [...saleQuotationFormShipTable.dataSource]
- newArray.splice(prop.rowIndex, 1)
- saleQuotationFormShipTable.dataSource = newArray
- }
- //产品明细-删除行
- async function handleDelete1(prop) {
- var newArray = [...saleQuotationFormProductTable.dataSource]
- newArray.splice(prop.rowIndex, 1)
- saleQuotationFormProductTable.dataSource = newArray
- if( saleQuotationFormProductTable.dataSource.length!==0){
- var arr = []
- saleQuotationFormProductTable.dataSource.map(item=>{
- if(item.sourceId){
- arr.push(item.sourceId)
- }
- })
- if(arr.length==0){
- formData.sourceCode=''
- notAllowEdit.value=false
- }
- }else{
- formData.sourceCode=''
- notAllowEdit.value=false
- }
- }
- //查询船
- function selectShip(){
- SelectShipSModalRef.value.getTable()
- }
- //增行-船明细
- function addShip(data){
- var arr = data.concat(saleQuotationFormShipTable.dataSource)
- arr.map(item=>item.shipowner = item.relateCustomer)
- saleQuotationFormShipTable.dataSource=arr
- }
- //增行-产品明细
- async function addProduct(data){
- for (const item of data){
- item.productClass = item.classId_dictText
- item.productCode = item.code
- // item.unit = item.measurementUnit
- item.deliveryDayChild = formData.deliveryDayHead
- item.productId = item.id
- var obj = await getRowRate(item)
- item.taxRate = obj.rateNumber
- item.grossMargin = obj.grossMargin
- item.discount= formData.custumerDiscount!==''?formData.custumerDiscount:''
- }
- var arrProduct = data.concat(saleQuotationFormProductTable.dataSource)
- saleQuotationFormProductTable.dataSource=arrProduct
- }
- //选择项目
- function addProject(data) {
- if(data.length==0){
- formData.quotationProject =
- formData.quotationProjectName = ''
- }else{
- formData.quotationProject = data[0].id
- formData.quotationProjectName = data[0].code
- formData.quotationCustomer =data[0].customerId
- formData.quotationCustomerName =data[0].customerId_dictText
- formData.custumerDiscount==data[0].discount
- customerOption.value.map(item=>{
- if(item.value==data[0].customerId){
- formData.priority =item.priority
- formData.custumerDiscount=item.discount
- formData.paymentTerms=item.paymentTerms
- }
- })
- if(saleQuotationFormProductTable.dataSource.length>0){
- var newArr = [...saleQuotationFormProductTable.dataSource]
- newArr.map(item=>{
- item.discount = formData.custumerDiscount
- })
- saleQuotationFormProductTable.dataSource = newArr
- }
- }
- }
- //获取客户列表
- function getCustomerOptions(){
- let params = {pageSize:'-1',status:1}
- defHttp.get({url:'/cuspCode/cuspCustomerProfile/list',params}, { isTransformResponse: false }).then(res=>{
- if(res){
- customerOption.value = []
- res.result.records.forEach(item=>{
- customerOption.value.push({
- label: item.name,
- value: item.id,
- priority:item.priority,
- intermediatorCommission:item.intermediatorCommission,
- commission:item.commission,
- discount:item.discount,
- paymentTerms:item.paymentTerms
- })
- })
- }
- })
- }
- //查看配件信息
- function viewAccessory(prop){
- BaseShipArchiveAccessoriesListRef.value.getTable(prop.row)
- }
- //选择产品
- function selectProducts(){
- SelectPrpductModalRef.value.getTable()
- }
- //选择供应商报价单
- function chooseSupplier(){
- SelectSupplierQuotationRef.value.getTable(formData)
- }
- //选择项目
- function onSearchProject(){
- SelectProjectModalRef.value.getTable()
- }
- //获取产品分类下拉框
- function getOptiom(){
- defHttp
- .get({ url: 'baseCode/baseProductClass/list'}, { isTransformResponse: false })
- .then((res) => {
- if (res.success) {
- classOption.value = []
- res.result.records.forEach(element => {
- var obj = {
- label: element.name?element.name:'无名称请维护',
- value: element.id?element.id:'',
- taxRate: element.taxRate?element.taxRate:0,
- grossMargin: element.grossMargin?element.grossMargin:0
- };
- classOption.value.push( obj)
- });
- }
- })
- .finally(() => {
- // loading.value = false;
- });
- }
- //修改报价有效期
- function onChangequotationPeriod(data){
- quotationPeriod.value = data
- formData.quotationPeriodBegin = data[0].format('YYYY-MM-DD')
- formData.quotationPeriodEnd = data[1].format('YYYY-MM-DD')
- }
- //修改主表交期
- function changeDelivertTime(){
- if(saleQuotationFormProductTable.dataSource.length>0){
- const xTable = saleQuotationFormProductTableRef.value!.getXTable();
- var newArr = [...xTable.data]
- newArr.map(item=>{
- item.deliveryDayChild = formData.deliveryDayHead
- })
- saleQuotationFormProductTable.dataSource = newArr
- }
- }
- //查看上次报价
- function viewHistory(){
- ViewHistoryQuotationModalRef.value.getTable()
- }
- //查看版本详情
- async function VersionDetail(record){
- //主表数据
- await queryVersonHistoryData(record.id);
- //子表数据
- const saleQuotationFormShipDataList = await querysaleVersonFormShipListByMainId(record.id);
- saleQuotationFormShipTable.dataSource = [...saleQuotationFormShipDataList];
- const saleQuotationFormProductDataList = await querySaleVersonProductListByMainId(record.id);
- saleQuotationFormProductTable.dataSource = [...saleQuotationFormProductDataList];
- getOptiom()
- getCustomerOptions()
- quotationPeriod.value[0]=formData.quotationPeriodBegin?moment(formData.quotationPeriodBegin):''
- quotationPeriod.value[1]=formData.quotationPeriodEnd?moment(formData.quotationPeriodEnd):''
- }
- async function queryVersonHistoryData(id){
- const row = await queryVersonHistoryById(id);
- resetFields();
- const tmpData = {};
- Object.keys(formData).forEach((key) => {
- if(row.hasOwnProperty(key)){
- tmpData[key] = row[key]
- }
- })
- //赋值
- Object.assign(formData,tmpData);
- }
- //新增行-产品明细-选择供应商报价单
- async function addProductFromSupplier(data){
- //查询客户名称
- var obj = await SelectProjectModalRef.value.getCustom(data[0].inquiryProject)
- formData.quotationCustomer =obj.length==0?'':obj[0].customerId
- formData.quotationCustomerName =obj.length==0?'':obj[0].customerId_dictText
- for (const item of data){
- var obj = await getRowRate(item)
- item.taxRate = obj.rateNumber
- item.grossMargin = obj.grossMargin
- item.productClass = item.productClass
- item.productCode = item.productCode
- item.sourceId = item.childId
- item.fatherModel = item.model
- item.model = item.childModel
- item.deliveryTime = formData.deliveryTime
- item.supplierCurrency = item.currency
- item.supplierId = item.selectionSupplier
- item.supplierName = item.selectionSupplier_dictText
- item.purchasePrice = item.taxPrice
- item.taxAmount = 0
- }
- var arrProduct = data.concat(saleQuotationFormProductTable.dataSource)
- arrProduct.map(item=>{
- customerOption.value.map(event=>{
- if(event.value==formData.quotationCustomer){
- item.intermediatorCommission = event.intermediatorCommission,
- item.customerCommision = event.commission
- formData.custumerDiscount=event.discount
- item.discount = event.discount
- formData.paymentTerms = event.paymentTerms
- }
- })
- })
- saleQuotationFormProductTable.dataSource=arrProduct
- notAllowEdit.value=true
- formData.quotationProject = data[0].inquiryProject
- formData.quotationProjectName = data[0].projectName
- formData.sourceCode = data[0].billCode
- formData.priority = data[0].priority
- formData.model = data[0].fatherModel
- formData.maker = data[0].maker
- formData.productionClass = data[0].productionClass
- formData.deliveryDayHead = data[0].deliveryDayChild
- }
- async function getRowRate(row){
- var obj= {
- rateNumber:0,
- grossMargin:0
- }
- let params = {pageSize:'-1',status:1,code:row.productCode}
- await defHttp.get({url:'/baseCode/baseProductArchive/list',params}, { isTransformResponse: false }).then(res=>{
- if(res){
- if(res.result.records[0].taxRate&&res.result.records[0].taxRate!==''){
- obj.rateNumber= res.result.records[0].taxRate
- }else{
- classOption.value.map(event=>{
- if(event.label==row.productClass){
- obj.rateNumber = event.taxRate
- }
- })
- }
- classOption.value.map(event=>{
- if(event.label==row.productClass){
- obj.grossMargin = event.grossMargin
- }
- })
- }
- })
- return obj
- }
- function changeValues(prop){
- if(prop.col.key=='purchasePrice'||prop.col.key=='taxRate'||prop.col.key=='tariff'||prop.col.key=='discount'||prop.col.key=='grossMargin'||prop.col.key=='customerCommision'||prop.col.key=='intermediatorCommission'){
- //汇率默认为1
- formData.exchangeRate = (formData.exchangeRate==''||formData.exchangeRate===null)?1:formData.exchangeRate
- var num= prop.row.purchasePrice/Number(formData.exchangeRate)*(1+prop.row.taxRate/100)*(1+prop.row.tariff/100)*(1-prop.row.discount/100)/(1-prop.row.grossMargin/100-prop.row.customerCommision/100-prop.row.intermediatorCommission/100)
- prop.row.salePrice = num.toFixed(2)
- if(prop.row.quantity){
- prop.row.taxAmount = (prop.row.salePrice*prop.row.quantity).toFixed(2)
- }
- }
- if(prop.col.key=='quantity'&&prop.row.salePrice&&prop.row.quantity){
- prop.row.taxAmount = (prop.row.salePrice*prop.row.quantity).toFixed(2)
- }
- }
- function changeDiscountOrExchangeRate(){
- if(saleQuotationFormProductTable.dataSource.length>0){
- const xTable = saleQuotationFormProductTableRef.value!.getXTable();
- var newArr = [...xTable.data]
- formData.exchangeRate = (formData.exchangeRate==''||formData.exchangeRate===null)?1:formData.exchangeRate
- newArr.map(item=>{
- item.discount = formData.custumerDiscount
- if(item.purchasePrice&&item.taxRate&&item.tariff&&item.discount&&item.grossMargin&&item.customerCommision&&item.intermediatorCommission){
- //汇率默认为1
- var num= item.purchasePrice/Number(formData.exchangeRate)*(1+item.taxRate/100)*(1+item.tariff/100)*(1-item.discount/100)/(1-item.grossMargin/100-item.customerCommision/100-item.intermediatorCommission/100)
- item.salePrice = num.toFixed(2)
- if(item.quantity){
- item.taxAmount = (item.salePrice*item.quantity).toFixed(2)
- }
- }
- })
- saleQuotationFormProductTable.dataSource = newArr
- }
-
- }
- return {
- saleQuotationFormShipTableRef,
- saleQuotationFormShipTable,
- saleQuotationFormProductTableRef,
- saleQuotationFormProductTable,
- validatorRules,
- validateInfos,
- activeKey,
- loading,
- formData,
- setFieldsValue,
- handleFormChange,
- formItemLayout,
- disabled,
- getFormData,
- submitForm,
- SelectShipSModalRef,
- add,
- edit,
- formRef,
- selectShip,
- addShip,
- addProduct,
- BaseShipArchiveAccessoriesListRef,
- viewAccessory,
- handleDelete,
- handleDelete1,
- selectProducts,
- SelectPrpductModalRef,
- SelectProjectModalRef,
- ViewHistoryQuotationModalRef,
- SelectSupplierQuotationRef,
- onSearchProject,
- addProject,
- getOptiom,
- classOption,
- getCustomerOptions,
- customerOption,
- quotationPeriod,
- onChangequotationPeriod,
- chooseSupplier,
- changeDelivertTime,
- viewHistory,
- baseUrl,
- VersionDetail,
- queryVersonHistoryData,
- addProductFromSupplier,
- notAllowEdit,
- changeValues,
- getRowRate,
- changeDiscountOrExchangeRate,
- }
- }
- });
- </script>
- <style lang="less" scoped>
- /** 时间和数字输入框样式 */
- :deep(.ant-input-number) {
- width: 100%;
- }
- :deep(.ant-calendar-picker) {
- width: 100%;
- }
- /deep/.vxe-table--body-wrapper{
- height: 100% !important;
- }
- /deep/.ant-modal-body{
- padding: 24px !important;
- }
-
- /deep/.ant-form-item{
- margin-bottom: 8px !important;
- }
-
- </style>
|