[ADD/IMP] mass_editing : Added ChangeLog file and copyright info
parent
f0ff121c68
commit
f06d8b22ae
|
@ -0,0 +1,8 @@
|
||||||
|
===============================================================================
|
||||||
|
Version Change Log (mass_editing)
|
||||||
|
===============================================================================
|
||||||
|
1.2 * Feb 14,2013 : Serpent Consulting Services
|
||||||
|
* Corrected code as per the review by Community
|
||||||
|
|
||||||
|
1.1 * Feb 12,2013 : Serpent Consulting Services
|
||||||
|
* Added the module
|
|
@ -1,9 +1,8 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
##############################################################################
|
##############################################################################
|
||||||
#
|
#
|
||||||
# OpenERP, Open Source Management Solution
|
# This module uses OpenERP, Open Source Management Solution Framework.
|
||||||
# Copyright (C) 2012-Today Serpent Consulting Services (<http://www.serpentcs.com>)
|
# Copyright (C) 2012-Today Serpent Consulting Services (<http://www.serpentcs.com>)
|
||||||
# Copyright (C) 2010-Today OpenERP SA (<http://www.openerp.com>)
|
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
##############################################################################
|
##############################################################################
|
||||||
#
|
#
|
||||||
# OpenERP, Open Source Management Solution
|
# This module uses OpenERP, Open Source Management Solution Framework.
|
||||||
# Copyright (C) 2012-Today Serpent Consulting Services (<http://www.serpentcs.com>)
|
# Copyright (C) 2012-Today Serpent Consulting Services (<http://www.serpentcs.com>)
|
||||||
# Copyright (C) 2010-Today OpenERP SA (<http://www.openerp.com>)
|
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
@ -19,17 +18,16 @@
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>
|
# along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||||
#
|
#
|
||||||
##############################################################################
|
##############################################################################
|
||||||
|
|
||||||
|
|
||||||
{
|
{
|
||||||
"name" : "Mass Editing",
|
"name" : "Mass Editing",
|
||||||
"version" : "1.1",
|
"version" : "1.2",
|
||||||
"author" : "Serpent Consulting Services",
|
"author" : "Serpent Consulting Services",
|
||||||
"category" : "Tools",
|
"category" : "Tools",
|
||||||
"website" : "http://www.serpentcs.com",
|
"website" : "http://www.serpentcs.com",
|
||||||
"description": """This module provides the functionality to add, update or remove the values of more than one records on the fly at the same time.
|
"description": """This module provides the functionality to add, update or remove the values of more than one records on the fly at the same time.
|
||||||
You can configure mass editing for any OpenERP model.
|
You can configure mass editing for any OpenERP model.
|
||||||
The video explaining the features is available at http://t.co/wukYMx1A
|
The video explaining the features and how-to for OpenERP Version 6 is here http://t.co/wukYMx1A
|
||||||
|
The video explaining the features and how-to for OpenERP Version 7 is here : http://www.youtube.com/watch?v=9BH0o74A748&feature=youtu.be
|
||||||
For more details/customization/feedback contact us on contact@serpentcs.com.
|
For more details/customization/feedback contact us on contact@serpentcs.com.
|
||||||
""",
|
""",
|
||||||
'depends': ['base'],
|
'depends': ['base'],
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
##############################################################################
|
##############################################################################
|
||||||
#
|
#
|
||||||
# OpenERP, Open Source Management Solution
|
# This module uses OpenERP, Open Source Management Solution Framework.
|
||||||
# Copyright (C) 2012 Serpent Consulting Services (<http://www.serpentcs.com>)
|
# Copyright (C) 2012-Today Serpent Consulting Services (<http://www.serpentcs.com>)
|
||||||
# Copyright (C) 2010-Today OpenERP SA (<http://www.openerp.com>)
|
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
@ -20,7 +19,6 @@
|
||||||
#
|
#
|
||||||
##############################################################################
|
##############################################################################
|
||||||
|
|
||||||
|
|
||||||
from osv import fields, osv
|
from osv import fields, osv
|
||||||
from tools.translate import _
|
from tools.translate import _
|
||||||
from lxml import etree
|
from lxml import etree
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
##############################################################################
|
##############################################################################
|
||||||
#
|
#
|
||||||
# OpenERP, Open Source Management Solution
|
# This module uses OpenERP, Open Source Management Solution Framework.
|
||||||
# Copyright (C) 2012-Today Serpent Consulting Services (<http://www.serpentcs.com>)
|
# Copyright (C) 2012-Today Serpent Consulting Services (<http://www.serpentcs.com>)
|
||||||
# Copyright (C) 2010-Today OpenERP SA (<http://www.openerp.com>)
|
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
##############################################################################
|
##############################################################################
|
||||||
#
|
#
|
||||||
# OpenERP, Open Source Management Solution
|
# This module uses OpenERP, Open Source Management Solution Framework.
|
||||||
# Copyright (C) 2012-Today Serpent Consulting Services (<http://www.serpentcs.com>)
|
# Copyright (C) 2012-Today Serpent Consulting Services (<http://www.serpentcs.com>)
|
||||||
# Copyright (C) 2010-Today OpenERP SA (<http://www.openerp.com>)
|
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
|
Loading…
Reference in New Issue