2
0
mirror of https://github.com/frappe/books.git synced 2025-01-23 07:08:36 +00:00
books/backend/patches/index.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.2 KiB
TypeScript
Raw Normal View History

import { Patch } from '../database/types';
2022-07-08 23:21:21 +05:30
import addUOMs from './addUOMs';
import createInventoryNumberSeries from './createInventoryNumberSeries';
2022-08-16 17:02:35 +05:30
import fixRoundOffAccount from './fixRoundOffAccount';
import testPatch from './testPatch';
2022-05-24 17:04:41 +05:30
import updateSchemas from './updateSchemas';
import setPaymentReferenceType from './setPaymentReferenceType';
import fixLedgerDateTime from './v0_21_0/fixLedgerDateTime';
import fixItemHSNField from './fixItemHSNField';
export default [
2022-04-22 16:32:03 +05:30
{ name: 'testPatch', version: '0.5.0-beta.0', patch: testPatch },
{
name: 'updateSchemas',
version: '0.5.0-beta.0',
patch: updateSchemas,
priority: 100,
},
2022-07-08 23:21:21 +05:30
{
name: 'addUOMs',
version: '0.6.0-beta.0',
patch: addUOMs,
},
2022-08-16 17:02:35 +05:30
{
name: 'fixRoundOffAccount',
version: '0.6.3-beta.0',
patch: fixRoundOffAccount,
},
{
name: 'createInventoryNumberSeries',
version: '0.6.6-beta.0',
patch: createInventoryNumberSeries,
2022-08-16 17:02:35 +05:30
},
{
name: 'setPaymentReferenceType',
2024-01-19 14:48:22 -08:00
version: '0.20.1',
patch: setPaymentReferenceType,
},
{
name: 'fixLedgerDateTime',
2024-02-07 20:12:30 -08:00
version: '0.21.2',
patch: fixLedgerDateTime,
},
{ name: 'fixItemHSNField', version: '0.24.0', patch: fixItemHSNField },
] as Patch[];