Commit 86d09b369ca8cc00ab265763a855f9fdaceb95a0
1 parent
7f29b08c
Exists in
3.5
and in
1 other branch
Delete table fiscalyear // Typo
Showing
2 changed files
with
4 additions
and
33 deletions
Show diff stats
accountingex/langs/en_US/accountingex.lang
... | ... | @@ -110,10 +110,10 @@ Codejournal=Journal |
110 | 110 | |
111 | 111 | DelBookKeeping=Delete the records of the general ledger |
112 | 112 | |
113 | -SellsJournal=Sell journal | |
114 | -PurchasesJournal=Purchase journal | |
115 | -DescSellsJournal=Sell journal | |
116 | -DescPurchasesJournal=Purchase journal | |
113 | +SellsJournal=Sells journal | |
114 | +PurchasesJournal=Purchases journal | |
115 | +DescSellsJournal=Sells journal | |
116 | +DescPurchasesJournal=Purchases journal | |
117 | 117 | BankJournal=Bank journal |
118 | 118 | DescBankJournal=Banl journal including all the types of payments other than cash |
119 | 119 | CashJournal=Cash journal | ... | ... |
accountingex/sql/llx_accountingfiscalyear.sql deleted
... | ... | @@ -1,29 +0,0 @@ |
1 | --- ============================================================================ | |
2 | --- Copyright (C) 2013-2014 Olivier Geffroy <jeff@jeffinfo.com> | |
3 | --- Copyright (C) 2013-2014 Alexandre Spangaro <alexandre.spangaro@gmail.com> | |
4 | --- | |
5 | --- This program is free software; you can redistribute it and/or modify | |
6 | --- it under the terms of the GNU General Public License as published by | |
7 | --- the Free Software Foundation; either version 2 of the License, or | |
8 | --- (at your option) any later version. | |
9 | --- | |
10 | --- This program is distributed in the hope that it will be useful, | |
11 | --- but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | --- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | --- GNU General Public License for more details. | |
14 | --- | |
15 | --- You should have received a copy of the GNU General Public License | |
16 | --- | |
17 | --- Table of fiscal year for accountancy expert module | |
18 | --- ============================================================================ | |
19 | - | |
20 | -create table llx_accountingfiscalyear | |
21 | -( | |
22 | - rowid integer AUTO_INCREMENT PRIMARY KEY, | |
23 | - label varchar(128) NOT NULL, | |
24 | - datestart date, | |
25 | - dateend date, | |
26 | - statut tinyint DEFAULT 0 NOT NULL, | |
27 | - entity integer DEFAULT 1 NOT NULL -- multi company id | |
28 | -)ENGINE=innodb; |