mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-25 09:09:48 +00:00
Compare commits
1 Commits
v0.9.12
...
abouhuolia
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
15a079c0e7 |
7
.gitignore
vendored
7
.gitignore
vendored
@@ -1,9 +1,4 @@
|
|||||||
node_modules/
|
node_modules/
|
||||||
|
data
|
||||||
# Docker volumes data directory
|
|
||||||
/data
|
|
||||||
|
|
||||||
# Production env file
|
|
||||||
.env
|
.env
|
||||||
|
|
||||||
test-results/
|
test-results/
|
||||||
14
CHANGELOG.md
14
CHANGELOG.md
@@ -2,20 +2,6 @@
|
|||||||
|
|
||||||
All notable changes to Bigcapital server-side will be in this file.
|
All notable changes to Bigcapital server-side will be in this file.
|
||||||
|
|
||||||
# [0.9.12] - 29-08-2023
|
|
||||||
|
|
||||||
* Refactor: split the services to multiple service classes. (by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/202)
|
|
||||||
* Fix: create quick customer/vendor by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/206
|
|
||||||
* Fix: typo in bill success message without bill number by @KalliopiPliogka in https://github.com/bigcapitalhq/bigcapital/pull/219
|
|
||||||
* Fix: AP/AR aging summary issue by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/229
|
|
||||||
* Fix: shouldn't write GL entries when save transaction as draft. by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/221
|
|
||||||
* Fix: Transaction type of credit note and vendor credit are not defined on account transactions by @abouolia in
|
|
||||||
* Fix: date format of filtering transactions by date range by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/231
|
|
||||||
* Fix: change the default from/date date value of reports by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/230
|
|
||||||
* Fix: typos in words start with `A` letter by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/227
|
|
||||||
* Fix: filter by customers, vendors and items in reports do not work by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/224
|
|
||||||
https://github.com/bigcapitalhq/bigcapital/pull/225
|
|
||||||
|
|
||||||
# [0.9.11] - 23-07-2023
|
# [0.9.11] - 23-07-2023
|
||||||
|
|
||||||
* added: Restart policy to docker compose files. by @suhaibaffan in https://github.com/bigcapitalhq/bigcapital/pull/198
|
* added: Restart policy to docker compose files. by @suhaibaffan in https://github.com/bigcapitalhq/bigcapital/pull/198
|
||||||
|
|||||||
@@ -1,28 +0,0 @@
|
|||||||
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',
|
|
||||||
};
|
|
||||||
@@ -59,9 +59,15 @@ export default class AccountTransaction extends TenantModel {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
filterDateRange(query, startDate, endDate, type = 'day') {
|
filterDateRange(query, startDate, endDate, type = 'day') {
|
||||||
const dateFormat = 'YYYY-MM-DD';
|
const dateFormat = 'YYYY-MM-DD HH:mm:ss';
|
||||||
const fromDate = moment(startDate).startOf(type).format(dateFormat);
|
const fromDate = moment(startDate)
|
||||||
const toDate = moment(endDate).endOf(type).format(dateFormat);
|
.utcOffset(0)
|
||||||
|
.startOf(type)
|
||||||
|
.format(dateFormat);
|
||||||
|
const toDate = moment(endDate)
|
||||||
|
.utcOffset(0)
|
||||||
|
.endOf(type)
|
||||||
|
.format(dateFormat);
|
||||||
|
|
||||||
if (startDate) {
|
if (startDate) {
|
||||||
query.where('date', '>=', fromDate);
|
query.where('date', '>=', fromDate);
|
||||||
@@ -105,6 +111,7 @@ export default class AccountTransaction extends TenantModel {
|
|||||||
query.modify('filterDateRange', null, toDate);
|
query.modify('filterDateRange', null, toDate);
|
||||||
query.modify('sumationCreditDebit');
|
query.modify('sumationCreditDebit');
|
||||||
},
|
},
|
||||||
|
|
||||||
contactsOpeningBalance(
|
contactsOpeningBalance(
|
||||||
query,
|
query,
|
||||||
openingDate,
|
openingDate,
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ export default class InventoryCostLotTracker extends TenantModel {
|
|||||||
query.groupBy('item_id');
|
query.groupBy('item_id');
|
||||||
},
|
},
|
||||||
filterDateRange(query, startDate, endDate, type = 'day') {
|
filterDateRange(query, startDate, endDate, type = 'day') {
|
||||||
const dateFormat = 'YYYY-MM-DD';
|
const dateFormat = 'YYYY-MM-DD HH:mm:ss';
|
||||||
const fromDate = moment(startDate).startOf(type).format(dateFormat);
|
const fromDate = moment(startDate).startOf(type).format(dateFormat);
|
||||||
const toDate = moment(endDate).endOf(type).format(dateFormat);
|
const toDate = moment(endDate).endOf(type).format(dateFormat);
|
||||||
|
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ export default class InventoryTransaction extends TenantModel {
|
|||||||
static get modifiers() {
|
static get modifiers() {
|
||||||
return {
|
return {
|
||||||
filterDateRange(query, startDate, endDate, type = 'day') {
|
filterDateRange(query, startDate, endDate, type = 'day') {
|
||||||
const dateFormat = 'YYYY-MM-DD';
|
const dateFormat = 'YYYY-MM-DD HH:mm:ss';
|
||||||
const fromDate = moment(startDate).startOf(type).format(dateFormat);
|
const fromDate = moment(startDate).startOf(type).format(dateFormat);
|
||||||
const toDate = moment(endDate).endOf(type).format(dateFormat);
|
const toDate = moment(endDate).endOf(type).format(dateFormat);
|
||||||
|
|
||||||
|
|||||||
@@ -176,7 +176,7 @@ export default class SaleInvoice extends mixin(TenantModel, [
|
|||||||
* Filters the invoices between the given date range.
|
* Filters the invoices between the given date range.
|
||||||
*/
|
*/
|
||||||
filterDateRange(query, startDate, endDate, type = 'day') {
|
filterDateRange(query, startDate, endDate, type = 'day') {
|
||||||
const dateFormat = 'YYYY-MM-DD';
|
const dateFormat = 'YYYY-MM-DD HH:mm:ss';
|
||||||
const fromDate = moment(startDate).startOf(type).format(dateFormat);
|
const fromDate = moment(startDate).startOf(type).format(dateFormat);
|
||||||
const toDate = moment(endDate).endOf(type).format(dateFormat);
|
const toDate = moment(endDate).endOf(type).format(dateFormat);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user