mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
chore: remove /data directory from git ignored dirs
This commit is contained in:
7
.gitignore
vendored
7
.gitignore
vendored
@@ -1,4 +1,9 @@
|
|||||||
node_modules/
|
node_modules/
|
||||||
data
|
|
||||||
|
# Docker volumes data directory
|
||||||
|
/data
|
||||||
|
|
||||||
|
# Production env file
|
||||||
.env
|
.env
|
||||||
|
|
||||||
test-results/
|
test-results/
|
||||||
28
packages/server/src/data/TransactionTypes.ts
Executable file
28
packages/server/src/data/TransactionTypes.ts
Executable file
@@ -0,0 +1,28 @@
|
|||||||
|
export const TransactionTypes = {
|
||||||
|
SaleInvoice: 'Sale invoice',
|
||||||
|
SaleReceipt: 'Sale receipt',
|
||||||
|
PaymentReceive: 'Payment receive',
|
||||||
|
Bill: 'Bill',
|
||||||
|
BillPayment: 'Payment made',
|
||||||
|
VendorOpeningBalance: 'Vendor opening balance',
|
||||||
|
CustomerOpeningBalance: 'Customer opening balance',
|
||||||
|
InventoryAdjustment: 'Inventory adjustment',
|
||||||
|
ManualJournal: 'Manual journal',
|
||||||
|
Journal: 'Manual journal',
|
||||||
|
Expense: 'Expense',
|
||||||
|
OwnerContribution: 'Owner contribution',
|
||||||
|
TransferToAccount: 'Transfer to account',
|
||||||
|
TransferFromAccount: 'Transfer from account',
|
||||||
|
OtherIncome: 'Other income',
|
||||||
|
OtherExpense: 'Other expense',
|
||||||
|
OwnerDrawing: 'Owner drawing',
|
||||||
|
InvoiceWriteOff: 'Invoice write-off',
|
||||||
|
|
||||||
|
CreditNote: 'transaction_type.credit_note',
|
||||||
|
VendorCredit: 'transaction_type.vendor_credit',
|
||||||
|
|
||||||
|
RefundCreditNote: 'transaction_type.refund_credit_note',
|
||||||
|
RefundVendorCredit: 'transaction_type.refund_vendor_credit',
|
||||||
|
|
||||||
|
LandedCost: 'transaction_type.landed_cost',
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user