-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
48 lines (32 loc) · 1.34 KB
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# -*- coding: utf-8 -*-
{
'name': "Account Internal Moves",
'summary': """
New Menu to manage internal moves on you companies""",
'description': """
This module give you a better way to make internal transfers between journals
- Allow to your users make internal transfers since pos.session kanban
- Give you a new menu on Account/Adviser/Internal transfers to show the internal transfers
IMAGES:
The button that appears on pos.session kanban to make internal transfers
https://github.com/serCliff/account_internal_moves/blob/10.0/img/pos_session.png
The account.payment form to make a internal transfer
https://github.com/serCliff/account_internal_moves/blob/10.0/img/account_payment.png
STILL MISSING
- Not transated
- Without seccurity groups
git: https://github.com/serCliff/account_internal_moves
""",
'author': "Sergio Del Castillo Baranda",
'website': "http://www.sergiodelcastillo.com",
'category': 'account',
'version': '0.1',
# any module necessary for this one to work correctly
'depends': ['account', 'point_of_sale'],
# always loaded
'data': [
# 'security/ir.model.access.csv',
'views/account_payment_views.xml',
'views/account_pos_moves_views.xml',
],
}