mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
f5cdbfa620
- Remove top border from Navbar - Link dropdown in Child Table - Form Modal
84 lines
2.1 KiB
Vue
84 lines
2.1 KiB
Vue
<template>
|
|
<div class="frappe-form-actions d-flex justify-content-between align-items-center">
|
|
<h5 class="m-0">{{ title }}</h5>
|
|
<div class="d-flex">
|
|
<f-button primary v-if="showSave" :disabled="disableSave" @click="$emit('save')">{{ _('Save') }}</f-button>
|
|
<f-button primary v-if="showSubmit" @click="$emit('submit')">{{ _('Submit') }}</f-button>
|
|
<f-button secondary v-if="showRevert" @click="$emit('revert')">{{ _('Revert') }}</f-button>
|
|
<dropdown class="ml-2" v-if="showNextAction" :label="_('Actions')" :options="links"></dropdown>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import frappe from 'frappejs';
|
|
import Dropdown from '../Dropdown';
|
|
|
|
export default {
|
|
props: ['doc', 'links'],
|
|
components: {
|
|
Dropdown
|
|
},
|
|
data() {
|
|
return {
|
|
isDirty: false,
|
|
showSave: false,
|
|
showSubmit: false,
|
|
showRevert: false,
|
|
showNextAction: false,
|
|
disableSave: false
|
|
}
|
|
},
|
|
created() {
|
|
this.doc.on('change', () => {
|
|
this.isDirty = this.doc._dirty;
|
|
this.updateShowSubmittable();
|
|
});
|
|
this.updateShowSubmittable();
|
|
},
|
|
methods: {
|
|
updateShowSubmittable() {
|
|
this.showSubmit =
|
|
this.meta.isSubmittable
|
|
&& !this.isDirty
|
|
&& !this.doc._notInserted
|
|
&& this.doc.submitted === 0;
|
|
|
|
this.showRevert =
|
|
this.meta.isSubmittable
|
|
&& !this.isDirty
|
|
&& !this.doc._notInserted
|
|
&& this.doc.submitted === 1;
|
|
|
|
this.showNextAction =
|
|
!this.doc._notInserted
|
|
&& this.links.length;
|
|
|
|
this.showSave =
|
|
this.doc._notInserted ?
|
|
true :
|
|
this.meta.isSubmittable ?
|
|
(this.isDirty ? true : false) :
|
|
true;
|
|
|
|
this.disableSave =
|
|
this.doc._notInserted ? false : !this.isDirty;
|
|
}
|
|
},
|
|
computed: {
|
|
meta() {
|
|
return frappe.getMeta(this.doc.doctype);
|
|
},
|
|
title() {
|
|
const _ = this._;
|
|
|
|
if (this.doc._notInserted) {
|
|
return _('New {0}', _(this.doc.doctype));
|
|
}
|
|
|
|
const titleField = this.meta.titleField || 'name';
|
|
return this.doc[titleField];
|
|
}
|
|
}
|
|
}
|
|
</script>
|