mirror of
https://github.com/frappe/books.git
synced 2024-11-08 14:50:56 +00:00
Merge pull request #622 from 18alantom/fixes
fix: dashboard scroll, print view sync, exchange rate bug - also fixes #611 #606 #607 #572 #582
This commit is contained in:
commit
299cd83cc9
@ -20,6 +20,7 @@ import { isPesa } from '../utils/index';
|
||||
import { getDbSyncError } from './errorHelpers';
|
||||
import {
|
||||
areDocValuesEqual,
|
||||
getFormulaSequence,
|
||||
getMissingMandatoryMessage,
|
||||
getPreDefaultValues,
|
||||
setChildDocIdx,
|
||||
@ -815,9 +816,9 @@ export class Doc extends Observable<DocValue | Doc[]> {
|
||||
}
|
||||
|
||||
async _applyFormulaForFields(doc: Doc, fieldname?: string) {
|
||||
const formulaFields = this.schema.fields.filter(
|
||||
({ fieldname }) => this.formulas?.[fieldname]
|
||||
);
|
||||
const formulaFields = getFormulaSequence(this.formulas)
|
||||
.map((f) => this.fyo.getField(this.schemaName, f))
|
||||
.filter(Boolean);
|
||||
|
||||
let changed = false;
|
||||
for (const field of formulaFields) {
|
||||
|
@ -1,11 +1,11 @@
|
||||
import { Fyo } from 'fyo';
|
||||
import { DocValue } from 'fyo/core/types';
|
||||
import { isPesa } from 'fyo/utils';
|
||||
import { isEqual } from 'lodash';
|
||||
import { Money } from 'pesa';
|
||||
import { cloneDeep, isEqual } from 'lodash';
|
||||
import { Field, FieldType, FieldTypeEnum } from 'schemas/types';
|
||||
import { getIsNullOrUndef } from 'utils';
|
||||
import { Doc } from './doc';
|
||||
import { FormulaMap } from './types';
|
||||
|
||||
export function areDocValuesEqual(
|
||||
dvOne: DocValue | Doc[],
|
||||
@ -149,3 +149,42 @@ export function setChildDocIdx(childDocs: Doc[]) {
|
||||
childDocs[idx].idx = +idx;
|
||||
}
|
||||
}
|
||||
|
||||
export function getFormulaSequence(formulas: FormulaMap) {
|
||||
const depMap = Object.keys(formulas).reduce((acc, k) => {
|
||||
acc[k] = formulas[k]?.dependsOn;
|
||||
return acc;
|
||||
}, {} as Record<string, string[] | undefined>);
|
||||
return sequenceDependencies(cloneDeep(depMap));
|
||||
}
|
||||
|
||||
function sequenceDependencies(
|
||||
depMap: Record<string, string[] | undefined>
|
||||
): string[] {
|
||||
/**
|
||||
* Sufficiently okay algo to sequence dependents after
|
||||
* their dependencies
|
||||
*/
|
||||
const keys = Object.keys(depMap);
|
||||
|
||||
const independent = keys.filter((k) => !depMap[k]?.length);
|
||||
const dependent = keys.filter((k) => depMap[k]?.length);
|
||||
|
||||
const keyset = new Set(independent);
|
||||
|
||||
for (const k of dependent) {
|
||||
const deps = depMap[k] ?? [];
|
||||
deps.push(k);
|
||||
|
||||
while (deps.length) {
|
||||
const d = deps.shift()!;
|
||||
if (keyset.has(d)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
keyset.add(d);
|
||||
}
|
||||
}
|
||||
|
||||
return Array.from(keyset).filter((k) => k in depMap);
|
||||
}
|
||||
|
@ -1,11 +1,29 @@
|
||||
import { Doc } from 'fyo/model/doc';
|
||||
import { ReadOnlyMap } from 'fyo/model/types';
|
||||
import { ReadOnlyMap, ValidationMap } from 'fyo/model/types';
|
||||
import { ValidationError } from 'fyo/utils/errors';
|
||||
|
||||
const invalidNumberSeries = /[/\=\?\&\%]/;
|
||||
|
||||
function getPaddedName(prefix: string, next: number, padZeros: number): string {
|
||||
return prefix + next.toString().padStart(padZeros ?? 4, '0');
|
||||
}
|
||||
|
||||
export default class NumberSeries extends Doc {
|
||||
validations: ValidationMap = {
|
||||
name: (value) => {
|
||||
if (typeof value !== 'string') {
|
||||
return;
|
||||
}
|
||||
|
||||
if (invalidNumberSeries.test(value)) {
|
||||
throw new ValidationError(
|
||||
this.fyo
|
||||
.t`The following characters cannot be used ${'/, ?, &, =, %'} in a Number Series name.`
|
||||
);
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
setCurrent() {
|
||||
let current = this.get('current') as number | null;
|
||||
|
||||
|
@ -384,6 +384,7 @@ export abstract class Invoice extends Transactional {
|
||||
|
||||
return await this.getExchangeRate();
|
||||
},
|
||||
dependsOn: ['party', 'currency'],
|
||||
},
|
||||
netTotal: { formula: async () => this.getSum('items', 'amount', false) },
|
||||
taxes: { formula: async () => await this.getTaxSummary() },
|
||||
@ -391,6 +392,7 @@ export abstract class Invoice extends Transactional {
|
||||
baseGrandTotal: {
|
||||
formula: async () =>
|
||||
(this.grandTotal as Money).mul(this.exchangeRate! ?? 1),
|
||||
dependsOn: ['grandTotal', 'exchangeRate'],
|
||||
},
|
||||
outstandingAmount: {
|
||||
formula: async () => {
|
||||
@ -471,9 +473,6 @@ export abstract class Invoice extends Transactional {
|
||||
baseGrandTotal: () =>
|
||||
this.exchangeRate === 1 || this.baseGrandTotal!.isZero(),
|
||||
grandTotal: () => !this.taxes?.length,
|
||||
entryCurrency: () => !this.isMultiCurrency,
|
||||
currency: () => !this.isMultiCurrency,
|
||||
exchangeRate: () => !this.isMultiCurrency,
|
||||
stockNotTransferred: () => !this.stockNotTransferred,
|
||||
outstandingAmount: () =>
|
||||
!!this.outstandingAmount?.isZero() || !this.isSubmitted,
|
||||
|
@ -286,7 +286,7 @@ export abstract class AccountReport extends LedgerReport {
|
||||
this.fromYear!,
|
||||
this.fyo
|
||||
);
|
||||
toDate = fy.toDate;
|
||||
toDate = DateTime.fromISO(fy.toDate).plus({ days: 1 }).toISODate();
|
||||
fromDate = fy.fromDate;
|
||||
}
|
||||
|
||||
|
@ -121,7 +121,7 @@
|
||||
"fieldtype": "Link",
|
||||
"target": "Currency",
|
||||
"readOnly": true,
|
||||
"tab": "Settings"
|
||||
"hidden": true
|
||||
},
|
||||
{
|
||||
"fieldname": "exchangeRate",
|
||||
@ -129,7 +129,7 @@
|
||||
"fieldtype": "Float",
|
||||
"default": 1,
|
||||
"readOnly": true,
|
||||
"tab": "Settings"
|
||||
"hidden": true
|
||||
},
|
||||
{
|
||||
"fieldname": "discountAfterTax",
|
||||
|
@ -140,7 +140,7 @@
|
||||
},
|
||||
{
|
||||
"fieldname": "hasSerialNumber",
|
||||
"label": "Has Serial Number.",
|
||||
"label": "Has Serial Number",
|
||||
"fieldtype": "Check",
|
||||
"default": false,
|
||||
"section": "Inventory"
|
||||
|
@ -65,7 +65,7 @@
|
||||
},
|
||||
{
|
||||
"fieldname": "enableSerialNumber",
|
||||
"label": "Enable Serial Number.",
|
||||
"label": "Enable Serial Number",
|
||||
"fieldtype": "Check",
|
||||
"section": "Features"
|
||||
},
|
||||
|
@ -35,9 +35,11 @@ export default defineComponent({
|
||||
return {
|
||||
timerId: null,
|
||||
barcode: '',
|
||||
cooldown: '',
|
||||
} as {
|
||||
timerId: null | ReturnType<typeof setInterval>;
|
||||
timerId: null | ReturnType<typeof setTimeout>;
|
||||
barcode: string;
|
||||
cooldown: string;
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
@ -64,6 +66,17 @@ export default defineComponent({
|
||||
return this.error(this.t`Invalid barcode value ${barcode}.`);
|
||||
}
|
||||
|
||||
/**
|
||||
* Between two entries of the same item, this adds
|
||||
* a cooldown period of 100ms. This is to prevent
|
||||
* double entry.
|
||||
*/
|
||||
if (this.cooldown === barcode) {
|
||||
return;
|
||||
}
|
||||
this.cooldown = barcode;
|
||||
setTimeout(() => (this.cooldown = ''), 100);
|
||||
|
||||
const items = (await this.fyo.db.getAll('Item', {
|
||||
filters: { barcode },
|
||||
fields: ['name'],
|
||||
@ -97,12 +110,10 @@ export default defineComponent({
|
||||
return await this.setItemFromBarcode();
|
||||
}
|
||||
|
||||
if (this.timerId !== null) {
|
||||
clearInterval(this.timerId);
|
||||
}
|
||||
this.clearInterval();
|
||||
|
||||
this.barcode += key;
|
||||
this.timerId = setInterval(async () => {
|
||||
this.timerId = setTimeout(async () => {
|
||||
await this.setItemFromBarcode();
|
||||
this.barcode = '';
|
||||
}, 20);
|
||||
@ -115,9 +126,15 @@ export default defineComponent({
|
||||
await this.selectItem(this.barcode);
|
||||
|
||||
this.barcode = '';
|
||||
if (this.timerId !== null) {
|
||||
clearInterval(this.timerId);
|
||||
this.clearInterval();
|
||||
},
|
||||
clearInterval() {
|
||||
if (this.timerId === null) {
|
||||
return;
|
||||
}
|
||||
|
||||
clearInterval(this.timerId);
|
||||
this.timerId = null;
|
||||
},
|
||||
error(message: string) {
|
||||
showToast({ type: 'error', message });
|
||||
|
@ -2,7 +2,13 @@
|
||||
<div>
|
||||
<!-- Datetime header -->
|
||||
<div class="flex justify-between items-center text-sm px-4 pt-4">
|
||||
<div class="text-blue-500">
|
||||
<div
|
||||
v-if="viewMonth !== month || viewYear !== year"
|
||||
class="text-gray-900"
|
||||
>
|
||||
{{ `${months[viewMonth]}, ${viewYear}` }}
|
||||
</div>
|
||||
<div v-else class="text-blue-500">
|
||||
{{ datetimeString }}
|
||||
</div>
|
||||
|
||||
|
@ -131,7 +131,8 @@ export default {
|
||||
},
|
||||
async openNewDoc() {
|
||||
const schemaName = this.df.target;
|
||||
const name = this.linkValue;
|
||||
const name =
|
||||
this.linkValue || fyo.doc.getTemporaryName(fyo.schemaMap[schemaName]);
|
||||
const filters = await this.getCreateFilters();
|
||||
const { openQuickEdit } = await import('src/utils/ui');
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<div class="overflow-hidden h-screen" style="width: var(--w-desk)">
|
||||
<div class="h-screen" style="width: var(--w-desk)">
|
||||
<PageHeader :title="t`Dashboard`">
|
||||
<div
|
||||
class="
|
||||
@ -20,11 +20,11 @@
|
||||
</div>
|
||||
</PageHeader>
|
||||
|
||||
<div class="no-scrollbar overflow-auto h-full">
|
||||
<div
|
||||
style="min-width: var(--w-desk-fixed); min-height: var(--h-app)"
|
||||
class="overflow-auto"
|
||||
>
|
||||
<div
|
||||
class="no-scrollbar overflow-auto"
|
||||
style="height: calc(100vh - var(--h-row-largest) - 1px)"
|
||||
>
|
||||
<div style="min-width: var(--w-desk-fixed)" class="overflow-auto">
|
||||
<Cashflow
|
||||
class="p-4"
|
||||
:common-period="period"
|
||||
|
@ -91,21 +91,20 @@ export default defineComponent({
|
||||
};
|
||||
},
|
||||
async mounted() {
|
||||
this.doc = await fyo.doc.getDoc(this.schemaName, this.name);
|
||||
await this.setTemplateList();
|
||||
await this.initialize();
|
||||
if (fyo.store.isDevelopment) {
|
||||
// @ts-ignore
|
||||
window.pv = this;
|
||||
}
|
||||
|
||||
await this.setTemplateFromDefault();
|
||||
if (!this.templateDoc && this.templateList.length) {
|
||||
await this.onTemplateNameChange(this.templateList[0]);
|
||||
}
|
||||
|
||||
if (this.doc) {
|
||||
this.values = await getPrintTemplatePropValues(this.doc as Doc);
|
||||
}
|
||||
},
|
||||
async activated() {
|
||||
await this.initialize();
|
||||
},
|
||||
unmounted() {
|
||||
this.reset();
|
||||
},
|
||||
deactivated() {
|
||||
this.reset();
|
||||
},
|
||||
computed: {
|
||||
helperMessage() {
|
||||
@ -191,6 +190,24 @@ export default defineComponent({
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
async initialize() {
|
||||
this.doc = await fyo.doc.getDoc(this.schemaName, this.name);
|
||||
await this.setTemplateList();
|
||||
await this.setTemplateFromDefault();
|
||||
if (!this.templateDoc && this.templateList.length) {
|
||||
await this.onTemplateNameChange(this.templateList[0]);
|
||||
}
|
||||
|
||||
if (this.doc) {
|
||||
this.values = await getPrintTemplatePropValues(this.doc as Doc);
|
||||
}
|
||||
},
|
||||
reset() {
|
||||
this.doc = null;
|
||||
this.values = null;
|
||||
this.templateList = [];
|
||||
this.templateDoc = null;
|
||||
},
|
||||
async onTemplateNameChange(value: string | null): Promise<void> {
|
||||
if (!value) {
|
||||
this.templateDoc = null;
|
||||
|
@ -18,7 +18,7 @@
|
||||
{{ t`Save as PDF` }}
|
||||
</Button>
|
||||
<Button
|
||||
v-if="doc && displayDoc"
|
||||
v-if="doc && doc.isCustom && displayDoc"
|
||||
:title="t`Toggle Edit Mode`"
|
||||
:icon="true"
|
||||
@click="toggleEditMode"
|
||||
@ -315,6 +315,7 @@ export default defineComponent({
|
||||
}
|
||||
},
|
||||
async activated(): Promise<void> {
|
||||
await this.initialize();
|
||||
docsPathRef.value = docsPathMap.PrintTemplate ?? '';
|
||||
this.setShortcuts();
|
||||
},
|
||||
@ -323,6 +324,11 @@ export default defineComponent({
|
||||
if (this.editMode) {
|
||||
this.disableEditMode();
|
||||
}
|
||||
|
||||
if (this.doc?.dirty) {
|
||||
return;
|
||||
}
|
||||
this.reset();
|
||||
},
|
||||
methods: {
|
||||
setShortcuts() {
|
||||
@ -357,6 +363,10 @@ export default defineComponent({
|
||||
|
||||
await this.setDisplayInitialDoc();
|
||||
},
|
||||
reset() {
|
||||
this.doc = null;
|
||||
this.displayDoc = null;
|
||||
},
|
||||
getTemplateEditorState() {
|
||||
const fallback = this.doc?.template ?? '';
|
||||
|
||||
|
@ -191,6 +191,7 @@ function getListViewList(fyo: Fyo): SearchItem[] {
|
||||
ModelNameEnum.AccountingLedgerEntry,
|
||||
ModelNameEnum.Currency,
|
||||
ModelNameEnum.NumberSeries,
|
||||
ModelNameEnum.PrintTemplate,
|
||||
];
|
||||
|
||||
const hasInventory = fyo.doc.singles.AccountingSettings?.enableInventory;
|
||||
|
@ -160,7 +160,7 @@ Dashboard,Dashboard,
|
||||
Date,Datum,
|
||||
"Date Format","Datum Format",
|
||||
Day,,
|
||||
Debit,Lastschrift,
|
||||
Debit,Soll,
|
||||
"Debit Note",,
|
||||
Debtors,Debitoren,
|
||||
"Default Account",Standard-Konto,
|
||||
|
|
Loading…
Reference in New Issue
Block a user