2019-11-19 19:10:01 +00:00
|
|
|
<template>
|
|
|
|
<div class="flex flex-col">
|
|
|
|
<PageHeader>
|
2019-12-04 17:26:40 +00:00
|
|
|
<BackLink slot="title" @click="$router.back()" />
|
2019-11-19 19:10:01 +00:00
|
|
|
<template slot="actions">
|
|
|
|
<Button
|
|
|
|
v-if="doc._notInserted || doc._dirty"
|
|
|
|
type="primary"
|
|
|
|
class="text-white text-xs ml-2"
|
|
|
|
@click="onSaveClick"
|
|
|
|
>{{ _('Save') }}</Button
|
|
|
|
>
|
|
|
|
<Button
|
|
|
|
v-if="!doc._dirty && !doc._notInserted && !doc.submitted"
|
|
|
|
type="primary"
|
|
|
|
class="text-white text-xs ml-2"
|
|
|
|
@click="onSubmitClick"
|
|
|
|
>{{ _('Submit') }}</Button
|
|
|
|
>
|
|
|
|
</template>
|
|
|
|
</PageHeader>
|
|
|
|
<div
|
|
|
|
class="flex justify-center flex-1 mb-8 mt-6"
|
|
|
|
v-if="meta"
|
|
|
|
:class="doc.submitted && 'pointer-events-none'"
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
class="border rounded-lg shadow h-full flex flex-col justify-between"
|
|
|
|
style="width: 600px"
|
|
|
|
>
|
|
|
|
<div>
|
|
|
|
<div class="mt-8 px-6">
|
|
|
|
<h1 class="text-2xl font-semibold">
|
|
|
|
{{ doc._notInserted ? _('New Journal Entry') : doc.name }}
|
|
|
|
</h1>
|
|
|
|
<div class="flex justify-between mt-2">
|
|
|
|
<div class="w-1/3">
|
|
|
|
<FormControl
|
|
|
|
:df="meta.getField('entryType')"
|
|
|
|
:value="doc.entryType"
|
|
|
|
placeholder="Entry Type"
|
|
|
|
@change="value => doc.set('entryType', value)"
|
2019-12-11 09:38:20 +00:00
|
|
|
input-class="bg-gray-100 px-3 py-2 text-base"
|
2019-11-19 19:10:01 +00:00
|
|
|
:show-label="true"
|
|
|
|
/>
|
|
|
|
<FormControl
|
|
|
|
class="mt-2"
|
|
|
|
:df="meta.getField('date')"
|
|
|
|
:value="doc.date"
|
|
|
|
:placeholder="'Date'"
|
|
|
|
@change="value => doc.set('date', value)"
|
2019-12-11 09:38:20 +00:00
|
|
|
input-class="bg-gray-100 px-3 py-2 text-base"
|
2019-11-19 19:10:01 +00:00
|
|
|
:show-label="true"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div class="w-1/3">
|
|
|
|
<FormControl
|
|
|
|
:df="meta.getField('referenceNumber')"
|
|
|
|
:value="doc.referenceNumber"
|
|
|
|
:placeholder="'Reference Number'"
|
|
|
|
@change="value => doc.set('referenceNumber', value)"
|
2019-12-11 09:38:20 +00:00
|
|
|
input-class="bg-gray-100 p-2 text-base"
|
2019-11-19 19:10:01 +00:00
|
|
|
:show-label="true"
|
|
|
|
/>
|
|
|
|
<FormControl
|
|
|
|
class="mt-2"
|
|
|
|
:df="meta.getField('referenceDate')"
|
|
|
|
:value="doc.date"
|
|
|
|
:placeholder="'Reference Date'"
|
|
|
|
@change="value => doc.set('referenceDate', value)"
|
2019-12-11 09:38:20 +00:00
|
|
|
input-class="bg-gray-100 px-3 py-2 text-base"
|
2019-11-19 19:10:01 +00:00
|
|
|
:show-label="true"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="mt-2 px-6 text-base">
|
|
|
|
<FormControl
|
|
|
|
:df="meta.getField('accounts')"
|
|
|
|
:value="doc.accounts"
|
|
|
|
:showHeader="true"
|
|
|
|
@change="value => doc.set('accounts', value)"
|
|
|
|
:read-only="doc.submitted"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="px-6 mb-6">
|
|
|
|
<div
|
|
|
|
class="grid items-center border-t pt-3 pr-2"
|
|
|
|
style="grid-template-columns: 1.3fr 1fr 1fr"
|
|
|
|
>
|
|
|
|
<div class="text-sm">
|
|
|
|
<FormControl
|
|
|
|
:df="meta.getField('userRemark')"
|
|
|
|
:value="doc.userRemark"
|
|
|
|
@change="value => doc.set('userRemark', value)"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div class="text-right font-semibold text-green-700 px-3">
|
|
|
|
{{ totalDebit }}
|
|
|
|
</div>
|
|
|
|
<div class="text-right font-semibold text-red-700 px-3">
|
|
|
|
{{ totalCredit }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import PageHeader from '@/components/PageHeader';
|
|
|
|
import Button from '@/components/Button';
|
|
|
|
import FormControl from '@/components/Controls/FormControl';
|
|
|
|
import Row from '@/components/Row';
|
|
|
|
import Dropdown from '@/components/Dropdown';
|
2019-12-03 13:10:21 +00:00
|
|
|
import { openQuickEdit } from '@/utils';
|
2019-12-04 17:26:40 +00:00
|
|
|
import BackLink from '@/components/BackLink';
|
2019-11-19 19:10:01 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'JournalEntryForm',
|
|
|
|
props: ['name'],
|
|
|
|
components: {
|
|
|
|
PageHeader,
|
|
|
|
Button,
|
|
|
|
FormControl,
|
|
|
|
Row,
|
2019-12-04 17:26:40 +00:00
|
|
|
Dropdown,
|
|
|
|
BackLink
|
2019-11-19 19:10:01 +00:00
|
|
|
},
|
|
|
|
provide() {
|
|
|
|
return {
|
|
|
|
doctype: 'JournalEntry',
|
|
|
|
name: this.name
|
|
|
|
};
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
doctype: 'JournalEntry',
|
|
|
|
meta: null,
|
|
|
|
itemsMeta: null,
|
|
|
|
doc: {},
|
|
|
|
partyDoc: null,
|
|
|
|
printSettings: null
|
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
totalDebit() {
|
|
|
|
let value = 0;
|
|
|
|
if (this.doc.accounts) {
|
|
|
|
value = this.doc.getSum('accounts', 'debit');
|
|
|
|
}
|
|
|
|
return frappe.format(value, 'Currency');
|
|
|
|
},
|
|
|
|
totalCredit() {
|
|
|
|
let value = 0;
|
|
|
|
if (this.doc.accounts) {
|
|
|
|
value = this.doc.getSum('accounts', 'credit');
|
|
|
|
}
|
|
|
|
return frappe.format(value, 'Currency');
|
|
|
|
}
|
|
|
|
},
|
|
|
|
async mounted() {
|
|
|
|
this.meta = frappe.getMeta(this.doctype);
|
|
|
|
this.doc = await frappe.getDoc(this.doctype, this.name);
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
async addNewItem() {
|
|
|
|
this.doc.append('items');
|
|
|
|
},
|
|
|
|
async onSaveClick() {
|
|
|
|
return this.doc.insertOrUpdate();
|
|
|
|
},
|
|
|
|
async onSubmitClick() {
|
|
|
|
await this.doc.submit();
|
|
|
|
},
|
|
|
|
async fetchPartyDoc() {
|
|
|
|
this.partyDoc = await frappe.getDoc(
|
|
|
|
'Party',
|
|
|
|
this.doc[this.partyField.fieldname]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|