Merge Invoice and Bill into Document

This commit is contained in:
Burak Çakırel
2020-12-24 01:28:38 +03:00
parent 830cc05957
commit 0c1424db47
436 changed files with 31655 additions and 37350 deletions

View File

@ -3,6 +3,10 @@ import Vue from 'vue';
import axios from 'axios';
import DropzoneFileUpload from './../components/Inputs/DropzoneFileUpload';
import AkauntingContactCard from './../components/AkauntingContactCard';
import AkauntingCompanyEdit from './../components/AkauntingCompanyEdit';
import AkauntingEditItemColumns from './../components/AkauntingEditItemColumns';
import AkauntingItemButton from './../components/AkauntingItemButton';
import AkauntingSearch from './../components/AkauntingSearch';
import AkauntingModal from './../components/AkauntingModal';
import AkauntingMoney from './../components/AkauntingMoney';
@ -27,6 +31,10 @@ import { concat } from 'lodash';
export default {
components: {
DropzoneFileUpload,
AkauntingContactCard,
AkauntingCompanyEdit,
AkauntingEditItemColumns,
AkauntingItemButton,
AkauntingSearch,
AkauntingRadioGroup,
AkauntingSelect,
@ -51,7 +59,7 @@ export default {
data: function () {
return {
component: '',
currency: null,
currency: null
}
},
@ -391,5 +399,17 @@ export default {
})
});
},
// Change Contact Card set form fields..
onChangeContactCard(contact) {
this.form.contact_id = contact.id;
this.form.contact_name = contact.name;
this.form.contact_email = contact.email;
this.form.contact_tax_number = contact.tax_number;
this.form.contact_phone = contact.phone;
this.form.contact_address = contact.address;
this.form.currency_code = contact.currency_code;
}
}
}
}