Compare commits
3 Commits
feature/增加
...
feature/修改
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0630285483 | ||
|
|
84140f77a0 | ||
|
|
c91cb525b0 |
@@ -1,4 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from . import controllers
|
||||
from . import models
|
||||
@@ -1,35 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
{
|
||||
'name': "jikimo_account_process",
|
||||
|
||||
'summary': """
|
||||
处理会计凭证生成重复名称报错问题
|
||||
""",
|
||||
|
||||
'description': """
|
||||
Long description of module's purpose
|
||||
""",
|
||||
|
||||
'author': "My Company",
|
||||
'website': "https://www.yourcompany.com",
|
||||
|
||||
# Categories can be used to filter modules in modules listing
|
||||
# Check https://github.com/odoo/odoo/blob/16.0/odoo/addons/base/data/ir_module_category_data.xml
|
||||
# for the full list
|
||||
'category': 'Uncategorized',
|
||||
'version': '0.1',
|
||||
|
||||
# any module necessary for this one to work correctly
|
||||
'depends': ['base', 'account', 'l10n_cn'],
|
||||
|
||||
# always loaded
|
||||
'data': [
|
||||
# 'security/ir.model.access.csv',
|
||||
# 'views/views.xml',
|
||||
# 'views/templates.xml',
|
||||
],
|
||||
# only loaded in demonstration mode
|
||||
'demo': [
|
||||
# 'demo/demo.xml',
|
||||
],
|
||||
}
|
||||
@@ -1,3 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from . import controllers
|
||||
@@ -1,21 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# from odoo import http
|
||||
|
||||
|
||||
# class JikimoAccountProcess(http.Controller):
|
||||
# @http.route('/jikimo_account_process/jikimo_account_process', auth='public')
|
||||
# def index(self, **kw):
|
||||
# return "Hello, world"
|
||||
|
||||
# @http.route('/jikimo_account_process/jikimo_account_process/objects', auth='public')
|
||||
# def list(self, **kw):
|
||||
# return http.request.render('jikimo_account_process.listing', {
|
||||
# 'root': '/jikimo_account_process/jikimo_account_process',
|
||||
# 'objects': http.request.env['jikimo_account_process.jikimo_account_process'].search([]),
|
||||
# })
|
||||
|
||||
# @http.route('/jikimo_account_process/jikimo_account_process/objects/<model("jikimo_account_process.jikimo_account_process"):obj>', auth='public')
|
||||
# def object(self, obj, **kw):
|
||||
# return http.request.render('jikimo_account_process.object', {
|
||||
# 'object': obj
|
||||
# })
|
||||
@@ -1,4 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from . import models
|
||||
from . import account_move
|
||||
@@ -1,23 +0,0 @@
|
||||
from odoo import models, fields, api, _
|
||||
|
||||
from odoo.exceptions import ValidationError
|
||||
|
||||
|
||||
class CustomAccountMoveLine(models.Model):
|
||||
_inherit = 'account.move'
|
||||
_description = "account move line"
|
||||
|
||||
fapiao = fields.Char(string='发票号', size=20, copy=False, tracking=True, required=True)
|
||||
|
||||
@api.constrains('fapiao')
|
||||
def _check_fapiao(self):
|
||||
for record in self:
|
||||
if record.fapiao and (len(record.fapiao) != 20 or not record.fapiao.isdecimal()):
|
||||
raise ValidationError(_("Fapiao number is an 20-digit number. Please enter a correct one."))
|
||||
|
||||
@api.model_create_multi
|
||||
def create(self, vals):
|
||||
for val in vals:
|
||||
val['name'] = self.env['ir.sequence'].next_by_code('account.move') or '/'
|
||||
# 因为供应商与客户支付创建流程是先创建move line在修改来填充account_payment与move line的关联
|
||||
return super(CustomAccountMoveLine, self).create(vals)
|
||||
@@ -1,18 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# from odoo import models, fields, api
|
||||
|
||||
|
||||
# class jikimo_account_process(models.Model):
|
||||
# _name = 'jikimo_account_process.jikimo_account_process'
|
||||
# _description = 'jikimo_account_process.jikimo_account_process'
|
||||
|
||||
# name = fields.Char()
|
||||
# value = fields.Integer()
|
||||
# value2 = fields.Float(compute="_value_pc", store=True)
|
||||
# description = fields.Text()
|
||||
#
|
||||
# @api.depends('value')
|
||||
# def _value_pc(self):
|
||||
# for record in self:
|
||||
# record.value2 = float(record.value) / 100
|
||||
@@ -1 +0,0 @@
|
||||
from . import models
|
||||
@@ -1,36 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
{
|
||||
'name': "Database auto-backup",
|
||||
'summary': 'Automated backups',
|
||||
'description': """
|
||||
The Database Auto-Backup module enables the user to make configurations for the automatic backup of the database.
|
||||
Backups can be taken on the local system or on a remote server, through SFTP.
|
||||
You only have to specify the hostname, port, backup location and databasename (all will be pre-filled by default with correct data.
|
||||
If you want to write to an external server with SFTP you will need to provide the IP, username and password for the remote backups.
|
||||
The base of this module is taken from Odoo SA V6.1 (https://www.odoo.com/apps/modules/6.0/auto_backup/) and then upgraded and heavily expanded.
|
||||
This module is made and provided by Yenthe Van Ginneken (Oocademy).
|
||||
Automatic backup for all such configured databases can then be scheduled as follows:
|
||||
|
||||
1) Go to Settings / Technical / Automation / Scheduled actions.
|
||||
2) Search the action 'Backup scheduler'.
|
||||
3) Set it active and choose how often you wish to take backups.
|
||||
4) If you want to write backups to a remote location you should fill in the SFTP details.
|
||||
""",
|
||||
'author': "Yenthe Van Ginneken",
|
||||
'website': "http://www.odoo.yenthevg.com",
|
||||
'category': 'Administration',
|
||||
'version': '16.0.0.1',
|
||||
'installable': True,
|
||||
'license': 'LGPL-3',
|
||||
|
||||
# any module necessary for this one to work correctly
|
||||
'depends': ['base'],
|
||||
|
||||
# always loaded
|
||||
'data': [
|
||||
'security/user_groups.xml',
|
||||
'security/ir.model.access.csv',
|
||||
'views/backup_view.xml',
|
||||
'data/backup_data.xml',
|
||||
],
|
||||
}
|
||||
@@ -1,17 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<odoo>
|
||||
<data noupdate="1">
|
||||
<record id="backup_scheduler" model="ir.cron">
|
||||
<field name="interval_type">days</field>
|
||||
<field name="name">Backup scheduler</field>
|
||||
<field name="numbercall">-1</field>
|
||||
<field name="priority">5</field>
|
||||
<field name="doall">False</field>
|
||||
<field name="active">False</field>
|
||||
<field name="interval_number">1</field>
|
||||
<field name="model_id" ref="model_db_backup"/>
|
||||
<field name="state">code</field>
|
||||
<field name="code">model.schedule_backup()</field>
|
||||
</record>
|
||||
</data>
|
||||
</odoo>
|
||||
@@ -1,314 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auto_backup
|
||||
#
|
||||
# SaFi J. <info@daleeltech.com>, 2015.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 8.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-03-26 14:17+0000\n"
|
||||
"PO-Revision-Date: 2015-12-13 10:46+0300\n"
|
||||
"Last-Translator: SaFi J. <info@daleeltech.com>\n"
|
||||
"Language-Team: team@daleeltech.com\n"
|
||||
"Language: ar\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
|
||||
|
||||
#. module: auto_backup
|
||||
#: code:addons/auto_backup/backup_scheduler.py:137
|
||||
#, python-format
|
||||
msgid "%s"
|
||||
msgstr "%s"
|
||||
|
||||
#. module: auto_backup
|
||||
#: help:db.backup,bkp_dir:0
|
||||
msgid "Absolute path for storing the backups"
|
||||
msgstr "المسار الكامل لحفظ النسخ الاحتياطي"
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,sendmailsftpfail:0
|
||||
msgid "Auto. E-mail on backup fail"
|
||||
msgstr "إرسال بريد إلكتروني تلقائياً في حالة فشل النسخ الاحتياطي"
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,autoremove:0
|
||||
msgid "Auto. Remove Backups"
|
||||
msgstr "إزالة النسخ الاحتياطية تلقائياً"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:auto_backup.view_backup_conf_form
|
||||
msgid "Automatic backups of the database can be scheduled as follows:"
|
||||
msgstr "النسخ الاحتياطي التلقائي لقاعدة البيانات يمكن جدولته كالتالي"
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,bkp_dir:0
|
||||
msgid "Backup Directory"
|
||||
msgstr "دليل النسخ الاحتياطي"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:auto_backup.view_backup_conf_tree
|
||||
msgid "Backups"
|
||||
msgstr "النسخ الاحتياطية"
|
||||
|
||||
#. module: auto_backup
|
||||
#: help:db.backup,daystokeepsftp:0
|
||||
msgid "Choose after how many days the backup should be deleted from the FTP server. For example:\n"
|
||||
"If you fill in 5 the backups will be removed after 5 days from the FTP server."
|
||||
msgstr ""
|
||||
"اختر بعد كم من الأيام سيتم حذف النسخ الاحتياطي من خادم FTP مثلاً :\n إذا أدخلت "
|
||||
"5 فإن النسخ الاحتياطية سيتم إزالتها من خادم FTP بعد 5 أيام."
|
||||
|
||||
#. module: auto_backup
|
||||
#: help:db.backup,daystokeep:0
|
||||
msgid "Choose after how many days the backup should be deleted. For example:\n"
|
||||
"If you fill in 5 the backups will be removed after 5 days."
|
||||
msgstr ""
|
||||
"اختر بعد كم من الأيام سيتم حذف النسخ الاحتياطي مثلاً :\n إذا أدخلت 5 فإن النسخ "
|
||||
"الاحتياطية سيتم إزالتها بعد 5 أيام."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
|
||||
#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
|
||||
msgid "Configure Backup"
|
||||
msgstr "إعدادات النسخ الإحتياطي"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:auto_backup.view_backup_conf_form
|
||||
msgid "Contact us!"
|
||||
msgstr "اتصل بنا!"
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "تم ألإنشاء بواسطة"
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "تم ألإنشاء في"
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,name:0
|
||||
msgid "Database"
|
||||
msgstr "قاعدة البيانات"
|
||||
|
||||
#. module: auto_backup
|
||||
#: help:db.backup,name:0
|
||||
msgid "Database you want to schedule backups for"
|
||||
msgstr "قاعدة البيانات التي تريد جدولة النسخ الاحتياطي لها"
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,emailtonotify:0
|
||||
msgid "E-mail to notify"
|
||||
msgstr "تنبيه البريد الإلكتروني"
|
||||
|
||||
#. module: auto_backup
|
||||
#: code:addons/auto_backup/backup_scheduler.py:106
|
||||
#: constraint:db.backup:0
|
||||
#, python-format
|
||||
msgid "Error ! No such database exists!"
|
||||
msgstr "خطأ ! لا وجود لقاعدة البيانات هذه !"
|
||||
|
||||
#. module: auto_backup
|
||||
#: help:db.backup,emailtonotify:0
|
||||
msgid "Fill in the e-mail where you want to be notified that the backup failed on the FTP."
|
||||
msgstr ""
|
||||
"ادخل عنوان البريد الإلكتروني الذي تريد تنبيهك من خلاله عند فشل النسخ "
|
||||
"الاحتياطي على FTP."
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:auto_backup.view_backup_conf_form
|
||||
msgid "For example: /odoo/backups/"
|
||||
msgstr "مثلاً : /odoo/backups/"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:auto_backup.view_backup_conf_form
|
||||
msgid "Go to Settings / Technical / Automation / Scheduled Actions."
|
||||
msgstr "اذهب إلى الإعدادات / التقني / ألأتمته / جدولة الإخزاءات."
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:auto_backup.view_backup_conf_form
|
||||
msgid "Help"
|
||||
msgstr "المساعدة"
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,host:0
|
||||
msgid "Host"
|
||||
msgstr "المضيف"
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,id:0
|
||||
msgid "ID"
|
||||
msgstr "المعرف"
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,sftpip:0
|
||||
msgid "IP Address SFTP Server"
|
||||
msgstr "عنوان بروتوكول الأنترنت لخادم SFTP"
|
||||
|
||||
#. module: auto_backup
|
||||
#: help:db.backup,sendmailsftpfail:0
|
||||
msgid "If you check this option you can choose to automaticly get e-mailed when the backup to the external server failed."
|
||||
msgstr ""
|
||||
"إذا قمت بتأشير هذا الخيار ستستطيع اختيار استلام البريد الإلكتروني تلقائياً "
|
||||
"عند فشل النسخ الاحتياطي للخادوم الخارجي."
|
||||
|
||||
#. module: auto_backup
|
||||
#: help:db.backup,autoremove:0
|
||||
msgid "If you check this option you can choose to automaticly remove the backup after xx days"
|
||||
msgstr ""
|
||||
"إذا قمت بتأشير هذا الخيار ستستطيع اختيار الإزالة التلقائية للنسخ الاحتياطي "
|
||||
"بعد س من الأيام"
|
||||
|
||||
#. module: auto_backup
|
||||
#: help:db.backup,sftpwrite:0
|
||||
msgid "If you check this option you can specify the details needed to write to a remote server with SFTP."
|
||||
msgstr ""
|
||||
"إذا قمت بتأشير هذا الخيار ستستطيع تحديد التفاصيل المطلوبة للكتابة على الخادم "
|
||||
"البعيد من خلال SFTP."
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "آخر تحديث بواسطة"
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "آخر تحديث في"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:auto_backup.view_backup_conf_form
|
||||
msgid "Local backup configuration"
|
||||
msgstr "إعدادات النسخ الاحتياطي المحلي"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:auto_backup.view_backup_conf_form
|
||||
msgid "Need more help?"
|
||||
msgstr "هل تحتاج لمزيد من المساعدة ؟"
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,sftppassword:0
|
||||
msgid "Password User SFTP Server"
|
||||
msgstr "كلمة المرور لمستخدم خادم SFTP"
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,sftppath:0
|
||||
msgid "Path external server"
|
||||
msgstr "المسار الخارجي للخادم"
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,port:0
|
||||
msgid "Port"
|
||||
msgstr "المنفذ"
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,daystokeepsftp:0
|
||||
msgid "Remove SFTP after x days"
|
||||
msgstr "الإزالة من خادم SFTP بعد س من الأيام"
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,daystokeep:0
|
||||
msgid "Remove after x days"
|
||||
msgstr "الإزالة بعد س من الأيام"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:auto_backup.view_backup_conf_form
|
||||
msgid "SFTP"
|
||||
msgstr "SFTP"
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,sftpport:0
|
||||
msgid "SFTP Port"
|
||||
msgstr "منفذ SFTP"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:auto_backup.view_backup_conf_search
|
||||
msgid "Search options"
|
||||
msgstr "خيارات البحث"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:auto_backup.view_backup_conf_form
|
||||
msgid "Search the action named 'Backup scheduler'."
|
||||
msgstr "ابحث عن الأجزاء المسمى 'Backup scheduler'."
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:auto_backup.view_backup_conf_form
|
||||
msgid "Set the scheduler to active and fill in how often you want backups generated."
|
||||
msgstr "قم بتفعيل الجدولة واملأ كم تربد عادة توليد النسخ الاحتياطي."
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:auto_backup.view_backup_conf_form
|
||||
msgid "Test"
|
||||
msgstr "اختبار"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:auto_backup.view_backup_conf_form
|
||||
msgid "Test SFTP Connection"
|
||||
msgstr "اختبار توصيل SFTP"
|
||||
|
||||
#. module: auto_backup
|
||||
#: help:db.backup,sftpip:0
|
||||
msgid "The IP address from your remote server. For example 192.168.0.1"
|
||||
msgstr "عنوان بروتوكول الإنترنت من خادومك البعيد. مثلاً 192.168.0.1"
|
||||
|
||||
#. module: auto_backup
|
||||
#: help:db.backup,sftppath:0
|
||||
msgid "The location to the folder where the dumps should be written to. For example /odoo/backups/.\n"
|
||||
"Files will then be written to /odoo/backups/ on your remote server."
|
||||
msgstr ""
|
||||
"موقع المجلد التي يجب كتابة ملفات النسخ عليه. مثلاً /odoo/backups/.\n"
|
||||
"وحينها سيتم كتابة الملفات إلى /odoo/backups/ على خادومك البعيد."
|
||||
|
||||
#. module: auto_backup
|
||||
#: help:db.backup,sftppassword:0
|
||||
msgid "The password from the user where the SFTP connection should be made with. This is the password from the user on the external server."
|
||||
msgstr ""
|
||||
"كلمة المرور الذي من المفترض عمل اتصال SFTP من بها. هذا هي كلمة المرور على "
|
||||
"الخادم الخارجي."
|
||||
|
||||
#. module: auto_backup
|
||||
#: help:db.backup,sftpport:0
|
||||
msgid "The port on the FTP server that accepts SSH/SFTP calls."
|
||||
msgstr "المنفذ على خادم FTP الذي يقبل طلبات SSH/SFTP."
|
||||
|
||||
#. module: auto_backup
|
||||
#: help:db.backup,sftpusername:0
|
||||
msgid "The username where the SFTP connection should be made with. This is the user on the external server."
|
||||
msgstr ""
|
||||
"اسم المستخدم الذي من المفترض عمل اتصال SFTP من به. هذا هو المستخدم على "
|
||||
"الخادم الخارجي."
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:auto_backup.view_backup_conf_form
|
||||
msgid "This configures the scheduler for automatic backup of the given database running on given host at given port on regular intervals."
|
||||
msgstr ""
|
||||
"هذا الإعداد سيجدول النسخ الاحتياطي التلقائي لقاعدة بيانات معينة وسينفذ على "
|
||||
"مضيف معين بمنفذ معين خلال فترات متتابعة. "
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:auto_backup.view_backup_conf_form
|
||||
msgid "Use SFTP with caution! This writes files to external servers under the path you specify."
|
||||
msgstr ""
|
||||
"استخدم SFTP بحذر ! لأن هذا يؤدي لكتابة ملفات لخوادم خارجية على المسار الذي "
|
||||
"حددته."
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,sftpusername:0
|
||||
msgid "Username SFTP Server"
|
||||
msgstr "أسم المستخدم لخادم SFTP"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:auto_backup.view_backup_conf_form
|
||||
msgid "Warning:"
|
||||
msgstr "تحذير :"
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,sftpwrite:0
|
||||
msgid "Write to external server with sftp"
|
||||
msgstr "الكتابة على خادم خارجي من خلال sftp"
|
||||
@@ -1,158 +0,0 @@
|
||||
# Bulgarian translation for openobject-addons
|
||||
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
|
||||
# This file is distributed under the same license as the openobject-addons package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: openobject-addons\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2009-11-24 13:49+0000\n"
|
||||
"PO-Revision-Date: 2011-03-30 07:20+0000\n"
|
||||
"Last-Translator: Dimitar Markov <dimitar.markov@gmail.com>\n"
|
||||
"Language-Team: Bulgarian <bg@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2013-04-20 05:35+0000\n"
|
||||
"X-Generator: Launchpad (build 16567)\n"
|
||||
|
||||
#. module: auto_backup
|
||||
#: help:db.backup,name:0
|
||||
msgid "Database you want to schedule backups for"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: constraint:ir.model:0
|
||||
msgid ""
|
||||
"The Object name must start with x_ and not contain any special character !"
|
||||
msgstr ""
|
||||
"Името на обекта трябва да започва с x_ и не може да никакви специални знаци !"
|
||||
|
||||
#. module: auto_backup
|
||||
#: constraint:ir.actions.act_window:0
|
||||
msgid "Invalid model name in the action definition."
|
||||
msgstr "Невалидно име на модел при задаване на действие"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model,name:auto_backup.model_db_backup
|
||||
msgid "db.backup"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid ""
|
||||
"1) Go to Administration / Configuration / Scheduler / Scheduled Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
|
||||
#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
|
||||
msgid "Configure Backup"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "Test"
|
||||
msgstr "Тестване"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "IP Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: help:db.backup,bkp_dir:0
|
||||
msgid "Absolute path for storing the backups"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.module.module,shortdesc:auto_backup.module_meta_information
|
||||
msgid "Database Auto-Backup"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "Database Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "4) Set other values as per your preference"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,host:0
|
||||
msgid "Host"
|
||||
msgstr "Хост"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid ""
|
||||
"Automatic backup of all the databases under this can be scheduled as "
|
||||
"follows: "
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: constraint:ir.ui.view:0
|
||||
msgid "Invalid XML for View Architecture!"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,bkp_dir:0
|
||||
msgid "Backup Directory"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,name:0
|
||||
msgid "Database"
|
||||
msgstr "База данни"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "2) Schedule new action(create a new record)"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.module.module,description:auto_backup.module_meta_information
|
||||
msgid ""
|
||||
"The generic Open ERP Database Auto-Backup system enables the user to make "
|
||||
"configurations for the automatic backup of the database.\n"
|
||||
"User simply requires to specify host & port under IP Configuration & "
|
||||
"database(on specified host running at specified port) and backup "
|
||||
"directory(in which all the backups of the specified database will be stored) "
|
||||
"under Database Configuration.\n"
|
||||
"\n"
|
||||
"Automatic backup for all such configured databases under this can then be "
|
||||
"scheduled as follows: \n"
|
||||
" \n"
|
||||
"1) Go to Administration / Configuration / Scheduler / Scheduled Actions\n"
|
||||
"2) Schedule new action(create a new record)\n"
|
||||
"3) Set 'Object' to 'db.backup' and 'Function' to 'schedule_backup' under "
|
||||
"page 'Technical Data'\n"
|
||||
"4) Set other values as per your preference"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid ""
|
||||
"3) Set 'Object' to 'db.backup' and 'Function' to 'schedule_backup' under "
|
||||
"page 'Technical Data'"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "Help"
|
||||
msgstr "Помощ"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid ""
|
||||
"This configures the scheduler for automatic backup of the given database "
|
||||
"running on given host at given port on regular intervals."
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,port:0
|
||||
msgid "Port"
|
||||
msgstr "Порт"
|
||||
@@ -1,157 +0,0 @@
|
||||
# Catalan translation for openobject-addons
|
||||
# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
|
||||
# This file is distributed under the same license as the openobject-addons package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: openobject-addons\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2009-11-24 13:49+0000\n"
|
||||
"PO-Revision-Date: 2014-10-20 06:41+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Catalan <ca@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2014-10-21 06:30+0000\n"
|
||||
"X-Generator: Launchpad (build 17203)\n"
|
||||
|
||||
#. module: auto_backup
|
||||
#: help:db.backup,name:0
|
||||
msgid "Database you want to schedule backups for"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: constraint:ir.model:0
|
||||
msgid ""
|
||||
"The Object name must start with x_ and not contain any special character !"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: constraint:ir.actions.act_window:0
|
||||
msgid "Invalid model name in the action definition."
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model,name:auto_backup.model_db_backup
|
||||
msgid "db.backup"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid ""
|
||||
"1) Go to Administration / Configuration / Scheduler / Scheduled Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
|
||||
#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
|
||||
msgid "Configure Backup"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "IP Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: help:db.backup,bkp_dir:0
|
||||
msgid "Absolute path for storing the backups"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.module.module,shortdesc:auto_backup.module_meta_information
|
||||
msgid "Database Auto-Backup"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "Database Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "4) Set other values as per your preference"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,host:0
|
||||
msgid "Host"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid ""
|
||||
"Automatic backup of all the databases under this can be scheduled as "
|
||||
"follows: "
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: constraint:ir.ui.view:0
|
||||
msgid "Invalid XML for View Architecture!"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,bkp_dir:0
|
||||
msgid "Backup Directory"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,name:0
|
||||
msgid "Database"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "2) Schedule new action(create a new record)"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.module.module,description:auto_backup.module_meta_information
|
||||
msgid ""
|
||||
"The generic Open ERP Database Auto-Backup system enables the user to make "
|
||||
"configurations for the automatic backup of the database.\n"
|
||||
"User simply requires to specify host & port under IP Configuration & "
|
||||
"database(on specified host running at specified port) and backup "
|
||||
"directory(in which all the backups of the specified database will be stored) "
|
||||
"under Database Configuration.\n"
|
||||
"\n"
|
||||
"Automatic backup for all such configured databases under this can then be "
|
||||
"scheduled as follows: \n"
|
||||
" \n"
|
||||
"1) Go to Administration / Configuration / Scheduler / Scheduled Actions\n"
|
||||
"2) Schedule new action(create a new record)\n"
|
||||
"3) Set 'Object' to 'db.backup' and 'Function' to 'schedule_backup' under "
|
||||
"page 'Technical Data'\n"
|
||||
"4) Set other values as per your preference"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid ""
|
||||
"3) Set 'Object' to 'db.backup' and 'Function' to 'schedule_backup' under "
|
||||
"page 'Technical Data'"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid ""
|
||||
"This configures the scheduler for automatic backup of the given database "
|
||||
"running on given host at given port on regular intervals."
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,port:0
|
||||
msgid "Port"
|
||||
msgstr ""
|
||||
@@ -1,166 +0,0 @@
|
||||
# Spanish translation for openobject-addons
|
||||
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
|
||||
# This file is distributed under the same license as the openobject-addons package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: openobject-addons\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2009-11-24 13:49+0000\n"
|
||||
"PO-Revision-Date: 2011-08-23 19:48+0000\n"
|
||||
"Last-Translator: mgaja (GrupoIsep.com) <Unknown>\n"
|
||||
"Language-Team: Spanish <es@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2013-04-20 05:35+0000\n"
|
||||
"X-Generator: Launchpad (build 16567)\n"
|
||||
|
||||
#. module: auto_backup
|
||||
#: help:db.backup,name:0
|
||||
msgid "Database you want to schedule backups for"
|
||||
msgstr "Base de datos que desea programar copias de seguridad para"
|
||||
|
||||
#. module: auto_backup
|
||||
#: constraint:ir.model:0
|
||||
msgid ""
|
||||
"The Object name must start with x_ and not contain any special character !"
|
||||
msgstr ""
|
||||
"¡El objeto debe empezar con x_ y no puede contener ningún carácter especial!"
|
||||
|
||||
#. module: auto_backup
|
||||
#: constraint:ir.actions.act_window:0
|
||||
msgid "Invalid model name in the action definition."
|
||||
msgstr "Nombre del modelo inválido en la definición de acción."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model,name:auto_backup.model_db_backup
|
||||
msgid "db.backup"
|
||||
msgstr "backup.BBDD"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid ""
|
||||
"1) Go to Administration / Configuration / Scheduler / Scheduled Actions"
|
||||
msgstr ""
|
||||
"1) Vaya a Administración / Configuración / Programador / Acciones programadas"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
|
||||
#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
|
||||
msgid "Configure Backup"
|
||||
msgstr "Configurar copia de seguridad"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "Test"
|
||||
msgstr "Prueba"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "IP Configuration"
|
||||
msgstr "Configuración IP"
|
||||
|
||||
#. module: auto_backup
|
||||
#: help:db.backup,bkp_dir:0
|
||||
msgid "Absolute path for storing the backups"
|
||||
msgstr "Ruta absoluta para el almacenamiento de las copias de seguridad"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.module.module,shortdesc:auto_backup.module_meta_information
|
||||
msgid "Database Auto-Backup"
|
||||
msgstr "Copia de seguridad automática de Base de datos"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "Database Configuration"
|
||||
msgstr "Configuración de Base de Datos"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "4) Set other values as per your preference"
|
||||
msgstr "4) Establecer los demás valores según su preferencia"
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,host:0
|
||||
msgid "Host"
|
||||
msgstr "Host"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid ""
|
||||
"Automatic backup of all the databases under this can be scheduled as "
|
||||
"follows: "
|
||||
msgstr ""
|
||||
"Copia de seguridad automática de las bases de datos en virtud de este puede "
|
||||
"ser programado de la siguiente manera: "
|
||||
|
||||
#. module: auto_backup
|
||||
#: constraint:ir.ui.view:0
|
||||
msgid "Invalid XML for View Architecture!"
|
||||
msgstr "¡XML inválido para la definición de la vista!"
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,bkp_dir:0
|
||||
msgid "Backup Directory"
|
||||
msgstr "Directorio de la copia de seguridad"
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,name:0
|
||||
msgid "Database"
|
||||
msgstr "Base de datos"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "2) Schedule new action(create a new record)"
|
||||
msgstr "2) Lista de nuevas acciones (crear un nuevo registro)"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.module.module,description:auto_backup.module_meta_information
|
||||
msgid ""
|
||||
"The generic Open ERP Database Auto-Backup system enables the user to make "
|
||||
"configurations for the automatic backup of the database.\n"
|
||||
"User simply requires to specify host & port under IP Configuration & "
|
||||
"database(on specified host running at specified port) and backup "
|
||||
"directory(in which all the backups of the specified database will be stored) "
|
||||
"under Database Configuration.\n"
|
||||
"\n"
|
||||
"Automatic backup for all such configured databases under this can then be "
|
||||
"scheduled as follows: \n"
|
||||
" \n"
|
||||
"1) Go to Administration / Configuration / Scheduler / Scheduled Actions\n"
|
||||
"2) Schedule new action(create a new record)\n"
|
||||
"3) Set 'Object' to 'db.backup' and 'Function' to 'schedule_backup' under "
|
||||
"page 'Technical Data'\n"
|
||||
"4) Set other values as per your preference"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid ""
|
||||
"3) Set 'Object' to 'db.backup' and 'Function' to 'schedule_backup' under "
|
||||
"page 'Technical Data'"
|
||||
msgstr ""
|
||||
"3) Ajuste \"objeto\" a \"db.backup\" y \"función\" a \"programar copias de "
|
||||
"seguridad\" en la página \"Datos Técnicos\""
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "Help"
|
||||
msgstr "Ayuda"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid ""
|
||||
"This configures the scheduler for automatic backup of the given database "
|
||||
"running on given host at given port on regular intervals."
|
||||
msgstr ""
|
||||
"Esto configura el planificador de copia de seguridad automática de la base "
|
||||
"de datos dado que se ejecutan en el host dado en el puerto en intervalos "
|
||||
"regulares."
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,port:0
|
||||
msgid "Port"
|
||||
msgstr "Puerto"
|
||||
@@ -1,395 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auto_backup
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0-20180205\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-02-08 03:22+0000\n"
|
||||
"PO-Revision-Date: 2018-02-08 12:47+0900\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: ko_KR\n"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid ""
|
||||
"<b>Warning:</b>\n"
|
||||
" Use SFTP with caution! This writes files to external "
|
||||
"servers under the path you specify."
|
||||
msgstr ""
|
||||
"<b>경고:</b>\n"
|
||||
" 조심해서 SFTP를 사용하세요! 이것은 당신이 지정한 경로"
|
||||
"밑에 외부서버들로 파일들을 쓰게됩니다."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
|
||||
msgid "Absolute path for storing the backups"
|
||||
msgstr "백업저장용 절대경로명"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.module.category,name:auto_backup.module_management
|
||||
msgid "Auto backup access"
|
||||
msgstr "자동으로 백업 액세스하기"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup_send_mail_sftp_fail
|
||||
msgid "Auto. E-mail on backup fail"
|
||||
msgstr "백업실패시에 이메일로 알려주기 (자동)"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup_autoremove
|
||||
msgid "Auto. Remove Backups"
|
||||
msgstr "백업제거하기 (자동)"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Back-up view"
|
||||
msgstr "백업보기"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.ui.menu,name:auto_backup.auto_backup_menu
|
||||
msgid "Back-ups"
|
||||
msgstr "백업"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
|
||||
msgid "Backup Directory"
|
||||
msgstr "백업디렉토리"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup_backup_type
|
||||
msgid "Backup Type"
|
||||
msgstr "백업타입"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.actions.server,name:auto_backup.backup_scheduler_ir_actions_server
|
||||
#: model:ir.cron,cron_name:auto_backup.backup_scheduler
|
||||
#: model:ir.cron,name:auto_backup.backup_scheduler
|
||||
msgid "Backup scheduler"
|
||||
msgstr "백업스케줄러"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.ui.view,arch_db:auto_backup.view_backup_config_tree
|
||||
msgid "Backups"
|
||||
msgstr "백업"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep_sftp
|
||||
msgid ""
|
||||
"Choose after how many days the backup should be deleted from the FTP server. "
|
||||
"For example:\n"
|
||||
"If you fill in 5 the backups will be removed after 5 days from the FTP "
|
||||
"server."
|
||||
msgstr ""
|
||||
"FTP서버로부터 몇일지난 백업본을 삭제할지 선택하세요. 예를들면:\n"
|
||||
"만약 5를 기입하면 그 백업본들은 FTP서버에서 5일후에 삭제됩니다."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
|
||||
msgid ""
|
||||
"Choose after how many days the backup should be deleted. For example:\n"
|
||||
"If you fill in 5 the backups will be removed after 5 days."
|
||||
msgstr ""
|
||||
"FTP서버로부터 몇일지난 백업본을 삭제할지 선택하세요. 예를들면:\n"
|
||||
"만약 5를 기입하면 그 백업본들은 FTP서버에서 5일후에 삭제됩니다."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.actions.act_window,name:auto_backup.action_backup
|
||||
#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
|
||||
msgid "Configure back-ups"
|
||||
msgstr "백업구성하기"
|
||||
|
||||
#. module: auto_backup
|
||||
#: code:addons/auto_backup/models/db_backup.py:129
|
||||
#, python-format
|
||||
msgid "Connection Test Failed!"
|
||||
msgstr "연결테스트실패~"
|
||||
|
||||
#. module: auto_backup
|
||||
#: code:addons/auto_backup/models/db_backup.py:124
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connection Test Succeeded!\n"
|
||||
"Everything seems properly set up for FTP back-ups!"
|
||||
msgstr ""
|
||||
"연결테스트성공!\n"
|
||||
"모든게 적절히 세팅된거 같습니다!"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Contact me!"
|
||||
msgstr "저에게 연락하세요~"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
|
||||
msgid "Created by"
|
||||
msgstr "생성됨"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
|
||||
msgid "Created on"
|
||||
msgstr "생성됨"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
|
||||
msgid "Database"
|
||||
msgstr "데이터베이스"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup_name
|
||||
msgid "Database you want to schedule backups for"
|
||||
msgstr "백업을 스케줄하기 원하는 데이터베이스"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
|
||||
msgid "Display Name"
|
||||
msgstr "표시이름"
|
||||
|
||||
#. module: auto_backup
|
||||
#: selection:db.backup,backup_type:0
|
||||
msgid "Dump"
|
||||
msgstr "덤프"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup_email_to_notify
|
||||
msgid "E-mail to notify"
|
||||
msgstr "통보할 이메일주소"
|
||||
|
||||
#. module: auto_backup
|
||||
#: code:addons/auto_backup/models/db_backup.py:98 constraint:db.backup:0
|
||||
#, python-format
|
||||
msgid "Error ! No such database exists!"
|
||||
msgstr "에러~ 그런 데이터베이스가 존재하지 않습니다"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup_email_to_notify
|
||||
msgid ""
|
||||
"Fill in the e-mail where you want to be notified that the backup failed on "
|
||||
"the FTP."
|
||||
msgstr "FTP서버상에서 백업실패할때 알림받기원하는 이메일주소를 채워넣으세요"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "For example: /odoo/backups/"
|
||||
msgstr "예: /odoo/backups/"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Go to Settings / Technical / Automation / Scheduled Actions."
|
||||
msgstr "Settings / Technical / Automation / Scheduled Actions 으로 가세요."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Help"
|
||||
msgstr "도움말"
|
||||
|
||||
#. module: auto_backup
|
||||
#: code:addons/auto_backup/models/db_backup.py:132
|
||||
#, python-format
|
||||
msgid "Here is what we got instead:\n"
|
||||
msgstr "우리가 대신하는것이 여기있습니다:\n"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup_host
|
||||
msgid "Host"
|
||||
msgstr "호스트"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
|
||||
msgid "IP Address SFTP Server"
|
||||
msgstr "SFTP서버 IP주소"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup_send_mail_sftp_fail
|
||||
msgid ""
|
||||
"If you check this option you can choose to automaticly get e-mailed when the "
|
||||
"backup to the external server failed."
|
||||
msgstr ""
|
||||
"이 옵션을 체크하면 외부서버에서 백업실패할때 자동적으로 이메일하도록 선택할 "
|
||||
"수 있습니다."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup_autoremove
|
||||
msgid ""
|
||||
"If you check this option you can choose to automaticly remove the backup "
|
||||
"after xx days"
|
||||
msgstr ""
|
||||
"이 옵션을 선택하면 자동적으로 며칠(xx days)후에 백업을 제거하도록 선택할 수 "
|
||||
"있습니다"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_write
|
||||
msgid ""
|
||||
"If you check this option you can specify the details needed to write to a "
|
||||
"remote server with SFTP."
|
||||
msgstr ""
|
||||
"이 옵션을 선택하면 SFTP 원격서버로 쓰려고 할때 요구되는 정보를 지정할 수 있습"
|
||||
"니다."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "최근수정일자"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "최근수정자"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "최근업데이트일자"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Local backup configuration"
|
||||
msgstr "로컬백업환경설정"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:res.groups,name:auto_backup.group_manager
|
||||
msgid "Manager"
|
||||
msgstr "관리자"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Need more help?"
|
||||
msgstr "더 도움이 필요하세요?"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
|
||||
msgid "Password User SFTP Server"
|
||||
msgstr "SFTP서버 사용자 패스워드"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_path
|
||||
msgid "Path external server"
|
||||
msgstr "외부서버경로"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup_port
|
||||
msgid "Port"
|
||||
msgstr "포트"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep_sftp
|
||||
msgid "Remove SFTP after x days"
|
||||
msgstr "몇일후에 SFTP 제거"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
|
||||
msgid "Remove after x days"
|
||||
msgstr "몇일후에 제거하기"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "SFTP"
|
||||
msgstr "SFTP"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
|
||||
msgid "SFTP Port"
|
||||
msgstr "SFTP 포트"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Search the action named 'Backup scheduler'."
|
||||
msgstr "'백업스케줄러'라고 명명된 액션을 검색하세요"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid ""
|
||||
"Set the scheduler to active and fill in how often you want backups generated."
|
||||
msgstr "스케줄러를 활성화로 세팅하고 백업주기를 채워넣으세요"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Test SFTP Connection"
|
||||
msgstr "SFTP연결테스트"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
|
||||
msgid "The IP address from your remote server. For example 192.168.0.1"
|
||||
msgstr "원격서버로부터의 IP주소. 예를들자면, 192.168.0.1"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_path
|
||||
msgid ""
|
||||
"The location to the folder where the dumps should be written to. For "
|
||||
"example /odoo/backups/.\n"
|
||||
"Files will then be written to /odoo/backups/ on your remote server."
|
||||
msgstr ""
|
||||
"덤프파일이 씌어져야하는 폴더위치. 예를들어보자면 /odoo/backups/.\n"
|
||||
"그 다음에 파일들은 당신서버상의 /odoo/backups/ 로 쓰여질겁니다."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
|
||||
msgid ""
|
||||
"The password from the user where the SFTP connection should be made with. "
|
||||
"This is the password from the user on the external server."
|
||||
msgstr ""
|
||||
"SFTP연결이 만들어져야하는 그 사용자의 비밀번호. 이것은 외부서버상의 그 사용자"
|
||||
"의 비밀번호예요~"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
|
||||
msgid "The port on the FTP server that accepts SSH/SFTP calls."
|
||||
msgstr "SSH/SFTP접속을 허용하는 FTP서버상의 포트"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
|
||||
msgid ""
|
||||
"The username where the SFTP connection should be made with. This is the user "
|
||||
"on the external server."
|
||||
msgstr "SFTP연결할 사용자명. 외부서버상의 사용자명이예요~ "
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid ""
|
||||
"This configures the scheduler for automatic backup of the given database "
|
||||
"running on given host\n"
|
||||
" at given port on regular intervals.\n"
|
||||
" <br/>\n"
|
||||
" Automatic backups of the database can be scheduled "
|
||||
"as follows:"
|
||||
msgstr ""
|
||||
"이것은 정기적인 간격으로 해당 호스트상에서 실행중인 데이터베이스의 자동백업용"
|
||||
"으로 스케줄러를 구성합니다. 그 데이터베이스의 자동백업들은 아래처럼 스케줄될 "
|
||||
"수 있습니다:"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.module.category,description:auto_backup.module_management
|
||||
msgid "User access level for this module"
|
||||
msgstr "이 모듈용 사용자접근레벨"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
|
||||
msgid "Username SFTP Server"
|
||||
msgstr "SFTP서버 사용자명"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_write
|
||||
msgid "Write to external server with sftp"
|
||||
msgstr "sftp와 함께 외부서버로 쓰기"
|
||||
|
||||
#. module: auto_backup
|
||||
#: selection:db.backup,backup_type:0
|
||||
msgid "Zip"
|
||||
msgstr "Zip"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model,name:auto_backup.model_db_backup
|
||||
msgid "db.backup"
|
||||
msgstr "db.backup"
|
||||
@@ -1,380 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auto_backup
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 13.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-10-20 13:29+0000\n"
|
||||
"PO-Revision-Date: 2019-10-20 13:29+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid ""
|
||||
"<b>Warning:</b>\n"
|
||||
" Use SFTP with caution! This writes files to external servers under the path you specify."
|
||||
msgstr "<b>Waarschuwing:</b>\n"
|
||||
" Gebruik SFTP voorzichtig! Dit schrijft bestanden naar externe servers onder het pad dat u opgeeft."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
|
||||
msgid "Absolute path for storing the backups"
|
||||
msgstr "Absoluut pad om backups te bewaren"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.module.category,name:auto_backup.module_management
|
||||
msgid "Auto backup access"
|
||||
msgstr "Auto backup toegang"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__send_mail_sftp_fail
|
||||
msgid "Auto. E-mail on backup fail"
|
||||
msgstr "Auto. e-mail bij mislukte back-up"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__autoremove
|
||||
msgid "Auto. Remove Backups"
|
||||
msgstr "Auto. e-mailen wanneer backup mislukt"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Back-up view"
|
||||
msgstr "Back-up weergave"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.ui.menu,name:auto_backup.auto_backup_menu
|
||||
msgid "Back-ups"
|
||||
msgstr "Back-ups"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
|
||||
msgid "Backup Directory"
|
||||
msgstr "Backup folder"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_type
|
||||
msgid "Backup Type"
|
||||
msgstr "Soort back-up"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model,name:auto_backup.model_db_backup
|
||||
msgid "Backup configuration record"
|
||||
msgstr "Back-up configuratie"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.actions.server,name:auto_backup.backup_scheduler_ir_actions_server
|
||||
#: model:ir.cron,cron_name:auto_backup.backup_scheduler
|
||||
#: model:ir.cron,name:auto_backup.backup_scheduler
|
||||
msgid "Backup scheduler"
|
||||
msgstr "Backup planner"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_tree
|
||||
msgid "Backups"
|
||||
msgstr "Back-ups"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep_sftp
|
||||
msgid ""
|
||||
"Choose after how many days the backup should be deleted from the FTP server. For example:\n"
|
||||
"If you fill in 5 the backups will be removed after 5 days from the FTP server."
|
||||
msgstr "Kies na hoeveel dagen de backups verwijderd moeten worden van de FTP server. Bijvoorbeeld:\n"
|
||||
"Als u 5 invult zal de backup na 5 dagen verwijderd worden van de FTP server."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
|
||||
msgid ""
|
||||
"Choose after how many days the backup should be deleted. For example:\n"
|
||||
"If you fill in 5 the backups will be removed after 5 days."
|
||||
msgstr "Kies na hoeveel dagen de backups verwijderd moeten worden van de FTP server. Bijvoorbeeld:\n"
|
||||
"Als u 5 invult zal de backup na 5 dagen verwijderd worden van de FTP server."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.actions.act_window,name:auto_backup.action_backup
|
||||
#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
|
||||
msgid "Configure back-ups"
|
||||
msgstr "Configureer back-ups"
|
||||
|
||||
#. module: auto_backup
|
||||
#: code:addons/auto_backup/models/db_backup.py:0
|
||||
#, python-format
|
||||
msgid "Connection Test Failed!"
|
||||
msgstr "Connectie test mislukt!"
|
||||
|
||||
#. module: auto_backup
|
||||
#: code:addons/auto_backup/models/db_backup.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connection Test Succeeded!\n"
|
||||
"Everything seems properly set up for FTP back-ups!"
|
||||
msgstr "Connectie test succesvol!\n"
|
||||
"Alles lijkt correct opgezet voor FTP back-ups!"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Contact me!"
|
||||
msgstr "Contacteer mij!"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Aangemaakt door"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Aangemaakt op"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
|
||||
msgid "Database"
|
||||
msgstr "Database"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__name
|
||||
msgid "Database you want to schedule backups for"
|
||||
msgstr "Dataabse waar u back-ups voor wilt plannen"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Schermnaam"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_type__dump
|
||||
msgid "Dump"
|
||||
msgstr "Dump"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__email_to_notify
|
||||
msgid "E-mail to notify"
|
||||
msgstr "E-mail om te verwittigen"
|
||||
|
||||
#. module: auto_backup
|
||||
#: code:addons/auto_backup/models/db_backup.py:0
|
||||
#, python-format
|
||||
msgid "Error ! No such database exists!"
|
||||
msgstr "Fout! Deze database bestaat niet!"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__email_to_notify
|
||||
msgid ""
|
||||
"Fill in the e-mail where you want to be notified that the backup failed on "
|
||||
"the FTP."
|
||||
msgstr "Vul de e-mail in waarop u wilt verwittigd worden als de backup mislukt op de FTP."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "For example: /odoo/backups/"
|
||||
msgstr "Bijvoorbeeld: /odoo/backups/"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Go to Settings / Technical / Automation / Scheduled Actions."
|
||||
msgstr "Ga naar Instellingen / Technisch / Automatisering / Geplande acties."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Help"
|
||||
msgstr "Help"
|
||||
|
||||
#. module: auto_backup
|
||||
#: code:addons/auto_backup/models/db_backup.py:0
|
||||
#, python-format
|
||||
msgid "Here is what we got instead:\n"
|
||||
msgstr "Hier is wat we in de plaats terugkregen:\n"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__host
|
||||
msgid "Host"
|
||||
msgstr "Host"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
|
||||
msgid "IP Address SFTP Server"
|
||||
msgstr "IP adres SFTP server"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__send_mail_sftp_fail
|
||||
msgid ""
|
||||
"If you check this option you can choose to automaticly get e-mailed when the"
|
||||
" backup to the external server failed."
|
||||
msgstr "Als u deze optie aanvinkt kan u kiezen om automatisch een e-mail aan te krijgen als de backuaar de externe server mislukt."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__autoremove
|
||||
msgid ""
|
||||
"If you check this option you can choose to automaticly remove the backup "
|
||||
"after xx days"
|
||||
msgstr "Als u deze optie aanvinkt kan u kiezen om automatisch backups te verwijderen "
|
||||
"na xx dagen"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_write
|
||||
msgid ""
|
||||
"If you check this option you can specify the details needed to write to a "
|
||||
"remote server with SFTP."
|
||||
msgstr "Als u deze optie aanvinkt kan u de details invullen die nodig zijn om te connecteren met de "
|
||||
" externe SFTP server"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst gewijzigd op"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laatst bijgewerkt door"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Local backup configuration"
|
||||
msgstr "Lokale back-up configuratie"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:res.groups,name:auto_backup.group_manager
|
||||
msgid "Manager"
|
||||
msgstr "Beheerder"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Need more help?"
|
||||
msgstr "Meer hulp nodig?"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
|
||||
msgid "Password User SFTP Server"
|
||||
msgstr "Wachtwoord gebruiker SFTP server"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_path
|
||||
msgid "Path external server"
|
||||
msgstr "Pad externe server"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__port
|
||||
msgid "Port"
|
||||
msgstr "Poort"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep_sftp
|
||||
msgid "Remove SFTP after x days"
|
||||
msgstr "Verwijderd SFTP na x dagen"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
|
||||
msgid "Remove after x days"
|
||||
msgstr "Verwijder na x dagen"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "SFTP"
|
||||
msgstr "SFTP"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
|
||||
msgid "SFTP Port"
|
||||
msgstr "SFTP poort"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Search the action named 'Backup scheduler'."
|
||||
msgstr "Zoek de actie met de naam 'Backup planner'."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid ""
|
||||
"Set the scheduler to active and fill in how often you want backups "
|
||||
"generated."
|
||||
msgstr "Zet de planner actief en vul in hoe vaak u wilt dat er backups gegenereerd "
|
||||
"worden."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Test SFTP Connection"
|
||||
msgstr "Test SFTP verbinding"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
|
||||
msgid "The IP address from your remote server. For example 192.168.0.1"
|
||||
msgstr "Het IP adres van uw externe server. Bijvoorbeeld: 192.168.0.1"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_path
|
||||
msgid ""
|
||||
"The location to the folder where the dumps should be written to. For example /odoo/backups/.\n"
|
||||
"Files will then be written to /odoo/backups/ on your remote server."
|
||||
msgstr "De locatie naar de folder waar de backup naar toe moet geschreven worden. Bijvoorbeeld odoo/backups/\n"
|
||||
"Bestanden worden dan naar /odoo/backups/ geschreven op de externe server"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
|
||||
msgid ""
|
||||
"The password from the user where the SFTP connection should be made with. "
|
||||
"This is the password from the user on the external server."
|
||||
msgstr "Het wachtwoord van de gebruiker waar de SFTP connectie mee moet gemaakt worden. "
|
||||
"Dit is het wachtwoord van de gebruiker op de externe server."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
|
||||
msgid "The port on the FTP server that accepts SSH/SFTP calls."
|
||||
msgstr "De poort op de FTP server die SSH/SFTP accepteert."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
|
||||
msgid ""
|
||||
"The username where the SFTP connection should be made with. This is the user"
|
||||
" on the external server."
|
||||
msgstr "De gebruikersnaam waar de SFTP connectie mee gemaakt moet worden. Dit is de gebruiker"
|
||||
" op de externe server."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid ""
|
||||
"This configures the scheduler for automatic backup of the given database running on given host\n"
|
||||
" at given port on regular intervals.\n"
|
||||
" <br/>\n"
|
||||
" Automatic backups of the database can be scheduled as follows:"
|
||||
msgstr "Dit configureert de planner om automatische backups van de opgegeven database te maken die op deze host,\n"
|
||||
" op een bepaalde poort draaien, op regelmatige intervals.\n"
|
||||
" <br/>\n"
|
||||
" Automatische backups kunnen als volgt ingepland worden:"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.module.category,description:auto_backup.module_management
|
||||
msgid "User access level for this module"
|
||||
msgstr "Gebruikerstoegang voor deze module"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
|
||||
msgid "Username SFTP Server"
|
||||
msgstr "Gebruikersnaam SFTP server"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_write
|
||||
msgid "Write to external server with sftp"
|
||||
msgstr "Schrijf naar externe server met SFTP"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_type__zip
|
||||
msgid "Zip"
|
||||
msgstr "ZIP"
|
||||
|
||||
@@ -1,380 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auto_backup
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 13.0+e\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-10-20 13:29+0000\n"
|
||||
"PO-Revision-Date: 2019-10-20 13:29+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid ""
|
||||
"<b>Warning:</b>\n"
|
||||
" Use SFTP with caution! This writes files to external servers under the path you specify."
|
||||
msgstr "<b>Waarschuwing:</b>\n"
|
||||
" Gebruik SFTP voorzichtig! Dit schrijft bestanden naar externe servers onder het pad dat u opgeeft."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
|
||||
msgid "Absolute path for storing the backups"
|
||||
msgstr "Absoluut pad om backups te bewaren"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.module.category,name:auto_backup.module_management
|
||||
msgid "Auto backup access"
|
||||
msgstr "Auto backup toegang"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__send_mail_sftp_fail
|
||||
msgid "Auto. E-mail on backup fail"
|
||||
msgstr "Auto. e-mail bij mislukte back-up"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__autoremove
|
||||
msgid "Auto. Remove Backups"
|
||||
msgstr "Auto. e-mailen wanneer backup mislukt"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Back-up view"
|
||||
msgstr "Back-up weergave"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.ui.menu,name:auto_backup.auto_backup_menu
|
||||
msgid "Back-ups"
|
||||
msgstr "Back-ups"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
|
||||
msgid "Backup Directory"
|
||||
msgstr "Backup folder"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_type
|
||||
msgid "Backup Type"
|
||||
msgstr "Soort back-up"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model,name:auto_backup.model_db_backup
|
||||
msgid "Backup configuration record"
|
||||
msgstr "Back-up configuratie"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.actions.server,name:auto_backup.backup_scheduler_ir_actions_server
|
||||
#: model:ir.cron,cron_name:auto_backup.backup_scheduler
|
||||
#: model:ir.cron,name:auto_backup.backup_scheduler
|
||||
msgid "Backup scheduler"
|
||||
msgstr "Backup planner"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_tree
|
||||
msgid "Backups"
|
||||
msgstr "Back-ups"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep_sftp
|
||||
msgid ""
|
||||
"Choose after how many days the backup should be deleted from the FTP server. For example:\n"
|
||||
"If you fill in 5 the backups will be removed after 5 days from the FTP server."
|
||||
msgstr "Kies na hoeveel dagen de backups verwijderd moeten worden van de FTP server. Bijvoorbeeld:\n"
|
||||
"Als u 5 invult zal de backup na 5 dagen verwijderd worden van de FTP server."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
|
||||
msgid ""
|
||||
"Choose after how many days the backup should be deleted. For example:\n"
|
||||
"If you fill in 5 the backups will be removed after 5 days."
|
||||
msgstr "Kies na hoeveel dagen de backups verwijderd moeten worden van de FTP server. Bijvoorbeeld:\n"
|
||||
"Als u 5 invult zal de backup na 5 dagen verwijderd worden van de FTP server."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.actions.act_window,name:auto_backup.action_backup
|
||||
#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
|
||||
msgid "Configure back-ups"
|
||||
msgstr "Configureer back-ups"
|
||||
|
||||
#. module: auto_backup
|
||||
#: code:addons/auto_backup/models/db_backup.py:0
|
||||
#, python-format
|
||||
msgid "Connection Test Failed!"
|
||||
msgstr "Connectie test mislukt!"
|
||||
|
||||
#. module: auto_backup
|
||||
#: code:addons/auto_backup/models/db_backup.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connection Test Succeeded!\n"
|
||||
"Everything seems properly set up for FTP back-ups!"
|
||||
msgstr "Connectie test succesvol!\n"
|
||||
"Alles lijkt correct opgezet voor FTP backups!"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Contact me!"
|
||||
msgstr "Contacteer mij!"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Aangemaakt door"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Aangemaakt op"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
|
||||
msgid "Database"
|
||||
msgstr "Database"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__name
|
||||
msgid "Database you want to schedule backups for"
|
||||
msgstr "Dataabse waar u back-ups voor wilt plannen"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Schermnaam"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_type__dump
|
||||
msgid "Dump"
|
||||
msgstr "Dump"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__email_to_notify
|
||||
msgid "E-mail to notify"
|
||||
msgstr "E-mail om te verwittigen"
|
||||
|
||||
#. module: auto_backup
|
||||
#: code:addons/auto_backup/models/db_backup.py:0
|
||||
#, python-format
|
||||
msgid "Error ! No such database exists!"
|
||||
msgstr "Fout! Deze database bestaat niet!"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__email_to_notify
|
||||
msgid ""
|
||||
"Fill in the e-mail where you want to be notified that the backup failed on "
|
||||
"the FTP."
|
||||
msgstr "Vul de e-mail in waarop u wilt verwittigd worden als de backup mislukt op de FTP."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "For example: /odoo/backups/"
|
||||
msgstr "Bijvoorbeeld: /odoo/backups/"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Go to Settings / Technical / Automation / Scheduled Actions."
|
||||
msgstr "Ga naar Instellingen / Technisch / Automatisering / Geplande acties."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Help"
|
||||
msgstr "Help"
|
||||
|
||||
#. module: auto_backup
|
||||
#: code:addons/auto_backup/models/db_backup.py:0
|
||||
#, python-format
|
||||
msgid "Here is what we got instead:\n"
|
||||
msgstr "Hier is wat we in de plaats terugkregen:\n"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__host
|
||||
msgid "Host"
|
||||
msgstr "Host"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
|
||||
msgid "IP Address SFTP Server"
|
||||
msgstr "IP adres SFTP server"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__send_mail_sftp_fail
|
||||
msgid ""
|
||||
"If you check this option you can choose to automaticly get e-mailed when the"
|
||||
" backup to the external server failed."
|
||||
msgstr "Als u deze optie aanvinkt kan u kiezen om automatisch een e-mail aan te krijgen als de backuaar de externe server mislukt."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__autoremove
|
||||
msgid ""
|
||||
"If you check this option you can choose to automaticly remove the backup "
|
||||
"after xx days"
|
||||
msgstr "Als u deze optie aanvinkt kan u kiezen om automatisch backups te verwijderen "
|
||||
"na xx dagen"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_write
|
||||
msgid ""
|
||||
"If you check this option you can specify the details needed to write to a "
|
||||
"remote server with SFTP."
|
||||
msgstr "Als u deze optie aanvinkt kan u de details invullen die nodig zijn om te connecteren met de "
|
||||
" externe SFTP server"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst gewijzigd op"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laatst bijgewerkt door"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Local backup configuration"
|
||||
msgstr "Lokale back-up configuratie"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:res.groups,name:auto_backup.group_manager
|
||||
msgid "Manager"
|
||||
msgstr "Beheerder"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Need more help?"
|
||||
msgstr "Meer hulp nodig?"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
|
||||
msgid "Password User SFTP Server"
|
||||
msgstr "Wachtwoord gebruiker SFTP server"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_path
|
||||
msgid "Path external server"
|
||||
msgstr "Pad externe server"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__port
|
||||
msgid "Port"
|
||||
msgstr "Poort"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep_sftp
|
||||
msgid "Remove SFTP after x days"
|
||||
msgstr "Verwijderd SFTP na x dagen"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
|
||||
msgid "Remove after x days"
|
||||
msgstr "Verwijder na x dagen"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "SFTP"
|
||||
msgstr "SFTP"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
|
||||
msgid "SFTP Port"
|
||||
msgstr "SFTP poort"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Search the action named 'Backup scheduler'."
|
||||
msgstr "Zoek de actie met de naam 'Backup planner'."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid ""
|
||||
"Set the scheduler to active and fill in how often you want backups "
|
||||
"generated."
|
||||
msgstr "Zet de planner actief en vul in hoe vaak u wilt dat er backups gegenereerd "
|
||||
"worden."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Test SFTP Connection"
|
||||
msgstr "Test SFTP verbinding"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
|
||||
msgid "The IP address from your remote server. For example 192.168.0.1"
|
||||
msgstr "Het IP adres van uw externe server. Bijvoorbeeld: 192.168.0.1"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_path
|
||||
msgid ""
|
||||
"The location to the folder where the dumps should be written to. For example /odoo/backups/.\n"
|
||||
"Files will then be written to /odoo/backups/ on your remote server."
|
||||
msgstr "De locatie naar de folder waar de backup naar toe moet geschreven worden. Bijvoorbeeld odoo/backups/\n"
|
||||
"Bestanden worden dan naar /odoo/backups/ geschreven op de externe server"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
|
||||
msgid ""
|
||||
"The password from the user where the SFTP connection should be made with. "
|
||||
"This is the password from the user on the external server."
|
||||
msgstr "Het wachtwoord van de gebruiker waar de SFTP connectie mee moet gemaakt worden. "
|
||||
"Dit is het wachtwoord van de gebruiker op de externe server."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
|
||||
msgid "The port on the FTP server that accepts SSH/SFTP calls."
|
||||
msgstr "De poort op de FTP server die SSH/SFTP accepteert."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
|
||||
msgid ""
|
||||
"The username where the SFTP connection should be made with. This is the user"
|
||||
" on the external server."
|
||||
msgstr "De gebruikersnaam waar de SFTP connectie mee gemaakt moet worden. Dit is de gebruiker"
|
||||
" op de externe server."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid ""
|
||||
"This configures the scheduler for automatic backup of the given database running on given host\n"
|
||||
" at given port on regular intervals.\n"
|
||||
" <br/>\n"
|
||||
" Automatic backups of the database can be scheduled as follows:"
|
||||
msgstr "Dit configureert de planner om automatische backups van de opgegeven database te maken die op deze host,\n"
|
||||
" op een bepaalde poort draaien, op regelmatige intervals.\n"
|
||||
" <br/>\n"
|
||||
" Automatische backups kunnen als volgt ingepland worden:"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.module.category,description:auto_backup.module_management
|
||||
msgid "User access level for this module"
|
||||
msgstr "Gebruikerstoegang voor deze module"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
|
||||
msgid "Username SFTP Server"
|
||||
msgstr "Gebruikersnaam SFTP server"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_write
|
||||
msgid "Write to external server with sftp"
|
||||
msgstr "Schrijf naar externe server met SFTP"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_type__zip
|
||||
msgid "Zip"
|
||||
msgstr "ZIP"
|
||||
|
||||
@@ -1,178 +0,0 @@
|
||||
# Polish translation for openobject-addons
|
||||
# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
|
||||
# This file is distributed under the same license as the openobject-addons package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: openobject-addons\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2009-11-24 13:49+0000\n"
|
||||
"PO-Revision-Date: 2011-02-15 15:01+0000\n"
|
||||
"Last-Translator: OpenERP Administrators <Unknown>\n"
|
||||
"Language-Team: Polish <pl@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2013-04-20 05:35+0000\n"
|
||||
"X-Generator: Launchpad (build 16567)\n"
|
||||
|
||||
#. module: auto_backup
|
||||
#: help:db.backup,name:0
|
||||
msgid "Database you want to schedule backups for"
|
||||
msgstr "Baza danych, dla której chcesz zaplanować robienie kopii zapasowej"
|
||||
|
||||
#. module: auto_backup
|
||||
#: constraint:ir.model:0
|
||||
msgid ""
|
||||
"The Object name must start with x_ and not contain any special character !"
|
||||
msgstr ""
|
||||
"Nazwa obiektu musi zaczynać się od x_ oraz nie może zawierać znaków "
|
||||
"specjalnych !"
|
||||
|
||||
#. module: auto_backup
|
||||
#: constraint:ir.actions.act_window:0
|
||||
msgid "Invalid model name in the action definition."
|
||||
msgstr "Nieprawidłowa nazwa modelu w definicji akcji."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model,name:auto_backup.model_db_backup
|
||||
msgid "db.backup"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid ""
|
||||
"1) Go to Administration / Configuration / Scheduler / Scheduled Actions"
|
||||
msgstr "1) Idź do Administracja / Konfirguracja / Planista / Planowane akcje"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
|
||||
#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
|
||||
msgid "Configure Backup"
|
||||
msgstr "Konfiguruj kopie zapasowe"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "Test"
|
||||
msgstr "Przetestuj"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "IP Configuration"
|
||||
msgstr "Konfiguracja adresu IP"
|
||||
|
||||
#. module: auto_backup
|
||||
#: help:db.backup,bkp_dir:0
|
||||
msgid "Absolute path for storing the backups"
|
||||
msgstr "Pełna ścieżka dla kopii zapasowych"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.module.module,shortdesc:auto_backup.module_meta_information
|
||||
msgid "Database Auto-Backup"
|
||||
msgstr "Automatyczne kopie zapasowe bazy danych"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "Database Configuration"
|
||||
msgstr "Konfiguracja bazy danych"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "4) Set other values as per your preference"
|
||||
msgstr "4) Ustaw inne dane według uznania"
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,host:0
|
||||
msgid "Host"
|
||||
msgstr "Host"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid ""
|
||||
"Automatic backup of all the databases under this can be scheduled as "
|
||||
"follows: "
|
||||
msgstr ""
|
||||
"Automatyczne kopie wszystkich baz danych mogą być zaplanowane następująco: "
|
||||
|
||||
#. module: auto_backup
|
||||
#: constraint:ir.ui.view:0
|
||||
msgid "Invalid XML for View Architecture!"
|
||||
msgstr "XML niewłaściwy dla tej architektury wyświetlania!"
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,bkp_dir:0
|
||||
msgid "Backup Directory"
|
||||
msgstr "Katalog kopii zapasowych"
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,name:0
|
||||
msgid "Database"
|
||||
msgstr "Baza danych"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "2) Schedule new action(create a new record)"
|
||||
msgstr "2) Zaplanuj nową akcję (utwórz nowy rekord)"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.module.module,description:auto_backup.module_meta_information
|
||||
msgid ""
|
||||
"The generic Open ERP Database Auto-Backup system enables the user to make "
|
||||
"configurations for the automatic backup of the database.\n"
|
||||
"User simply requires to specify host & port under IP Configuration & "
|
||||
"database(on specified host running at specified port) and backup "
|
||||
"directory(in which all the backups of the specified database will be stored) "
|
||||
"under Database Configuration.\n"
|
||||
"\n"
|
||||
"Automatic backup for all such configured databases under this can then be "
|
||||
"scheduled as follows: \n"
|
||||
" \n"
|
||||
"1) Go to Administration / Configuration / Scheduler / Scheduled Actions\n"
|
||||
"2) Schedule new action(create a new record)\n"
|
||||
"3) Set 'Object' to 'db.backup' and 'Function' to 'schedule_backup' under "
|
||||
"page 'Technical Data'\n"
|
||||
"4) Set other values as per your preference"
|
||||
msgstr ""
|
||||
"System Open ERP Database Auto-Backup pozwala użytkownikowi utworzyć "
|
||||
"konfiguracje dla automatycznego zachowywania kopii zapasowych baz danych.\n"
|
||||
"Użytkownik musi tylko podać host i port w Konfiguracji IP i bazę danych "
|
||||
"oraz katalog dla kopii zapasowej Konfiguracji bazy danych.\n"
|
||||
"\n"
|
||||
"Automatyczne kopie wszystkich baz danych mogą być zaplanowane następująco: "
|
||||
"\n"
|
||||
" \n"
|
||||
"1) Idź do Administracja / Konfirguracja / Planista / Planowane akcje\n"
|
||||
"2) Zaplanuj nową akcję (utwórz nowy rekord)\n"
|
||||
"3) Ustaw 'Obiekt' na 'db.backup' i 'Funkcja' na 'schedule_backup' na stronie "
|
||||
"'Dane techniczne'.\n"
|
||||
"4) Ustaw inne dane według uznania"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid ""
|
||||
"3) Set 'Object' to 'db.backup' and 'Function' to 'schedule_backup' under "
|
||||
"page 'Technical Data'"
|
||||
msgstr ""
|
||||
"3) Ustaw 'Obiekt' na 'db.backup' i 'Funkcja' na 'schedule_backup' na stronie "
|
||||
"'Dane techniczne'."
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "Help"
|
||||
msgstr "Pomoc"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid ""
|
||||
"This configures the scheduler for automatic backup of the given database "
|
||||
"running on given host at given port on regular intervals."
|
||||
msgstr ""
|
||||
"Tu konfigurujesz planistę do automatycznego zapisywania kopii zapasowych dla "
|
||||
"określonej bazy danych na na określonym hoście (komputerze) na określonym "
|
||||
"porcie w regularnych terminach."
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,port:0
|
||||
msgid "Port"
|
||||
msgstr "Port"
|
||||
@@ -1,183 +0,0 @@
|
||||
# Brazilian Portuguese translation for openobject-addons
|
||||
# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
|
||||
# This file is distributed under the same license as the openobject-addons package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: openobject-addons\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2009-11-24 13:49+0000\n"
|
||||
"PO-Revision-Date: 2013-07-20 09:39+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Brazilian Portuguese <pt_BR@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2013-07-22 05:50+0000\n"
|
||||
"X-Generator: Launchpad (build 16696)\n"
|
||||
|
||||
#. module: auto_backup
|
||||
#: help:db.backup,name:0
|
||||
msgid "Database you want to schedule backups for"
|
||||
msgstr "Banco de dados que você deseja agendar backups para"
|
||||
|
||||
#. module: auto_backup
|
||||
#: constraint:ir.model:0
|
||||
msgid ""
|
||||
"The Object name must start with x_ and not contain any special character !"
|
||||
msgstr ""
|
||||
"O nome do objeto deve iniciar com x_ e não conter qualquer caractere "
|
||||
"especial!"
|
||||
|
||||
#. module: auto_backup
|
||||
#: constraint:ir.actions.act_window:0
|
||||
msgid "Invalid model name in the action definition."
|
||||
msgstr "Nome do modelo inválida na definição da ação."
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model,name:auto_backup.model_db_backup
|
||||
msgid "db.backup"
|
||||
msgstr "db.backup"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid ""
|
||||
"1) Go to Administration / Configuration / Scheduler / Scheduled Actions"
|
||||
msgstr ""
|
||||
"1) Vá para Administração / Configuração / Programador / Ações Programadas"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
|
||||
#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
|
||||
msgid "Configure Backup"
|
||||
msgstr "Configurar backup"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "Test"
|
||||
msgstr "Teste"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "IP Configuration"
|
||||
msgstr "Configuração de IP"
|
||||
|
||||
#. module: auto_backup
|
||||
#: help:db.backup,bkp_dir:0
|
||||
msgid "Absolute path for storing the backups"
|
||||
msgstr "Caminho absoluto para armazenar os backups"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.module.module,shortdesc:auto_backup.module_meta_information
|
||||
msgid "Database Auto-Backup"
|
||||
msgstr "Banco de Dados Auto-Backup"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "Database Configuration"
|
||||
msgstr "Configuração do Banco de Dados"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "4) Set other values as per your preference"
|
||||
msgstr "4) Defina outros valores como por sua preferência"
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,host:0
|
||||
msgid "Host"
|
||||
msgstr "Host"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid ""
|
||||
"Automatic backup of all the databases under this can be scheduled as "
|
||||
"follows: "
|
||||
msgstr ""
|
||||
"Backup automático de todos os bancos de dados sob este pode ser programado "
|
||||
"como segue: "
|
||||
|
||||
#. module: auto_backup
|
||||
#: constraint:ir.ui.view:0
|
||||
msgid "Invalid XML for View Architecture!"
|
||||
msgstr "Inválido XML para Ver Arquitetura!"
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,bkp_dir:0
|
||||
msgid "Backup Directory"
|
||||
msgstr "Diretório de backup"
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,name:0
|
||||
msgid "Database"
|
||||
msgstr "Banco de Dados"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "2) Schedule new action(create a new record)"
|
||||
msgstr "2) Programe nova ação (criar um novo registro)"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.module.module,description:auto_backup.module_meta_information
|
||||
msgid ""
|
||||
"The generic Open ERP Database Auto-Backup system enables the user to make "
|
||||
"configurations for the automatic backup of the database.\n"
|
||||
"User simply requires to specify host & port under IP Configuration & "
|
||||
"database(on specified host running at specified port) and backup "
|
||||
"directory(in which all the backups of the specified database will be stored) "
|
||||
"under Database Configuration.\n"
|
||||
"\n"
|
||||
"Automatic backup for all such configured databases under this can then be "
|
||||
"scheduled as follows: \n"
|
||||
" \n"
|
||||
"1) Go to Administration / Configuration / Scheduler / Scheduled Actions\n"
|
||||
"2) Schedule new action(create a new record)\n"
|
||||
"3) Set 'Object' to 'db.backup' and 'Function' to 'schedule_backup' under "
|
||||
"page 'Technical Data'\n"
|
||||
"4) Set other values as per your preference"
|
||||
msgstr ""
|
||||
"O sistema Auto-Backup genérico Aberto ERP banco de dados permite que o "
|
||||
"usuário faça configurações para o backup automático do banco de dados. \n"
|
||||
"usuário requer simplesmente para especificar anfitrião e porta em "
|
||||
"Configuração do IP e banco de dados (on especificado host executando na "
|
||||
"porta especificada) eo diretório de backup (em . que todos os backups de "
|
||||
"banco de dados especificado serão armazenados) em Configuração do banco de "
|
||||
"dados \n"
|
||||
"de backup automático de todos esses bancos de dados configurados sob este "
|
||||
"pode ser programado como segue:\n"
|
||||
" \n"
|
||||
" \n"
|
||||
"1) Vá para Administração / Configuração / Programador / Ações Programadas \n"
|
||||
"2) Programe nova ação (criar um novo registro) \n"
|
||||
"3) Defina 'objeto' para 'db.backup' e 'função' para 'schedule_backup' em "
|
||||
"página \"Dados Técnicos\" \n"
|
||||
"4 ) Defina outros valores de acordo com sua preferência"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid ""
|
||||
"3) Set 'Object' to 'db.backup' and 'Function' to 'schedule_backup' under "
|
||||
"page 'Technical Data'"
|
||||
msgstr ""
|
||||
"3) Defina 'objeto' para 'db.backup' e 'função' para 'schedule_backup \"em\" "
|
||||
"Dados Técnicos \"página"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid "Help"
|
||||
msgstr "Ajudar"
|
||||
|
||||
#. module: auto_backup
|
||||
#: view:db.backup:0
|
||||
msgid ""
|
||||
"This configures the scheduler for automatic backup of the given database "
|
||||
"running on given host at given port on regular intervals."
|
||||
msgstr ""
|
||||
"Isso configura o agendador de backup automático de um determinado banco de "
|
||||
"dados rodando em determinado host em determinada porta em intervalos "
|
||||
"regulares."
|
||||
|
||||
#. module: auto_backup
|
||||
#: field:db.backup,port:0
|
||||
msgid "Port"
|
||||
msgstr "Porto"
|
||||
@@ -1,358 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * auto_backup
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-04-19 08:18+0000\n"
|
||||
"PO-Revision-Date: 2024-04-19 08:18+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid ""
|
||||
"<b>Warning:</b>\n"
|
||||
" Use SFTP with caution! This writes files to external servers under the path you specify."
|
||||
msgstr "谨慎使用SFTP!这会将文件写入您指定路径下的外部服务器。"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
|
||||
msgid "Absolute path for storing the backups"
|
||||
msgstr "备份绝对路径"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.module.category,name:auto_backup.module_management
|
||||
msgid "Auto backup access"
|
||||
msgstr "自动备份权限"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__send_mail_sftp_fail
|
||||
msgid "Auto. E-mail on backup fail"
|
||||
msgstr "FTP备份失败自动邮件通知你"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__autoremove
|
||||
msgid "Auto. Remove Backups"
|
||||
msgstr "自动删除备份"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Back-up view"
|
||||
msgstr "备份视图"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.ui.menu,name:auto_backup.auto_backup_menu
|
||||
msgid "Back-ups"
|
||||
msgstr "备份"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
|
||||
msgid "Backup Directory"
|
||||
msgstr "备份目录"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_type
|
||||
msgid "Backup Type"
|
||||
msgstr "备份类型"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model,name:auto_backup.model_db_backup
|
||||
msgid "Backup configuration record"
|
||||
msgstr "备份配置记录"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.actions.server,name:auto_backup.backup_scheduler_ir_actions_server
|
||||
#: model:ir.cron,cron_name:auto_backup.backup_scheduler
|
||||
#: model:ir.cron,name:auto_backup.backup_scheduler
|
||||
msgid "Backup scheduler"
|
||||
msgstr "备份调度器"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep_sftp
|
||||
msgid ""
|
||||
"Choose after how many days the backup should be deleted from the FTP server. For example:\n"
|
||||
"If you fill in 5 the backups will be removed after 5 days from the FTP server."
|
||||
msgstr "选择备份应在FTP服务器上删除的天数。例如:\n如果您填写5,则备份将在5天后从FTP服务器上删除。"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
|
||||
msgid ""
|
||||
"Choose after how many days the backup should be deleted. For example:\n"
|
||||
"If you fill in 5 the backups will be removed after 5 days."
|
||||
msgstr "选择备份应删除的天数。例如:\n如果您填写5,则备份将在5天后删除。"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.actions.act_window,name:auto_backup.action_backup
|
||||
#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
|
||||
msgid "Configure back-ups"
|
||||
msgstr "配置备份"
|
||||
|
||||
#. module: auto_backup
|
||||
#: code:addons/auto_backup/models/db_backup.py:0
|
||||
#, python-format
|
||||
msgid "Connection Test Failed!"
|
||||
msgstr "连接测试失败!"
|
||||
|
||||
#. module: auto_backup
|
||||
#: code:addons/auto_backup/models/db_backup.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Connection Test Succeeded!\n"
|
||||
"Everything seems properly set up for FTP back-ups!"
|
||||
msgstr "连接测试成功!\nFTP备份似乎已正确设置!"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Contact me!"
|
||||
msgstr "联系我!"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "创建者"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
|
||||
msgid "Created on"
|
||||
msgstr "创建日期"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
|
||||
msgid "Database"
|
||||
msgstr "数据库"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__name
|
||||
msgid "Database you want to schedule backups for"
|
||||
msgstr "您要安排备份的数据库"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "显示名称"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_type__dump
|
||||
msgid "Dump"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__email_to_notify
|
||||
msgid "E-mail to notify"
|
||||
msgstr "通知邮件"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__email_to_notify
|
||||
msgid ""
|
||||
"Fill in the e-mail where you want to be notified that the backup failed on "
|
||||
"the FTP."
|
||||
msgstr "填写您希望在FTP上备份失败时收到通知的电子邮件"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "For example: /odoo/backups/"
|
||||
msgstr "例如:/odoo/backups/"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Go to Settings / Technical / Automation / Scheduled Actions."
|
||||
msgstr "前往 设置/技术/自动化/计划任务。"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Help"
|
||||
msgstr "帮助"
|
||||
|
||||
#. module: auto_backup
|
||||
#: code:addons/auto_backup/models/db_backup.py:0
|
||||
#, python-format
|
||||
msgid "Here is what we got instead:\n"
|
||||
msgstr "这是我们得到的内容:\n"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__host
|
||||
msgid "Host"
|
||||
msgstr "主机"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
|
||||
msgid "ID"
|
||||
msgstr "标识"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
|
||||
msgid "IP Address SFTP Server"
|
||||
msgstr "SFTP服务器的IP地址"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__send_mail_sftp_fail
|
||||
msgid ""
|
||||
"If you check this option you can choose to automaticly get e-mailed when the"
|
||||
" backup to the external server failed."
|
||||
msgstr "如果您选中此选项,当备份到外部服务器失败时,您可以选择自动接收邮件通知。"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__autoremove
|
||||
msgid ""
|
||||
"If you check this option you can choose to automaticly remove the backup "
|
||||
"after xx days"
|
||||
msgstr "如果您选中此选项,您可以选择在xx天后自动删除备份"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_write
|
||||
msgid ""
|
||||
"If you check this option you can specify the details needed to write to a "
|
||||
"remote server with SFTP."
|
||||
msgstr "如果您选中此选项,您可以指定使用SFTP向远程服务器写入所需的详细信息。"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最后修改时间"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最后更新者"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最后更新时间"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Local backup configuration"
|
||||
msgstr "本地备份配置"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:res.groups,name:auto_backup.group_manager
|
||||
msgid "Manager"
|
||||
msgstr "管理者"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Need more help?"
|
||||
msgstr "需要更多帮助?"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
|
||||
msgid "Password User SFTP Server"
|
||||
msgstr "SFTP服务器用户密码"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_path
|
||||
msgid "Path external server"
|
||||
msgstr "外部服务器路径"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__port
|
||||
msgid "Port"
|
||||
msgstr "端口"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep_sftp
|
||||
msgid "Remove SFTP after x days"
|
||||
msgstr "x天后删除SFTP"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
|
||||
msgid "Remove after x days"
|
||||
msgstr "x天后删除"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "SFTP"
|
||||
msgstr ""
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
|
||||
msgid "SFTP Port"
|
||||
msgstr "SFTP端口"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Search the action named 'Backup scheduler'."
|
||||
msgstr "搜索名为'备份调度器'的操作。"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid ""
|
||||
"Set the scheduler to active and fill in how often you want backups "
|
||||
"generated."
|
||||
msgstr "将调度器设置为激活状态,并填写您希望生成备份的频率。"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid "Test SFTP Connection"
|
||||
msgstr "测试SFTP连接"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
|
||||
msgid "The IP address from your remote server. For example 192.168.0.1"
|
||||
msgstr "远程服务器的IP地址。例如192.168.0.1"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_path
|
||||
msgid ""
|
||||
"The location to the folder where the dumps should be written to. For example /odoo/backups/.\n"
|
||||
"Files will then be written to /odoo/backups/ on your remote server."
|
||||
msgstr "转储文件应该写入的文件夹位置。例如 /odoo/backups/。\n文件将被写入远程服务器上的 /odoo/backups/。"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
|
||||
msgid ""
|
||||
"The password from the user where the SFTP connection should be made with. "
|
||||
"This is the password from the user on the external server."
|
||||
msgstr "应与之建立SFTP连接的用户的密码。\n这是外部服务器上用户的密码。"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
|
||||
msgid "The port on the FTP server that accepts SSH/SFTP calls."
|
||||
msgstr "FTP服务器上接受SSH/SFTP调用的端口。"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
|
||||
msgid ""
|
||||
"The username where the SFTP connection should be made with. This is the user"
|
||||
" on the external server."
|
||||
msgstr "应与之建立SFTP连接的用户名。这是外部服务器上的用户。"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_config_form
|
||||
msgid ""
|
||||
"This configures the scheduler for automatic backup of the given database running on given host\n"
|
||||
" at given port on regular intervals.\n"
|
||||
" <br/>\n"
|
||||
" Automatic backups of the database can be scheduled as follows:"
|
||||
msgstr "这将配置调度器,以定期自动备份在指定主机上运行的给定数据库\n"
|
||||
" 在给定端口上。\n"
|
||||
" <br/>\n"
|
||||
" 可以如下安排数据库的自动备份:"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.module.category,description:auto_backup.module_management
|
||||
msgid "User access level for this module"
|
||||
msgstr "此模块的用户访问级别"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
|
||||
msgid "Username SFTP Server"
|
||||
msgstr "SFTP服务器用户名"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_write
|
||||
msgid "Write to external server with sftp"
|
||||
msgstr "通过SFTP向外部服务器写入"
|
||||
|
||||
#. module: auto_backup
|
||||
#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_type__zip
|
||||
msgid "Zip"
|
||||
msgstr ""
|
||||
@@ -1,2 +0,0 @@
|
||||
|
||||
from . import db_backup
|
||||
@@ -1,328 +0,0 @@
|
||||
|
||||
import os
|
||||
import datetime
|
||||
import time
|
||||
import shutil
|
||||
import json
|
||||
import tempfile
|
||||
|
||||
from odoo import models, fields, api, tools, _
|
||||
from odoo.exceptions import Warning, AccessDenied
|
||||
import odoo
|
||||
|
||||
import logging
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
try:
|
||||
import paramiko
|
||||
except ImportError:
|
||||
raise ImportError(
|
||||
'This module needs paramiko to automatically write backups to the FTP through SFTP. '
|
||||
'Please install paramiko on your system. (sudo pip3 install paramiko)')
|
||||
|
||||
|
||||
class DbBackup(models.Model):
|
||||
_name = 'db.backup'
|
||||
_description = 'Backup configuration record'
|
||||
|
||||
def _get_db_name(self):
|
||||
dbName = self._cr.dbname
|
||||
return dbName
|
||||
|
||||
# Columns for local server configuration
|
||||
host = fields.Char('Host', required=True, default='localhost')
|
||||
port = fields.Char('Port', required=True, default=8069)
|
||||
name = fields.Char('Database', required=True, help='Database you want to schedule backups for',
|
||||
default=_get_db_name)
|
||||
folder = fields.Char('Backup Directory', help='Absolute path for storing the backups', required='True',
|
||||
default='/odoo/backups')
|
||||
backup_type = fields.Selection([('zip', 'Zip'), ('dump', 'Dump')], 'Backup Type', required=True, default='zip')
|
||||
autoremove = fields.Boolean('Auto. Remove Backups',
|
||||
help='If you check this option you can choose to automaticly remove the backup '
|
||||
'after xx days')
|
||||
days_to_keep = fields.Integer('Remove after x days',
|
||||
help="Choose after how many days the backup should be deleted. For example:\n"
|
||||
"If you fill in 5 the backups will be removed after 5 days.",
|
||||
required=True)
|
||||
|
||||
# Columns for external server (SFTP)
|
||||
sftp_write = fields.Boolean('Write to external server with sftp',
|
||||
help="If you check this option you can specify the details needed to write to a remote "
|
||||
"server with SFTP.")
|
||||
sftp_path = fields.Char('Path external server',
|
||||
help='The location to the folder where the dumps should be written to. For example '
|
||||
'/odoo/backups/.\nFiles will then be written to /odoo/backups/ on your remote server.')
|
||||
sftp_host = fields.Char('IP Address SFTP Server',
|
||||
help='The IP address from your remote server. For example 192.168.0.1')
|
||||
sftp_port = fields.Integer('SFTP Port', help='The port on the FTP server that accepts SSH/SFTP calls.', default=22)
|
||||
sftp_user = fields.Char('Username SFTP Server',
|
||||
help='The username where the SFTP connection should be made with. This is the user on the '
|
||||
'external server.')
|
||||
sftp_password = fields.Char('Password User SFTP Server',
|
||||
help='The password from the user where the SFTP connection should be made with. This '
|
||||
'is the password from the user on the external server.')
|
||||
days_to_keep_sftp = fields.Integer('Remove SFTP after x days',
|
||||
help='Choose after how many days the backup should be deleted from the FTP '
|
||||
'server. For example:\nIf you fill in 5 the backups will be removed after '
|
||||
'5 days from the FTP server.',
|
||||
default=30)
|
||||
send_mail_sftp_fail = fields.Boolean('Auto. E-mail on backup fail',
|
||||
help='If you check this option you can choose to automaticly get e-mailed '
|
||||
'when the backup to the external server failed.')
|
||||
email_to_notify = fields.Char('E-mail to notify',
|
||||
help='Fill in the e-mail where you want to be notified that the backup failed on '
|
||||
'the FTP.')
|
||||
|
||||
def test_sftp_connection(self, context=None):
|
||||
self.ensure_one()
|
||||
|
||||
# Check if there is a success or fail and write messages
|
||||
message_title = ""
|
||||
message_content = ""
|
||||
error = ""
|
||||
has_failed = False
|
||||
|
||||
for rec in self:
|
||||
ip_host = rec.sftp_host
|
||||
port_host = rec.sftp_port
|
||||
username_login = rec.sftp_user
|
||||
password_login = rec.sftp_password
|
||||
|
||||
# Connect with external server over SFTP, so we know sure that everything works.
|
||||
try:
|
||||
s = paramiko.SSHClient()
|
||||
s.set_missing_host_key_policy(paramiko.AutoAddPolicy())
|
||||
s.connect(ip_host, port_host, username_login, password_login, timeout=10)
|
||||
sftp = s.open_sftp()
|
||||
sftp.close()
|
||||
message_title = _("Connection Test Succeeded!\nEverything seems properly set up for FTP back-ups!")
|
||||
except Exception as e:
|
||||
_logger.critical('There was a problem connecting to the remote ftp: %s', str(e))
|
||||
error += str(e)
|
||||
has_failed = True
|
||||
message_title = _("Connection Test Failed!")
|
||||
if len(rec.sftp_host) < 8:
|
||||
message_content += "\nYour IP address seems to be too short.\n"
|
||||
message_content += _("Here is what we got instead:\n")
|
||||
finally:
|
||||
if s:
|
||||
s.close()
|
||||
|
||||
if has_failed:
|
||||
raise Warning(message_title + '\n\n' + message_content + "%s" % str(error))
|
||||
else:
|
||||
raise Warning(message_title + '\n\n' + message_content)
|
||||
|
||||
@api.model
|
||||
def schedule_backup(self):
|
||||
conf_ids = self.search([])
|
||||
for rec in conf_ids:
|
||||
|
||||
try:
|
||||
if not os.path.isdir(rec.folder):
|
||||
os.makedirs(rec.folder)
|
||||
except:
|
||||
raise
|
||||
# Create name for dumpfile.
|
||||
bkp_file = '%s_%s.%s' % (time.strftime('%Y_%m_%d_%H_%M_%S'), rec.name, rec.backup_type)
|
||||
file_path = os.path.join(rec.folder, bkp_file)
|
||||
try:
|
||||
# try to backup database and write it away
|
||||
fp = open(file_path, 'wb')
|
||||
self._take_dump(rec.name, fp, 'db.backup', rec.backup_type)
|
||||
fp.close()
|
||||
except Exception as error:
|
||||
_logger.debug(
|
||||
"Couldn't backup database %s. Bad database administrator password for server running at "
|
||||
"http://%s:%s" % (rec.name, rec.host, rec.port))
|
||||
_logger.debug("Exact error from the exception: %s", str(error))
|
||||
continue
|
||||
|
||||
# Check if user wants to write to SFTP or not.
|
||||
if rec.sftp_write is True:
|
||||
try:
|
||||
# Store all values in variables
|
||||
dir = rec.folder
|
||||
path_to_write_to = rec.sftp_path
|
||||
ip_host = rec.sftp_host
|
||||
port_host = rec.sftp_port
|
||||
username_login = rec.sftp_user
|
||||
password_login = rec.sftp_password
|
||||
_logger.debug('sftp remote path: %s', path_to_write_to)
|
||||
|
||||
try:
|
||||
s = paramiko.SSHClient()
|
||||
s.set_missing_host_key_policy(paramiko.AutoAddPolicy())
|
||||
s.connect(ip_host, port_host, username_login, password_login, timeout=20)
|
||||
sftp = s.open_sftp()
|
||||
except Exception as error:
|
||||
_logger.critical('Error connecting to remote server! Error: %s', str(error))
|
||||
|
||||
try:
|
||||
sftp.chdir(path_to_write_to)
|
||||
except IOError:
|
||||
# Create directory and subdirs if they do not exist.
|
||||
current_directory = ''
|
||||
for dirElement in path_to_write_to.split('/'):
|
||||
current_directory += dirElement + '/'
|
||||
try:
|
||||
sftp.chdir(current_directory)
|
||||
except:
|
||||
_logger.info('(Part of the) path didn\'t exist. Creating it now at %s',
|
||||
current_directory)
|
||||
# Make directory and then navigate into it
|
||||
sftp.mkdir(current_directory, 777)
|
||||
sftp.chdir(current_directory)
|
||||
pass
|
||||
sftp.chdir(path_to_write_to)
|
||||
# Loop over all files in the directory.
|
||||
for f in os.listdir(dir):
|
||||
if rec.name in f:
|
||||
fullpath = os.path.join(dir, f)
|
||||
if os.path.isfile(fullpath):
|
||||
try:
|
||||
sftp.stat(os.path.join(path_to_write_to, f))
|
||||
_logger.debug(
|
||||
'File %s already exists on the remote FTP Server ------ skipped', fullpath)
|
||||
# This means the file does not exist (remote) yet!
|
||||
except IOError:
|
||||
try:
|
||||
sftp.put(fullpath, os.path.join(path_to_write_to, f))
|
||||
_logger.info('Copying File % s------ success', fullpath)
|
||||
except Exception as err:
|
||||
_logger.critical(
|
||||
'We couldn\'t write the file to the remote server. Error: %s', str(err))
|
||||
|
||||
# Navigate in to the correct folder.
|
||||
sftp.chdir(path_to_write_to)
|
||||
|
||||
_logger.debug("Checking expired files")
|
||||
# Loop over all files in the directory from the back-ups.
|
||||
# We will check the creation date of every back-up.
|
||||
for file in sftp.listdir(path_to_write_to):
|
||||
if rec.name in file:
|
||||
# Get the full path
|
||||
fullpath = os.path.join(path_to_write_to, file)
|
||||
# Get the timestamp from the file on the external server
|
||||
timestamp = sftp.stat(fullpath).st_mtime
|
||||
createtime = datetime.datetime.fromtimestamp(timestamp)
|
||||
now = datetime.datetime.now()
|
||||
delta = now - createtime
|
||||
# If the file is older than the days_to_keep_sftp (the days to keep that the user filled in
|
||||
# on the Odoo form it will be removed.
|
||||
if delta.days >= rec.days_to_keep_sftp:
|
||||
# Only delete files, no directories!
|
||||
if ".dump" in file or '.zip' in file:
|
||||
_logger.info("Delete too old file from SFTP servers: %s", file)
|
||||
sftp.unlink(file)
|
||||
# Close the SFTP session.
|
||||
sftp.close()
|
||||
s.close()
|
||||
except Exception as e:
|
||||
try:
|
||||
sftp.close()
|
||||
s.close()
|
||||
except:
|
||||
pass
|
||||
_logger.error('Exception! We couldn\'t back up to the FTP server. Here is what we got back '
|
||||
'instead: %s', str(e))
|
||||
# At this point the SFTP backup failed. We will now check if the user wants
|
||||
# an e-mail notification about this.
|
||||
if rec.send_mail_sftp_fail:
|
||||
try:
|
||||
ir_mail_server = self.env['ir.mail_server'].search([], order='sequence asc', limit=1)
|
||||
message = "Dear,\n\nThe backup for the server " + rec.host + " (IP: " + rec.sftp_host + \
|
||||
") failed. Please check the following details:\n\nIP address SFTP server: " + \
|
||||
rec.sftp_host + "\nUsername: " + rec.sftp_user + \
|
||||
"\n\nError details: " + tools.ustr(e) + \
|
||||
"\n\nWith kind regards"
|
||||
catch_all_domain = self.env["ir.config_parameter"].sudo().get_param("mail.catchall.domain")
|
||||
response_mail = "auto_backup@%s" % catch_all_domain if catch_all_domain else self.env.user.partner_id.email
|
||||
msg = ir_mail_server.build_email(response_mail, [rec.email_to_notify],
|
||||
"Backup from " + rec.host + "(" + rec.sftp_host +
|
||||
") failed",
|
||||
message)
|
||||
ir_mail_server.send_email(msg)
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
# Remove all old files (on local server) in case this is configured..
|
||||
if rec.autoremove:
|
||||
directory = rec.folder
|
||||
# Loop over all files in the directory.
|
||||
for f in os.listdir(directory):
|
||||
fullpath = os.path.join(directory, f)
|
||||
# Only delete the ones wich are from the current database
|
||||
# (Makes it possible to save different databases in the same folder)
|
||||
if rec.name in fullpath:
|
||||
timestamp = os.stat(fullpath).st_ctime
|
||||
createtime = datetime.datetime.fromtimestamp(timestamp)
|
||||
now = datetime.datetime.now()
|
||||
delta = now - createtime
|
||||
if delta.days >= rec.days_to_keep:
|
||||
# Only delete files (which are .dump and .zip), no directories.
|
||||
if os.path.isfile(fullpath) and (".dump" in f or '.zip' in f):
|
||||
_logger.info("Delete local out-of-date file: %s", fullpath)
|
||||
os.remove(fullpath)
|
||||
|
||||
# This is more or less the same as the default Odoo function at
|
||||
# https://github.com/odoo/odoo/blob/e649200ab44718b8faefc11c2f8a9d11f2db7753/odoo/service/db.py#L209
|
||||
# The main difference is that we do not do have a wrapper for the function check_db_management_enabled here and
|
||||
# that we authenticate based on the cron its user id and by checking if we have 'db.backup' defined in the function
|
||||
# call. Since this function is called from the cron and since we have these security checks on model and on user_id
|
||||
# its pretty impossible to hack any way to take a backup. This allows us to disable the Odoo database manager
|
||||
# which is a MUCH safer way
|
||||
def _take_dump(self, db_name, stream, model, backup_format='zip'):
|
||||
"""Dump database `db` into file-like object `stream` if stream is None
|
||||
return a file object with the dump """
|
||||
|
||||
cron_user_id = self.env.ref('jikimo_auto_backup.backup_scheduler').user_id.id
|
||||
if self._name != 'db.backup' or cron_user_id != self.env.user.id:
|
||||
_logger.error('Unauthorized database operation. Backups should only be available from the cron job.')
|
||||
raise AccessDenied()
|
||||
|
||||
_logger.info('DUMP DB: %s format %s', db_name, backup_format)
|
||||
|
||||
cmd = ['pg_dump', '--no-owner']
|
||||
cmd.append(db_name)
|
||||
|
||||
if backup_format == 'zip':
|
||||
with tempfile.TemporaryDirectory() as dump_dir:
|
||||
filestore = odoo.tools.config.filestore(db_name)
|
||||
if os.path.exists(filestore):
|
||||
shutil.copytree(filestore, os.path.join(dump_dir, 'filestore'))
|
||||
with open(os.path.join(dump_dir, 'manifest.json'), 'w') as fh:
|
||||
db = odoo.sql_db.db_connect(db_name)
|
||||
with db.cursor() as cr:
|
||||
json.dump(self._dump_db_manifest(cr), fh, indent=4)
|
||||
cmd.insert(-1, '--file=' + os.path.join(dump_dir, 'dump.sql'))
|
||||
odoo.tools.exec_pg_command(*cmd)
|
||||
if stream:
|
||||
odoo.tools.osutil.zip_dir(dump_dir, stream, include_dir=False, fnct_sort=lambda file_name: file_name != 'dump.sql')
|
||||
else:
|
||||
t=tempfile.TemporaryFile()
|
||||
odoo.tools.osutil.zip_dir(dump_dir, t, include_dir=False, fnct_sort=lambda file_name: file_name != 'dump.sql')
|
||||
t.seek(0)
|
||||
return t
|
||||
else:
|
||||
cmd.insert(-1, '--format=c')
|
||||
stdin, stdout = odoo.tools.exec_pg_command_pipe(*cmd)
|
||||
if stream:
|
||||
shutil.copyfileobj(stdout, stream)
|
||||
else:
|
||||
return stdout
|
||||
|
||||
def _dump_db_manifest(self, cr):
|
||||
pg_version = "%d.%d" % divmod(cr._obj.connection.server_version / 100, 100)
|
||||
cr.execute("SELECT name, latest_version FROM ir_module_module WHERE state = 'installed'")
|
||||
modules = dict(cr.fetchall())
|
||||
manifest = {
|
||||
'odoo_dump': '1',
|
||||
'db_name': cr.dbname,
|
||||
'version': odoo.release.version,
|
||||
'version_info': odoo.release.version_info,
|
||||
'major_version': odoo.release.major_version,
|
||||
'pg_version': pg_version,
|
||||
'modules': modules,
|
||||
}
|
||||
return manifest
|
||||
@@ -1 +0,0 @@
|
||||
# pip3 install paramiko
|
||||
@@ -1,3 +0,0 @@
|
||||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
|
||||
admin_access, db_backup admin access,model_db_backup,base.group_no_one,1,1,1,1
|
||||
admin_security_rule, Model db_backup admin access,model_db_backup,jikimo_auto_backup.group_manager,1,1,1,1
|
||||
|
@@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data>
|
||||
<record model="ir.module.category" id="module_management">
|
||||
<field name="name">Auto backup access</field>
|
||||
<field name="description">User access level for this module</field>
|
||||
<field name="sequence">3</field>
|
||||
</record>
|
||||
|
||||
<record id="group_manager" model="res.groups">
|
||||
<field name="name">Manager</field>
|
||||
<field name="category_id" ref="jikimo_auto_backup.module_management"/>
|
||||
</record>
|
||||
</data>
|
||||
</odoo>
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 45 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 35 KiB |
@@ -1,95 +0,0 @@
|
||||
<section class="oe_container">
|
||||
<div class="oe_row oe_spaced">
|
||||
<div class="oe_span12">
|
||||
<h2 class="oe_slogan">Automated backups</h2>
|
||||
<h3 class="oe_slogan">A tool for all your back-ups, internal and external!</h3>
|
||||
</div>
|
||||
<div class="oe_span6">
|
||||
<div class="oe_demo oe_picture oe_screenshot">
|
||||
<img src="overview.png">
|
||||
</div>
|
||||
</div>
|
||||
<div class="oe_span6">
|
||||
<p class="oe_mt32">
|
||||
Keep your Odoo data safe with this module. Take automated back-ups, remove them automatically
|
||||
and even write them to an external server through an encrypted tunnel.
|
||||
You can even specify how long local backups and external backups should be kept, automatically!
|
||||
</p>
|
||||
<div class="oe_centeralign oe_websiteonly">
|
||||
<a href="http://www.openerp.com/start?app=mail" class="oe_button oe_big oe_tacky">Start your <span class="oe_emph">free</span> trial</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- Second block -->
|
||||
<section class="oe_container oe_dark">
|
||||
<div class="oe_row oe_spaced">
|
||||
<h2 class="oe_slogan">Connect with an FTP Server</h2>
|
||||
<h3 class="oe_slogan">Keep your data safe, through an SSH tunnel!</h3>
|
||||
<div class="oe_span6">
|
||||
<p class="oe_mt32">
|
||||
Want to go even further and write your backups to an external server?
|
||||
You can with this module! Specify the credentials to the server, specify a path and everything will be backed up automatically. This is done through an SSH (encrypted) tunnel, thanks to pysftp, so your data is safe!
|
||||
|
||||
</p>
|
||||
</div>
|
||||
<div class="oe_span6">
|
||||
<div class="oe_row_img oe_centered">
|
||||
<img class="oe_picture oe_screenshot" src="terminalssh.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!--Third block -->
|
||||
<section class="oe_container">
|
||||
<div class="oe_row oe_spaced">
|
||||
<div class="oe_span12">
|
||||
<h2 class="oe_slogan">Test connection</h2>
|
||||
<h3 class="oe_slogan">Checks your credentials in one click</h3>
|
||||
</div>
|
||||
<div class="oe_span6">
|
||||
<div class="oe_demo oe_picture oe_screenshot">
|
||||
<img src="testconnection.png">
|
||||
<img src="testconnectionfailed.png">
|
||||
</div>
|
||||
</div>
|
||||
<div class="oe_span6">
|
||||
<p class="oe_mt32">
|
||||
Want to make sure if the connection details are correct and if Odoo can automatically write them to the remote server? Simply click on the 'Test SFTP Connection' button and you will get message telling you if everything is OK, or what is wrong!
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- Fourth block -->
|
||||
<section class="oe_container oe_dark">
|
||||
<div class="oe_row oe_spaced">
|
||||
<h2 class="oe_slogan">E-mail on backup failure</h2>
|
||||
<h3 class="oe_slogan">Stay informed of problems, automatically!</h3>
|
||||
<div class="oe_span6">
|
||||
<p class="oe_mt32">
|
||||
Do you want to know if the database backup failed? Check the checkbox 'Auto. E-mail on backup fail' and fill in your e-mail.
|
||||
Every time a backup fails you will get an e-mail in your mailbox with technical details.
|
||||
</p>
|
||||
</div>
|
||||
<div class="oe_span6">
|
||||
<div class="oe_row_img oe_centered">
|
||||
<img class="oe_picture oe_screenshot" src="emailnotification.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!--Fifth block -->
|
||||
<section class="oe_container">
|
||||
<div class="oe_row oe_spaced">
|
||||
<div class="oe_span12">
|
||||
<h2 class="oe_slogan">Contact / Support</h2>
|
||||
<h3 class="oe_slogan">Need help or want extra features?</h3>
|
||||
</div>
|
||||
<div class="oe_span6">
|
||||
<p class="oe_mt32">
|
||||
Need help with the configuration or want this module to have more functionalities?
|
||||
Please create a bug report <a href="https://github.com/Yenthe666/auto_backup/issues">on the Github issue tracker</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 23 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 86 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 4.4 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 4.0 KiB |
@@ -1,105 +0,0 @@
|
||||
<odoo>
|
||||
<record id="view_backup_config_form" model="ir.ui.view">
|
||||
<field name="name">db.backup.form</field>
|
||||
<field name="model">db.backup</field>
|
||||
<field name="type">form</field>
|
||||
<field name="arch" type="xml">
|
||||
<form string="Back-up view">
|
||||
<sheet>
|
||||
<group col="4" colspan="4">
|
||||
<separator col="2" string="Local backup configuration"/>
|
||||
</group>
|
||||
<group name="configuration">
|
||||
<field name="host" colspan="2"/>
|
||||
<field name="name"/>
|
||||
<field name="port"/>
|
||||
<field name="backup_type"/>
|
||||
<field name="folder"/>
|
||||
<field name="autoremove"/>
|
||||
<field name="days_to_keep" attrs="{'invisible': [('autoremove','=',False)]}"/>
|
||||
</group>
|
||||
<group name="allow_stfp" col="4" colspan="4">
|
||||
<separator col="2" string="SFTP"/>
|
||||
</group>
|
||||
<div style="width:50%;border-radius:10px;margin: 10px 0px;padding:15px 10px 15px 10px;
|
||||
background-repeat: no-repeat;background-position: 10px center;color: #9F6000;
|
||||
background-color: #FEEFB3;"
|
||||
attrs="{'invisible': [('sftp_write','=',False)]}">
|
||||
<b>Warning:</b>
|
||||
Use SFTP with caution! This writes files to external servers under the path you specify.
|
||||
</div>
|
||||
<group name="sftp_configuration">
|
||||
<field name="sftp_write"/>
|
||||
<field name="sftp_host"
|
||||
attrs="{'invisible':[('sftp_write', '=', False)],'required':[('sftp_write', '=', True)]}"/>
|
||||
<field name="sftp_port"
|
||||
attrs="{'invisible':[('sftp_write', '=', False)],'required':[('sftp_write', '=', True)]}"/>
|
||||
<field name="sftp_user"
|
||||
attrs="{'invisible':[('sftp_write', '=', False)], 'required':[('sftp_write', '=', True)]}"/>
|
||||
<field name="sftp_password"
|
||||
attrs="{'invisible':[('sftp_write', '=', False)],'required': [('sftp_write', '=', True)]}"
|
||||
password="True"/>
|
||||
<field name="sftp_path"
|
||||
attrs="{'invisible':[('sftp_write', '==', False)],'required':[('sftp_write', '==', True)]}"
|
||||
placeholder="For example: /odoo/backups/"/>
|
||||
<field name="days_to_keep_sftp"
|
||||
attrs="{'invisible': [('sftp_write', '=', False)], 'required': [('sftp_write', '=', True)]}"/>
|
||||
<field name="send_mail_sftp_fail" attrs="{'invisible': [('sftp_write','=',False)]}"/>
|
||||
<field name="email_to_notify"
|
||||
attrs="{'invisible':['|',('send_mail_sftp_fail', '==', False), ('sftp_write', '=', False)], 'required': [('send_mail_sftp_fail', '=', True)]}"/>
|
||||
<button name="test_sftp_connection" type="object"
|
||||
attrs="{'invisible': [('sftp_write','=',False)]}" string="Test SFTP Connection"/>
|
||||
</group>
|
||||
<separator string="Help" colspan="2"/>
|
||||
<div name="configuration_details">
|
||||
This configures the scheduler for automatic backup of the given database running on given host
|
||||
at given port on regular intervals.
|
||||
<br/>
|
||||
Automatic backups of the database can be scheduled as follows:
|
||||
<ol>
|
||||
<li>
|
||||
Go to Settings / Technical / Automation / Scheduled Actions.
|
||||
</li>
|
||||
<li>
|
||||
Search the action named 'Backup scheduler'.
|
||||
</li>
|
||||
<li>
|
||||
Set the scheduler to active and fill in how often you want backups generated.
|
||||
</li>
|
||||
</ol>
|
||||
<p style="font-size:18px;">
|
||||
Need more help?
|
||||
<a href="https://github.com/Yenthe666/auto_backup/issues">Contact me!</a>
|
||||
</p>
|
||||
</div>
|
||||
</sheet>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="view_backup_config_tree" model="ir.ui.view">
|
||||
<field name="name">db.backup.tree</field>
|
||||
<field name="model">db.backup</field>
|
||||
<field name="type">tree</field>
|
||||
<field name="arch" type="xml">
|
||||
<tree>
|
||||
<field name='host'/>
|
||||
<field name='port'/>
|
||||
<field name='name'/>
|
||||
<field name='folder'/>
|
||||
<field name="autoremove"/>
|
||||
<field name="sftp_host"/>
|
||||
</tree>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="action_backup" model="ir.actions.act_window">
|
||||
<field name="name">Configure back-ups</field>
|
||||
<field name="res_model">db.backup</field>
|
||||
<field name="view_mode">tree,form</field>
|
||||
<field name="view_id" ref="view_backup_config_tree"/>
|
||||
</record>
|
||||
|
||||
<menuitem id="auto_backup_menu" name="Back-ups" parent="base.menu_custom"/>
|
||||
<menuitem parent="auto_backup_menu" action="action_backup" id="backup_conf_menu"/>
|
||||
</odoo>
|
||||
@@ -1,2 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from . import models
|
||||
@@ -1,18 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
{
|
||||
'name': '机企猫 需求计划排程队列',
|
||||
'version': '1.0',
|
||||
'summary': """ 使用队列进行排程 """,
|
||||
'author': 'fox',
|
||||
'website': '',
|
||||
'category': '',
|
||||
'depends': ['queue_job_batch', 'sf_demand_plan'],
|
||||
'data': [
|
||||
|
||||
],
|
||||
|
||||
'application': True,
|
||||
'installable': True,
|
||||
'auto_install': False,
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
@@ -1,2 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from . import production_demand_plan
|
||||
@@ -1,20 +0,0 @@
|
||||
from odoo import models, fields
|
||||
|
||||
|
||||
class ProductionDemandPlan(models.Model):
|
||||
_inherit = 'sf.production.demand.plan'
|
||||
|
||||
|
||||
def _do_production_schedule(self, pro_plan_list):
|
||||
"""使用队列进行排程"""
|
||||
batch_size = 10
|
||||
current_time = fields.Datetime.now().strftime('%Y%m%d%H%M%S')
|
||||
index = 1
|
||||
for i in range(0, len(pro_plan_list), batch_size):
|
||||
batch = self.env['queue.job.batch'].get_new_batch('plan-%s-%s' % (current_time, index))
|
||||
pro_plans = pro_plan_list[i:i+batch_size]
|
||||
pro_plans.with_context(
|
||||
job_batch=batch
|
||||
).with_delay().do_production_schedule()
|
||||
index += 1
|
||||
batch.enqueue()
|
||||
@@ -21,8 +21,8 @@
|
||||
'web.assets_qweb': [
|
||||
],
|
||||
'web.assets_backend': [
|
||||
# 'jikimo_frontend/static/src/fields/custom_many2many_checkboxes/*',
|
||||
# 'jikimo_frontend/static/src/fields/Many2OneRadioField/*',
|
||||
'jikimo_frontend/static/src/fields/custom_many2many_checkboxes/*',
|
||||
'jikimo_frontend/static/src/fields/Many2OneRadioField/*',
|
||||
# 移除odoo相关标识
|
||||
'jikimo_frontend/static/src/bye_odoo/*',
|
||||
'jikimo_frontend/static/src/scss/custom_style.scss',
|
||||
|
||||
@@ -6,6 +6,6 @@ import { patch } from "web.utils";
|
||||
patch(WebClient.prototype, "kolpolok_custom_title_and_favicon.WebClient", {
|
||||
setup() {
|
||||
this._super();
|
||||
// this.title.setParts({ zopenerp: "JIKIMO" });
|
||||
this.title.setParts({ zopenerp: "JIKIMO" });
|
||||
},
|
||||
});
|
||||
@@ -1,8 +1,3 @@
|
||||
.o_list_renderer .o_list_table tbody > tr > td:not(.o_list_record_selector):not(.o_handle_cell):not(.o_list_button):not(.o_list_record_remove){
|
||||
border:1px solid #dee2e6 !important;
|
||||
}
|
||||
|
||||
.custom_required_add::before{
|
||||
content: '*';
|
||||
color: red;
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
.many2one_radio_field {
|
||||
display: inline-block;
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
/** @odoo-module **/
|
||||
|
||||
import { RadioField } from "@web/views/fields/radio/radio_field"; // 导入单选按钮组件
|
||||
import { registry } from "@web/core/registry";
|
||||
|
||||
export class Many2OneRadioField extends RadioField {
|
||||
// 你可以重写或者添加一些方法和属性
|
||||
// 例如,你可以重写setup方法来添加一些事件监听器或者初始化一些变量
|
||||
setup() {
|
||||
super.setup(); // 调用父类的setup方法
|
||||
// 你自己的代码
|
||||
}
|
||||
|
||||
onImageClick(event) {
|
||||
// 放大图片逻辑
|
||||
// 获取图片元素
|
||||
const img = event.target;
|
||||
const close = img.nextSibling;
|
||||
// 实现放大图片逻辑
|
||||
// 比如使用 CSS 放大
|
||||
img.parentElement.classList.add('zoomed');
|
||||
close.classList.add('img_close');
|
||||
}
|
||||
|
||||
onCloseClick(event) {
|
||||
const close = event.target;
|
||||
const img = close.previousSibling;
|
||||
img.parentElement.classList.remove('zoomed');
|
||||
close.classList.remove('img_close');
|
||||
}
|
||||
|
||||
get items() {
|
||||
return Many2OneRadioField.getItems(this.props.name, this.props.record);
|
||||
}
|
||||
|
||||
static getItems(fieldName, record) {
|
||||
switch (record.fields[fieldName].type) {
|
||||
case "selection":
|
||||
return record.fields[fieldName].selection;
|
||||
case "many2one": {
|
||||
const value = record.preloadedData[fieldName] || [];
|
||||
return value.map((item) => [item.id, item.display_name, item.image]);
|
||||
}
|
||||
default:
|
||||
return [];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Many2OneRadioField.template = "jikimo_frontend.Many2OneRadioField";
|
||||
// MyCustomWidget.supportedTypes = ['many2many'];
|
||||
|
||||
registry.category("fields").add("many2one_radio", Many2OneRadioField);
|
||||
@@ -0,0 +1,35 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<templates xml:space="preserve">
|
||||
|
||||
<t t-name="jikimo_frontend.Many2OneRadioField" owl="1">
|
||||
<div
|
||||
role="radiogroup"
|
||||
t-attf-class="o_{{ props.orientation }}"
|
||||
t-att-aria-label="string"
|
||||
>
|
||||
<t t-foreach="items" t-as="item" t-key="item[0]">
|
||||
<div class="form-check o_radio_item many2one_radio_field" aria-atomic="true">
|
||||
<input
|
||||
type="radio"
|
||||
class="form-check-input o_radio_input"
|
||||
t-att-checked="item[0] === value"
|
||||
t-att-disabled="props.readonly"
|
||||
t-att-name="id"
|
||||
t-att-data-value="item[0]"
|
||||
t-att-data-index="item_index"
|
||||
t-att-id="`${id}_${item[0]}`"
|
||||
t-on-change="() => this.onChange(item)"
|
||||
/>
|
||||
<label class="form-check-label o_form_label" t-att-for="`${id}_${item[0]}`" t-esc="item[1]" />
|
||||
<div t-on-dblclick="onImageClick">
|
||||
<t>
|
||||
<img t-att-src="item[2]" width="50" height="50"/>
|
||||
<div class="close" t-on-click="onCloseClick">×</div>
|
||||
</t>
|
||||
</div>
|
||||
</div>
|
||||
</t>
|
||||
</div>
|
||||
</t>
|
||||
|
||||
</templates>
|
||||
@@ -0,0 +1,41 @@
|
||||
.zoomed {
|
||||
position: fixed !important;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%) scale(10);
|
||||
}
|
||||
|
||||
.many2many_flex {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.many2many_flex>div {
|
||||
margin-right: 15px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.many2many_flex>div>:nth-child(2) {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.close {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
position: absolute;
|
||||
top: -8.8px;
|
||||
right: -8.8px;
|
||||
color: #fff;
|
||||
background-color: #000;
|
||||
opacity: 0;
|
||||
text-align: center;
|
||||
line-height: 20px;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.img_close {
|
||||
opacity: 1;
|
||||
transform: scale(0.1);
|
||||
cursor: pointer;
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
/** @odoo-module **/
|
||||
|
||||
import {Many2ManyCheckboxesField} from "@web/views/fields/many2many_checkboxes/many2many_checkboxes_field";
|
||||
import {registry} from "@web/core/registry";
|
||||
|
||||
export class MyCustomWidget extends Many2ManyCheckboxesField {
|
||||
// 你可以重写或者添加一些方法和属性
|
||||
// 例如,你可以重写setup方法来添加一些事件监听器或者初始化一些变量
|
||||
setup() {
|
||||
super.setup(); // 调用父类的setup方法
|
||||
// 你自己的代码
|
||||
}
|
||||
|
||||
onImageClick(event) {
|
||||
// 放大图片逻辑
|
||||
// 获取图片元素
|
||||
const img = event.target;
|
||||
const close = img.nextSibling;
|
||||
|
||||
// 实现放大图片逻辑
|
||||
// 比如使用 CSS 放大
|
||||
img.parentElement.classList.add('zoomed');
|
||||
close.classList.add('img_close');
|
||||
}
|
||||
|
||||
onCloseClick(event) {
|
||||
const close = event.target;
|
||||
const img = close.previousSibling;
|
||||
img.parentElement.classList.remove('zoomed');
|
||||
close.classList.remove('img_close');
|
||||
}
|
||||
}
|
||||
|
||||
MyCustomWidget.template = "jikimo_frontend.MyCustomWidget";
|
||||
// MyCustomWidget.supportedTypes = ['many2many'];
|
||||
|
||||
registry.category("fields").add("custom_many2many_checkboxes", MyCustomWidget);
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<templates xml:space="preserve">
|
||||
|
||||
<t t-name="jikimo_frontend.MyCustomWidget" owl="1">
|
||||
<div aria-atomic="true" class="many2many_flex">
|
||||
<t t-foreach="items" t-as="item" t-key="item[0]">
|
||||
<div>
|
||||
<CheckBox
|
||||
value="isSelected(item)"
|
||||
disabled="props.readonly"
|
||||
onChange="(ev) => this.onChange(item[0], ev)"
|
||||
>
|
||||
<t t-esc="item[1]"/>
|
||||
|
||||
</CheckBox>
|
||||
<div t-on-dblclick="onImageClick">
|
||||
<t>
|
||||
<img t-att-src="item[2]" width="50" height="50"/>
|
||||
<div class="close" t-on-click="onCloseClick">×</div>
|
||||
</t>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</t>
|
||||
</div>
|
||||
</t>
|
||||
|
||||
</templates>
|
||||
@@ -5,10 +5,8 @@ import {patch} from '@web/core/utils/patch';
|
||||
import {_t} from "@web/core/l10n/translation";
|
||||
import {FormStatusIndicator} from "@web/views/form/form_status_indicator/form_status_indicator";
|
||||
import {ListRenderer} from "@web/views/list/list_renderer";
|
||||
// import {StatusBarField} from "@web/views/fields/statusbar/statusbar_field";
|
||||
import {FormLabel} from "@web/views/form/form_label";
|
||||
import { fieldVisualFeedback } from "@web/views/fields/field";
|
||||
|
||||
import {Field} from "@web/views/fields/field";
|
||||
|
||||
var Dialog = require('web.Dialog');
|
||||
// var {patch} = require("web.utils") 这句话也行
|
||||
@@ -52,24 +50,8 @@ const tableRequiredList = [
|
||||
'product_template_id', 'product_uom_qty', 'price_unit','product_id','product_qty',
|
||||
'name', 'fault_type', 'maintenance_standards', 'Period'
|
||||
]
|
||||
patch(FormStatusIndicator.prototype, 'jikimo_frontend.FormStatusIndicator', {
|
||||
setup() {
|
||||
owl.onMounted(() => {
|
||||
try {
|
||||
const dom = this.__owl__.bdom.el
|
||||
const buttonsDom = $(dom).find('.o_form_status_indicator_buttons ')
|
||||
if (buttonsDom) {
|
||||
const dom1 = buttonsDom.children('.o_form_button_save')
|
||||
const dom2 = buttonsDom.children('.o_form_button_cancel')
|
||||
dom1.append('保存')
|
||||
dom2.append('不保存')
|
||||
}
|
||||
} catch (e) {
|
||||
console.log(e)
|
||||
}
|
||||
|
||||
});
|
||||
},
|
||||
patch(FormStatusIndicator.prototype, 'jikimo_frontend.FormStatusIndicator', {
|
||||
// 你可以重写或者添加一些方法和属性
|
||||
async _onDiscardChanges() {
|
||||
// var self = this;
|
||||
@@ -107,37 +89,39 @@ patch(FormStatusIndicator.prototype, 'jikimo_frontend.FormStatusIndicator', {
|
||||
|
||||
}
|
||||
);
|
||||
|
||||
patch(Field.prototype, 'jikimo_frontend.Field', {
|
||||
setup() {
|
||||
owl.onMounted(this.setRequired);
|
||||
return this._super(...arguments);
|
||||
},
|
||||
setRequired() {
|
||||
const id = this.props.id
|
||||
const isRequired = filedRequiredList[id]
|
||||
if(id == 'number_of_axles') {
|
||||
console.log(isRequired)
|
||||
}
|
||||
if(isRequired) {
|
||||
let dom;
|
||||
dom = $(`label[for=${id}]`)
|
||||
if(isRequired.multiple && dom.length > 1) {
|
||||
dom = dom.eq(-1)
|
||||
dom = dom.parent().parent().next().find('label')
|
||||
}
|
||||
if(isRequired.noLabel) {
|
||||
dom = dom.parent().parent()
|
||||
}
|
||||
let t = dom.html()
|
||||
t = '<i class="c* r" style="color: red;margin-left: -4px">*</i>' + t
|
||||
dom.html(t)
|
||||
}
|
||||
}
|
||||
})
|
||||
patch(ListRenderer.prototype, 'jikimo_frontend.ListRenderer', {
|
||||
setup(){
|
||||
owl.onMounted(() => {
|
||||
this.activeElement = this.uiService.activeElement;
|
||||
this.setRequired()
|
||||
this.listherHeaderBodyNum()
|
||||
})
|
||||
owl.onPatched(() => {
|
||||
this.listherHeaderBodyNum()
|
||||
})
|
||||
const treeModifiers = this.getFieldModifiers(this.props.archInfo.__rawArch);
|
||||
|
||||
if(treeModifiers) {
|
||||
if(treeModifiers.merge_fields) {
|
||||
this.props.merge_key = treeModifiers.merge_key;
|
||||
this.props.merge_fields = treeModifiers.merge_fields.split(',');
|
||||
const data = this.setColumns(this.props.merge_key);
|
||||
owl.onMounted(() => {
|
||||
this.mergeColumns(this.props.merge_fields, data)
|
||||
})
|
||||
}
|
||||
if(treeModifiers.pacthResize) {
|
||||
|
||||
owl.onPatched(() => {
|
||||
this.columnWidths = null;
|
||||
this.freezeColumnWidths();
|
||||
|
||||
})
|
||||
}
|
||||
}
|
||||
return this._super(...arguments);
|
||||
},
|
||||
setRequired() {
|
||||
@@ -163,128 +147,21 @@ patch(ListRenderer.prototype, 'jikimo_frontend.ListRenderer', {
|
||||
} catch (e) {
|
||||
console.log(e)
|
||||
}
|
||||
},
|
||||
listherHeaderBodyNum() {
|
||||
const dom = this.tableRef.el
|
||||
try {
|
||||
const thead = $(dom).children('thead')
|
||||
const tbody = $(dom).children('tbody')
|
||||
const thead_tr = thead.children().eq(0)
|
||||
const tbody_tr = tbody.children().eq(0)
|
||||
const thead_th_num = thead_tr.children().length
|
||||
const tbody_tr_num = tbody_tr.children().length
|
||||
const num = thead_th_num - tbody_tr_num
|
||||
if(num == -1) {
|
||||
tbody.children('tr').each(function () {
|
||||
$(this).children('td').eq(0).remove()
|
||||
})
|
||||
}
|
||||
|
||||
} catch (e) {
|
||||
console.log(e)
|
||||
}
|
||||
},
|
||||
setColumns( merge_key) {
|
||||
merge_key = merge_key.split(',')
|
||||
const data = this.props.list.records
|
||||
let sourceIndex = 0;
|
||||
let sourceValue = merge_key.reduce((acc, key) => {
|
||||
acc[key] = '';
|
||||
return acc;
|
||||
}, {});
|
||||
|
||||
data.forEach((item, index) => {
|
||||
if(!item.colspan) {
|
||||
item.colspan = 1;
|
||||
}
|
||||
const itemValue = merge_key.reduce((acc, key) => {
|
||||
acc[key] = item.data[key];
|
||||
return acc;
|
||||
}, {});
|
||||
if(JSON.stringify(itemValue) == JSON.stringify(sourceValue)) {
|
||||
data[sourceIndex].colspan ++ ;
|
||||
item.colspan = 0;
|
||||
} else {
|
||||
sourceIndex = index;
|
||||
sourceValue = itemValue;
|
||||
}
|
||||
})
|
||||
return data
|
||||
},
|
||||
getFieldModifiers(xmlString) {
|
||||
const parser = new DOMParser();
|
||||
const xmlDoc = parser.parseFromString(xmlString, "text/xml");
|
||||
|
||||
// 提取 <tree> 的 modifiers
|
||||
const treeElement = xmlDoc.querySelector("tree");
|
||||
const treeModifiers = treeElement.getAttribute("modifiers");
|
||||
if (treeModifiers) {
|
||||
const parsedTreeModifiers = JSON.parse(treeModifiers);
|
||||
console.log("Tree Modifiers:", parsedTreeModifiers);
|
||||
return parsedTreeModifiers;
|
||||
}
|
||||
return null;
|
||||
},
|
||||
mergeColumns(merge_fields, data) {
|
||||
const dom = this.tableRef.el
|
||||
const thead = $(dom).children('thead')
|
||||
const tbody = $(dom).children('tbody')
|
||||
let row_no = 0
|
||||
tbody.children('tr.o_data_row').each(function () {
|
||||
const tr = $(this)
|
||||
const td = tr.children('td')
|
||||
const index = $(this).index()
|
||||
const col = data[index].colspan
|
||||
row_no ++
|
||||
if(col == 0) {
|
||||
row_no --
|
||||
}
|
||||
td.eq(0).text(row_no).attr('rowspan', col)
|
||||
|
||||
if(col == 0) {
|
||||
td.eq(0).remove()
|
||||
}
|
||||
td.each(function () {
|
||||
if(merge_fields.indexOf($(this).attr('name')) >= 0) {
|
||||
$(this).attr('rowspan', col)
|
||||
if(col == 0) {
|
||||
$(this).remove()
|
||||
}
|
||||
}
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
})
|
||||
patch(FormLabel.prototype, 'jikimo_frontend.FormLabel', {
|
||||
get className() {
|
||||
|
||||
const { invalid, empty, readonly } = fieldVisualFeedback(
|
||||
this.props.fieldInfo.FieldComponent,
|
||||
this.props.record,
|
||||
this.props.fieldName,
|
||||
this.props.fieldInfo
|
||||
);
|
||||
const classes = this.props.className ? [this.props.className] : [];
|
||||
const otherRequired = filedRequiredList[this.props.fieldName]
|
||||
if(this.props.fieldInfo?.rawAttrs?.class?.indexOf('custom_required') >= 0 || otherRequired) {
|
||||
classes.push('custom_required_add')
|
||||
}
|
||||
if (invalid) {
|
||||
classes.push("o_field_invalid");
|
||||
}
|
||||
if (empty) {
|
||||
classes.push("o_form_label_empty");
|
||||
}
|
||||
if (readonly) {
|
||||
classes.push("o_form_label_readonly");
|
||||
}
|
||||
return classes.join(" ");
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
$(function () {
|
||||
document.addEventListener('click', function () {
|
||||
const dom = $('.o_form_status_indicator_buttons ')
|
||||
if (dom) {
|
||||
const dom1 = dom.children().eq(0)
|
||||
const dom2 = dom.children().eq(1)
|
||||
if (!dom1.text()) {
|
||||
dom1.append('保存')
|
||||
dom2.append('取消')
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
function customRequired() {
|
||||
let timer = null
|
||||
@@ -292,6 +169,7 @@ $(function () {
|
||||
clearInterval(timer)
|
||||
timer = setInterval(() => {
|
||||
timer_count++
|
||||
const dom = $('.custom_required')
|
||||
let tableDom = $('.table_custom_required')
|
||||
if (tableDom.length) {
|
||||
tableDom = tableDom.eq(0).parents('tr').children('.table_custom_required')
|
||||
@@ -303,6 +181,17 @@ $(function () {
|
||||
})
|
||||
clearInterval(timer)
|
||||
}
|
||||
if (dom.length) {
|
||||
dom.each(function () {
|
||||
const requiredDom = $(this).parent().prev().find('label')
|
||||
let t = requiredDom.html()
|
||||
if (t && t.indexOf('c*') < 0) {
|
||||
t = '<i class="c*" style="color: red;margin-left: -4px">*</i>' + t
|
||||
}
|
||||
requiredDom.html(t)
|
||||
})
|
||||
clearInterval(timer)
|
||||
}
|
||||
if (timer_count == 20) {
|
||||
clearInterval(timer)
|
||||
}
|
||||
|
||||
@@ -108,10 +108,6 @@ td.o_required_modifier {
|
||||
}
|
||||
|
||||
.color_3 {
|
||||
background-color: #808080;
|
||||
}
|
||||
|
||||
.color_4 {
|
||||
background-color: rgb(255, 150, 0);
|
||||
}
|
||||
|
||||
@@ -157,11 +153,11 @@ td.o_required_modifier {
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
// .o_kanban_primary_left {
|
||||
// display: flex;
|
||||
// flex-direction: row-reverse;
|
||||
// justify-content: flex-start;
|
||||
// }
|
||||
.o_kanban_primary_left {
|
||||
display: flex;
|
||||
flex-direction: row-reverse;
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
.o_list_view .o_list_table thead {
|
||||
position: sticky;
|
||||
@@ -494,44 +490,5 @@ div:has(.o_required_modifier) > label::before {
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
.o_list_renderer .o_list_table tfoot .o_list_number {
|
||||
text-align: left !important;
|
||||
}
|
||||
|
||||
.o_field_widget.o_readonly_modifier.o_required_modifier.o_field_many2one[name=production_id] .o_form_uri {
|
||||
font-weight: bold;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
// 修改 【批量排程】【配送】 按钮UI
|
||||
.btn-secondary {
|
||||
color: #fff;
|
||||
background-color: #4A4F59;
|
||||
border-color: #4A4F59;
|
||||
}
|
||||
|
||||
// 功能刀具组装单 弹窗样式
|
||||
.o_horizontal_separator.mt-4.mb-3.text-uppercase.fw-bolder.small ~ div.col-lg-6 .o_inner_group.col-lg-6 {
|
||||
width: 100%;
|
||||
}
|
||||
.o_horizontal_separator.mt-4.mb-3.text-uppercase.fw-bolder.small ~ div .o_inner_group .o_wrap_field.d-flex.d-sm-contents.flex-column{
|
||||
display: flex!important;
|
||||
flex-direction: row!important;
|
||||
input {
|
||||
border-bottom: 1px solid;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// 设置表单页面label文本不换行
|
||||
.o_form_view .o_group .o_wrap_label .o_form_label {
|
||||
white-space: nowrap;
|
||||
}
|
||||
// 修复表格内容覆盖表头bug
|
||||
.o_list_renderer .o_list_table tbody th {
|
||||
position: unset;
|
||||
}
|
||||
|
||||
// 修复搜索面板checkbox样式
|
||||
.o_search_panel .form-check .form-check-label span {
|
||||
position: relative;
|
||||
text-align: left;
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
</t>
|
||||
|
||||
|
||||
|
||||
<!-- 暂存,同一份文件中有问题,拆分后正常工作 -->
|
||||
|
||||
<!-- <t t-name="og.web.ListRenderer.Rows" t-inherit="web.ListRenderer.Rows" t-inherit-mode="extension"> -->
|
||||
|
||||
@@ -5,9 +5,9 @@
|
||||
<!-- 修改页面头部图标及文字 -->
|
||||
<template id="favicon_icon" inherit_id="web.layout" name="Web layout">
|
||||
<!-- change the title with reliance partner -->
|
||||
<!-- <xpath expr="//head//title" position="before">
|
||||
<xpath expr="//head//title" position="before">
|
||||
<title t-esc="'JIKIMO'"/>
|
||||
</xpath> -->
|
||||
</xpath>
|
||||
<!-- change the default favicon icon with -->
|
||||
<xpath expr="//head//link[@rel='shortcut icon']" position="replace">
|
||||
<link type="image/x-icon" rel="shortcut icon" href="/jikimo_frontend/static/src/img/jikimo-logo.ico"/>
|
||||
@@ -16,7 +16,7 @@
|
||||
|
||||
<!-- hide 登录页面 powerd by odoo 及管理数据库 -->
|
||||
<template id="login_page_layout" inherit_id="web.login_layout" name="Login Page Layout">
|
||||
<!-- <xpath expr="//div[@class='card-body']/div[last()]" position="replace"></xpath> -->
|
||||
<xpath expr="//div[@class='card-body']//div[last()]" position="replace"></xpath>
|
||||
</template>
|
||||
|
||||
<!-- 隐藏odoo版本信息 -->
|
||||
|
||||
@@ -190,7 +190,7 @@ def _create(self, data_list):
|
||||
# 如果该用户组被限制创建或更新操作
|
||||
if rec['is_create_or_update']:
|
||||
raise UserError(
|
||||
_("您没有执行此操作的权限。请联系管理员"))
|
||||
_("You are restricted from performing this operation. Please contact the administrator."))
|
||||
else:
|
||||
# 如果 'access.right' 模型不存在,可以在这里定义备选逻辑
|
||||
# 例如,记录日志、发送通知或者简单地跳过这部分逻辑
|
||||
@@ -301,27 +301,53 @@ def unlink(self):
|
||||
# This is used to restrict the access right to unlink a record
|
||||
current_model_id = self.env['ir.model'].sudo().search(
|
||||
[('model', '=', self._name)]).id
|
||||
access_right_rec = self.env['access.right'].sudo().search_read(
|
||||
[('model_id', '=', current_model_id)], ['model_id', 'is_delete',
|
||||
'groups_id'])
|
||||
if access_right_rec and not self.env.is_admin():
|
||||
for rec in access_right_rec:
|
||||
group_name = self.env['ir.model.data'].sudo().search([
|
||||
('model', '=', 'res.groups'),
|
||||
('res_id', '=', rec['groups_id'][0])
|
||||
]).name
|
||||
module_name = self.env['ir.model.data'].sudo().search([
|
||||
('model', '=', 'res.groups'),
|
||||
('res_id', '=', rec['groups_id'][0])
|
||||
]).module
|
||||
group = module_name + "." + group_name
|
||||
if self.env.user.has_group(group):
|
||||
if rec['is_delete']:
|
||||
raise UserError(_('You are restricted from performing this'
|
||||
' operation. Please contact the'
|
||||
' administrator.'))
|
||||
# access_right_rec = self.env['access.right'].sudo().search_read(
|
||||
# [('model_id', '=', current_model_id)], ['model_id', 'is_delete',
|
||||
# 'groups_id'])
|
||||
# if access_right_rec and not self.env.is_admin():
|
||||
# for rec in access_right_rec:
|
||||
# group_name = self.env['ir.model.data'].sudo().search([
|
||||
# ('model', '=', 'res.groups'),
|
||||
# ('res_id', '=', rec['groups_id'][0])
|
||||
# ]).name
|
||||
# module_name = self.env['ir.model.data'].sudo().search([
|
||||
# ('model', '=', 'res.groups'),
|
||||
# ('res_id', '=', rec['groups_id'][0])
|
||||
# ]).module
|
||||
# group = module_name + "." + group_name
|
||||
# if self.env.user.has_group(group):
|
||||
# if rec['is_delete']:
|
||||
# raise UserError(_('You are restricted from performing this'
|
||||
# ' operation. Please contact the'
|
||||
# ' administrator.'))
|
||||
# 检查 'access.right' 模型是否存在于环境中
|
||||
if 'access.right' in self.env:
|
||||
# current_model_id = self.env['ir.model'].sudo().search([('model', '=', self._name)]).id
|
||||
access_right_rec = self.env['access.right'].sudo().search_read(
|
||||
[('model_id', '=', current_model_id)], ['model_id', 'is_delete', 'groups_id']
|
||||
)
|
||||
|
||||
if access_right_rec and not self.env.is_admin():
|
||||
for rec in access_right_rec:
|
||||
group_data = self.env['ir.model.data'].sudo().search_read(
|
||||
[('model', '=', 'res.groups'), ('res_id', '=', rec['groups_id'][0])],
|
||||
['name', 'module']
|
||||
)
|
||||
|
||||
if group_data:
|
||||
group_name = group_data[0]['name']
|
||||
module_name = group_data[0]['module']
|
||||
group_xml_id = f"{module_name}.{group_name}"
|
||||
|
||||
if self.env.user.has_group(group_xml_id) and rec['is_delete']:
|
||||
raise UserError(
|
||||
_('You are restricted from performing this operation. Please contact the administrator.'))
|
||||
else:
|
||||
# 如果 'access.right' 模型不存在,可以在这里定义备选逻辑
|
||||
pass
|
||||
|
||||
return True
|
||||
|
||||
|
||||
BaseModel._create = _create
|
||||
# BaseModel.unlink = unlink
|
||||
BaseModel.unlink = unlink
|
||||
|
||||
@@ -1,2 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from . import models
|
||||
@@ -1,18 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
{
|
||||
'name': '机企猫 打印模块',
|
||||
'version': '1.0',
|
||||
'summary': """ 包含机台二维码,程序单打印等 """,
|
||||
'author': '机企猫',
|
||||
'website': 'https://www.jikimo.com',
|
||||
'category': '机企猫',
|
||||
'depends': ['sf_manufacturing', 'sf_maintenance', 'base_report_to_printer'],
|
||||
'data': [
|
||||
'views/maintenance_views.xml',
|
||||
],
|
||||
|
||||
'application': True,
|
||||
'installable': True,
|
||||
'auto_install': False,
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from . import jikimo_printing
|
||||
from . import maintenance_printing
|
||||
from . import workorder_printing
|
||||
|
||||
@@ -1,87 +0,0 @@
|
||||
from io import BytesIO
|
||||
import qrcode
|
||||
from reportlab.pdfgen import canvas
|
||||
from reportlab.lib.pagesizes import A4
|
||||
from PIL import Image
|
||||
import logging
|
||||
from reportlab.lib.utils import ImageReader
|
||||
from odoo import models, fields, api
|
||||
import base64
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
class JikimoPrinting(models.AbstractModel):
|
||||
_name = 'jikimo.printing'
|
||||
|
||||
def print_qr_code(self, data):
|
||||
"""
|
||||
打印二维码
|
||||
"""
|
||||
printer = self.env['printing.printer'].get_default()
|
||||
if not printer:
|
||||
_logger.error("未找到默认打印机")
|
||||
return False
|
||||
|
||||
# 生成二维码
|
||||
qr = qrcode.QRCode(version=1, box_size=10, border=5)
|
||||
qr.add_data(data)
|
||||
qr.make(fit=True)
|
||||
qr_image = qr.make_image(fill_color="black", back_color="white")
|
||||
|
||||
# 将PIL Image转换为reportlab可用的格式
|
||||
temp_image = BytesIO()
|
||||
qr_image.save(temp_image, format="PNG")
|
||||
temp_image.seek(0)
|
||||
|
||||
# 创建PDF
|
||||
pdf_buffer = BytesIO()
|
||||
c = canvas.Canvas(pdf_buffer, pagesize=A4)
|
||||
|
||||
# 计算位置
|
||||
a4_width, a4_height = A4
|
||||
qr_width = 200
|
||||
qr_height = 200
|
||||
x = (a4_width - qr_width) / 2
|
||||
y = (a4_height - qr_height) / 2
|
||||
|
||||
# 直接从BytesIO绘制图片
|
||||
c.drawImage(ImageReader(Image.open(temp_image)), x, y, width=qr_width, height=qr_height)
|
||||
c.save()
|
||||
|
||||
# 获取PDF内容并打印
|
||||
pdf_content = pdf_buffer.getvalue()
|
||||
# _logger.info(f"打印内容: {pdf_content}")
|
||||
printer.print_document(report=None, content=pdf_content, doc_format='pdf')
|
||||
|
||||
# 清理资源
|
||||
pdf_buffer.close()
|
||||
temp_image.close()
|
||||
|
||||
return True
|
||||
|
||||
def print_pdf(self, pdf_data):
|
||||
"""
|
||||
打印PDF
|
||||
"""
|
||||
printer = self.env['printing.printer'].get_default()
|
||||
if not printer:
|
||||
_logger.error("未找到默认打印机")
|
||||
return False
|
||||
|
||||
pdf_data_str = pdf_data.decode('ascii', errors='ignore')
|
||||
decoded_data = base64.b64decode(pdf_data_str)
|
||||
|
||||
# 处理二进制数据
|
||||
pdf_buffer = BytesIO()
|
||||
pdf_buffer.write(decoded_data)
|
||||
pdf_buffer.seek(0)
|
||||
|
||||
# 获取PDF内容
|
||||
pdf_content = pdf_buffer.getvalue()
|
||||
|
||||
printer.print_document(report=None, content=pdf_content, doc_format='pdf')
|
||||
# 清理资源
|
||||
pdf_buffer.close()
|
||||
|
||||
_logger.info("成功打印PDF")
|
||||
return True
|
||||
@@ -1,69 +0,0 @@
|
||||
from odoo import models, fields, api
|
||||
|
||||
class MaintenancePrinting(models.Model):
|
||||
_inherit = 'maintenance.equipment'
|
||||
|
||||
def print_single_method(self):
|
||||
|
||||
print('self.name========== %s' % self.name)
|
||||
self.ensure_one()
|
||||
# maintenance_equipment_id = self.id
|
||||
# # host = "192.168.50.110" # 可以根据实际情况修改
|
||||
# # port = 9100 # 可以根据实际情况修改
|
||||
|
||||
# # 获取默认打印机配置
|
||||
# printer_config = self.env['printer.configuration'].sudo().search([('model', '=', self._name)], limit=1)
|
||||
# if not printer_config:
|
||||
# raise UserError('请先配置打印机')
|
||||
# host = printer_config.printer_id.ip_address
|
||||
# port = printer_config.printer_id.port
|
||||
# self.print_qr_code(maintenance_equipment_id, host, port)
|
||||
|
||||
# 切换成A4打印机
|
||||
|
||||
try:
|
||||
self.env['jikimo.printing'].print_qr_code(self.MTcode)
|
||||
except Exception as e:
|
||||
raise UserError(f"打印失败: {str(e)}")
|
||||
|
||||
|
||||
# def generate_zpl_code(self, code):
|
||||
# """生成ZPL代码用于打印二维码标签
|
||||
# Args:
|
||||
# code: 需要编码的内容
|
||||
# Returns:
|
||||
# str: ZPL指令字符串
|
||||
# """
|
||||
# zpl_code = "^XA\n" # 开始ZPL格式
|
||||
|
||||
# # 设置打印参数
|
||||
# zpl_code += "^LH0,0\n" # 设置标签起始位置
|
||||
# zpl_code += "^CI28\n" # 设置中文编码
|
||||
# zpl_code += "^PW400\n" # 设置打印宽度为400点
|
||||
# zpl_code += "^LL300\n" # 设置标签长度为300点
|
||||
|
||||
# # 打印标题
|
||||
# zpl_code += "^FO10,20\n" # 设置标题位置
|
||||
# zpl_code += "^A0N,30,30\n" # 设置字体大小
|
||||
# zpl_code += "^FD机床二维码^FS\n" # 打印标题文本
|
||||
|
||||
# # 打印二维码
|
||||
# zpl_code += "^FO50,60\n" # 设置二维码位置
|
||||
# zpl_code += f"^BQN,2,8\n" # 设置二维码参数:模式2,放大倍数8
|
||||
# zpl_code += f"^FDLA,{code}^FS\n" # 二维码内容
|
||||
|
||||
# # 打印编码文本
|
||||
# zpl_code += "^FO50,220\n" # 设置编码文本位置
|
||||
# zpl_code += "^A0N,25,25\n" # 设置字体大小
|
||||
# zpl_code += f"^FD编码: {code}^FS\n" # 打印编码文本
|
||||
|
||||
# # 打印日期
|
||||
# zpl_code += "^FO50,260\n"
|
||||
# zpl_code += "^A0N,20,20\n"
|
||||
# zpl_code += f"^FD打印日期: {fields.Date.today()}^FS\n"
|
||||
|
||||
# zpl_code += "^PQ1\n" # 打印1份
|
||||
# zpl_code += "^XZ\n" # 结束ZPL格式
|
||||
|
||||
# return zpl_code
|
||||
|
||||
@@ -1,31 +0,0 @@
|
||||
|
||||
import logging
|
||||
from odoo import models, fields, api
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
class MrpWorkorder(models.Model):
|
||||
_name = 'mrp.workorder'
|
||||
_inherit = ['mrp.workorder']
|
||||
|
||||
def _compute_state(self):
|
||||
super(MrpWorkorder, self)._compute_state()
|
||||
for workorder in self:
|
||||
work_ids = workorder.production_id.workorder_ids.filtered(lambda w: w.routing_type == '装夹预调' or w.routing_type == '人工线下加工')
|
||||
for wo in work_ids:
|
||||
if wo.state == 'ready' and not wo.production_id.product_id.is_print_program:
|
||||
# 触发打印程序
|
||||
pdf_data = workorder.processing_drawing
|
||||
if pdf_data:
|
||||
try:
|
||||
# 执行打印
|
||||
self.env['jikimo.printing'].print_pdf(pdf_data)
|
||||
wo.production_id.product_id.is_print_program = True
|
||||
except Exception as e:
|
||||
_logger.error(f"工单 {wo.name} 的PDF打印失败: {str(e)}")
|
||||
|
||||
class ProductTemplate(models.Model):
|
||||
_inherit = 'product.template'
|
||||
|
||||
is_print_program = fields.Boolean(string='是否打印程序', default=False)
|
||||
|
||||
@@ -1,19 +0,0 @@
|
||||
<?xml version="1.0"?>
|
||||
<odoo>
|
||||
<record id="sf_maintenance_equipment_view_form_qrcode_print" model="ir.ui.view">
|
||||
<field name="name">sf_equipment.form</field>
|
||||
<field name="model">maintenance.equipment</field>
|
||||
<field name="inherit_id" ref="sf_maintenance.sf_hr_equipment_view_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//field[@name='qr_code_image']" position="after">
|
||||
<label for="print_single_method"/>
|
||||
<div class="col-12 col-lg-6 o_setting_box" style="white-space: nowrap">
|
||||
<button type="object" class="oe_highlight" name='print_single_method' string="打印机床二维码"
|
||||
attrs="{'invisible': [('equipment_type', '!=', '机床')]}"/>
|
||||
</div>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from . import models
|
||||
from . import wizard
|
||||
@@ -1,31 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
{
|
||||
'name': '机企猫 采购申请',
|
||||
'version': '16.0.1.0.0',
|
||||
'summary': """ 机企猫 采购申请 """,
|
||||
'author': '机企猫',
|
||||
'website': 'https://bfw.jikimo.com',
|
||||
'category': 'purchase',
|
||||
'depends': ['sf_manufacturing', 'purchase_request'],
|
||||
'data': [
|
||||
'security/ir.model.access.csv',
|
||||
'views/sale_order_view.xml',
|
||||
'views/purchase_order.xml',
|
||||
'views/mrp_production.xml',
|
||||
'views/purchase_request_view.xml',
|
||||
'wizard/purchase_request_line_make_purchase_order_view.xml',
|
||||
'views/purchase_request_line_view.xml',
|
||||
'views/stock_picking_views.xml',
|
||||
'wizard/purchase_request_wizard_views.xml',
|
||||
'views/purchase_request_menu_views.xml',
|
||||
],
|
||||
'assets': {
|
||||
'web.assets_backend': [
|
||||
'jikimo_purchase_request/static/src/**/*'
|
||||
],
|
||||
},
|
||||
'application': True,
|
||||
'installable': True,
|
||||
'auto_install': False,
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,9 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from . import product_template
|
||||
from . import purchase_request
|
||||
from . import sale_order
|
||||
from . import mrp_production
|
||||
from . import purchase_order
|
||||
from . import stock_rule
|
||||
from . import stock_picking
|
||||
from . import product_product
|
||||
@@ -1,52 +0,0 @@
|
||||
from odoo import fields, models, api, _
|
||||
|
||||
|
||||
class MrpProduction(models.Model):
|
||||
_inherit = 'mrp.production'
|
||||
|
||||
pr_mp_count = fields.Integer('采购申请单数量', compute='_compute_pr_mp_count', store=True)
|
||||
|
||||
@api.depends('state')
|
||||
def _compute_pr_mp_count(self):
|
||||
for item in self:
|
||||
if item.product_id.is_customer_provided:
|
||||
item.pr_mp_count = 0
|
||||
else:
|
||||
pr_ids = item._get_purchase_request()
|
||||
item.pr_mp_count = len(pr_ids)
|
||||
# pr_ids = self.env['purchase.request'].sudo().search([('origin', 'like', item.name), ('is_subcontract', '!=', 'True')])
|
||||
|
||||
def action_view_pr_mp(self):
|
||||
"""
|
||||
采购请求
|
||||
"""
|
||||
self.ensure_one()
|
||||
|
||||
# 由于采购申请合并了所有销售订单行的采购,所以不区分产品
|
||||
pr_ids = self._get_purchase_request()
|
||||
|
||||
action = {
|
||||
'res_model': 'purchase.request',
|
||||
'type': 'ir.actions.act_window',
|
||||
}
|
||||
if len(pr_ids) == 1:
|
||||
action.update({
|
||||
'view_mode': 'form',
|
||||
'res_id': pr_ids[0].id,
|
||||
})
|
||||
else:
|
||||
action.update({
|
||||
'name': _("从 %s生成采购请求单", self.name),
|
||||
'domain': [('id', 'in', pr_ids.ids)],
|
||||
'view_mode': 'tree,form',
|
||||
})
|
||||
return action
|
||||
|
||||
def _get_purchase_request(self):
|
||||
"""获取跟制造订单相关的采购申请单(根据采购申请单行项目的产品匹配)"""
|
||||
mrp_names = self.env['mrp.production'].search([('origin', '=', self.origin)]).mapped('name')
|
||||
pr_ids = self.env['purchase.request'].sudo().search([('origin', 'in', mrp_names)])
|
||||
product_list = self.product_id._get_product_include_bom()
|
||||
pr_line_ids = pr_ids.line_ids.filtered(lambda l: l.product_id in product_list)
|
||||
return pr_line_ids.mapped('request_id')
|
||||
|
||||
@@ -1,17 +0,0 @@
|
||||
from odoo import models
|
||||
|
||||
|
||||
class ProductProduct(models.Model):
|
||||
_inherit = 'product.product'
|
||||
|
||||
|
||||
def _get_product_include_bom(self):
|
||||
"""获取产品列表(包括所有bom)"""
|
||||
self.ensure_one()
|
||||
product_list = [self]
|
||||
bom_ids = self.bom_ids
|
||||
while (bom_ids):
|
||||
bom_product_ids = bom_ids.bom_line_ids.mapped('product_id')
|
||||
product_list.append(bom_product_ids)
|
||||
bom_ids = bom_product_ids.bom_ids
|
||||
return product_list
|
||||
@@ -1,19 +0,0 @@
|
||||
from odoo import models, fields
|
||||
|
||||
|
||||
class ProductTemplate(models.Model):
|
||||
_inherit = 'product.template'
|
||||
|
||||
purchase_request_id = fields.Many2one('purchase.request', string='采购申请')
|
||||
|
||||
def no_bom_product_create(self, product_id, item, order_id, route_type, i, finish_product):
|
||||
""" 创建坯料时,复制采购申请 """
|
||||
template_id = super(ProductTemplate, self).no_bom_product_create(product_id, item, order_id, route_type, i,
|
||||
finish_product)
|
||||
template_id.purchase_request = product_id.purchase_request
|
||||
return template_id
|
||||
|
||||
def copy_template(self, product_template_id):
|
||||
""" 复制成品模板时,复制采购申请 """
|
||||
super(ProductTemplate, self).copy_template(product_template_id)
|
||||
self.purchase_request = product_template_id.purchase_request
|
||||
@@ -1,127 +0,0 @@
|
||||
from odoo import api, fields, models, _
|
||||
from odoo.tools import float_compare
|
||||
|
||||
|
||||
class PurchaseOrder(models.Model):
|
||||
_inherit = 'purchase.order'
|
||||
|
||||
state = fields.Selection([
|
||||
('draft', '询价'),
|
||||
('sent', '发送询价'),
|
||||
('to approve', '待批准'),
|
||||
("approved", "已批准"),
|
||||
('purchase', '采购订单'),
|
||||
('done', '完成'),
|
||||
('cancel', '取消'),
|
||||
('rejected', '已驳回')
|
||||
], string='Status', readonly=True, index=True, copy=False, default='draft', tracking=True)
|
||||
|
||||
# 成品采购订单对应的坯料采购申请单和采购订单数量
|
||||
purchase_request_count = fields.Integer('子·采购申请数量', compute='_compute_purchase_request')
|
||||
purchase_order_count = fields.Integer('子·采购订单数量', compute='_compute_purchase_request')
|
||||
|
||||
@api.depends('state')
|
||||
def _compute_purchase_request(self):
|
||||
for record in self:
|
||||
purchase_request_ids, purchase_order_ids = record.get_purchase_request_order()
|
||||
record.purchase_request_count = len(purchase_request_ids)
|
||||
record.purchase_order_count = len(purchase_order_ids)
|
||||
|
||||
def action_view_preform_body_purchase_request(self):
|
||||
self.ensure_one()
|
||||
name_list = self._get_pinking_name()
|
||||
purchase_request_ids = self.env['purchase.request'].search([('origin', 'in', name_list)])
|
||||
|
||||
action = {
|
||||
'res_model': 'purchase.request',
|
||||
'type': 'ir.actions.act_window',
|
||||
}
|
||||
if len(purchase_request_ids) == 1:
|
||||
action.update({
|
||||
'view_mode': 'form',
|
||||
'res_id': purchase_request_ids[0].id,
|
||||
})
|
||||
else:
|
||||
action.update({
|
||||
'name': _("子·采购申请"),
|
||||
'domain': [('id', 'in', purchase_request_ids.ids)],
|
||||
'view_mode': 'tree,form',
|
||||
})
|
||||
return action
|
||||
|
||||
def action_view_preform_body_purchase_order(self):
|
||||
self.ensure_one()
|
||||
name_list = self._get_pinking_name()
|
||||
purchase_order_ids = self.env['purchase.order'].search([('origin', 'in', name_list)])
|
||||
|
||||
action = {
|
||||
'res_model': 'purchase.order',
|
||||
'type': 'ir.actions.act_window',
|
||||
}
|
||||
if len(purchase_order_ids) == 1:
|
||||
action.update({
|
||||
'view_mode': 'form',
|
||||
'res_id': purchase_order_ids[0].id,
|
||||
})
|
||||
else:
|
||||
action.update({
|
||||
'name': _("子·采购订单"),
|
||||
'domain': [('id', 'in', purchase_order_ids.ids)],
|
||||
'view_mode': 'tree,form',
|
||||
})
|
||||
return action
|
||||
|
||||
def get_purchase_request_order(self):
|
||||
name_list = self._get_pinking_name()
|
||||
purchase_request_ids = self.env['purchase.request'].search([('origin', 'in', name_list)])
|
||||
purchase_order_ids = self.env['purchase.order'].search([('origin', 'in', name_list)])
|
||||
return purchase_request_ids, purchase_order_ids
|
||||
|
||||
def _get_pinking_name(self):
|
||||
return [picking_id.name for picking_id in self.picking_ids if picking_id.name]
|
||||
|
||||
def button_confirm(self):
|
||||
res = super(PurchaseOrder, self).button_confirm()
|
||||
# 取消反向调拨单
|
||||
reverse_move_ids = self.env['stock.move'].search([
|
||||
('origin', '=', self.name),
|
||||
('purchase_line_id', '=', False),
|
||||
('state', '!=', 'done')
|
||||
])
|
||||
if reverse_move_ids:
|
||||
reverse_move_ids.picking_id.action_cancel()
|
||||
return res
|
||||
|
||||
def button_cancel(self):
|
||||
"""
|
||||
1. 先将采购订单行与目标库存移动断开链接,避免采购单取消后,调拨单被调整为mts的问题
|
||||
2. 取消采购订单
|
||||
3. 将采购订单行与目标库存移动重新建立链接
|
||||
"""
|
||||
created_purchase_request_line_ids = {}
|
||||
if self.order_line.move_dest_ids.created_purchase_request_line_id:
|
||||
move_ids = self.order_line.move_dest_ids.filtered(lambda move: move.state != 'done' and not move.scrapped)
|
||||
created_purchase_request_line_ids = {move.id: move.created_purchase_request_line_id for move in move_ids}
|
||||
self.order_line.write({'move_dest_ids': [(5, 0, 0)]})
|
||||
res =super(PurchaseOrder, self).button_cancel()
|
||||
for move_id, created_purchase_request_line_id in created_purchase_request_line_ids.items():
|
||||
self.env['stock.move'].browse(move_id).created_purchase_request_line_id = created_purchase_request_line_id
|
||||
# if move_ids.mapped('created_purchase_request_line_id'):
|
||||
# move_ids.write({'state': 'waiting', 'is_done': False})
|
||||
return res
|
||||
|
||||
def write(self, vals):
|
||||
res = super(PurchaseOrder, self).write(vals)
|
||||
if 'state' in vals and vals['state'] == 'purchase':
|
||||
purchase_request = self.order_line.purchase_request_lines.request_id
|
||||
if purchase_request:
|
||||
finished = True
|
||||
# 判断该采购申请所有明细行是否都完成
|
||||
for purchase_request_line in purchase_request.line_ids:
|
||||
finished_qty = sum(purchase_request_line.purchase_lines.filtered(lambda line: line.state == 'purchase').mapped('product_qty'))
|
||||
if float_compare(finished_qty ,purchase_request_line.product_qty, precision_rounding=purchase_request_line.product_id.uom_id.rounding) < 0:
|
||||
finished = False
|
||||
break
|
||||
if finished:
|
||||
purchase_request.button_done()
|
||||
return res
|
||||
@@ -1,203 +0,0 @@
|
||||
import re
|
||||
import ast
|
||||
from odoo import models, fields, api, _
|
||||
from itertools import groupby
|
||||
from odoo.tools import float_compare
|
||||
|
||||
|
||||
class PurchaseRequest(models.Model):
|
||||
_inherit = 'purchase.request'
|
||||
_description = '采购申请'
|
||||
|
||||
# 为state添加取消状态
|
||||
state = fields.Selection(
|
||||
selection_add=[('cancel', '已取消')],
|
||||
ondelete={'cancel': 'set default'} # 添加 ondelete 策略
|
||||
)
|
||||
|
||||
rule_new_add = fields.Boolean('采购请求为规则创建', default=False, compute='_compute_state', store=True)
|
||||
rule_purchase_to_request = fields.Boolean('采购单根据规则创建坯料采购申请', default=False)
|
||||
|
||||
@api.depends('state')
|
||||
def _compute_state(self):
|
||||
for pr in self:
|
||||
if pr.state != 'draft' and pr.rule_new_add:
|
||||
pr.rule_new_add = False
|
||||
|
||||
def action_view_purchase_order(self):
|
||||
action = super(PurchaseRequest, self).action_view_purchase_order()
|
||||
origin_context = ast.literal_eval(action['context'])
|
||||
if 'search_default_draft' in origin_context:
|
||||
origin_context.pop('search_default_draft')
|
||||
action['context'] = origin_context
|
||||
return action
|
||||
|
||||
def button_done(self):
|
||||
product_qty_map = {key: sum(line.product_qty for line in group) for key, group in
|
||||
groupby(self.line_ids, key=lambda x: x.product_id.id)}
|
||||
lines = self.mapped("line_ids.purchase_lines.order_id")
|
||||
# 采购单产品和数量
|
||||
product_summary = {}
|
||||
product_rounding = {}
|
||||
if lines:
|
||||
for line in lines:
|
||||
for line_item in line.order_line:
|
||||
if line_item.state == 'purchase':
|
||||
product_id = line_item.product_id.id
|
||||
qty = line_item.product_qty
|
||||
product_rounding[product_id] = line_item.product_id.uom_id.rounding
|
||||
if product_id in product_summary:
|
||||
product_summary[product_id] += qty
|
||||
else:
|
||||
product_summary[product_id] = qty
|
||||
|
||||
# 校验产品数量
|
||||
discrepancies = []
|
||||
for product_id, qty in product_qty_map.items():
|
||||
if product_id in product_summary:
|
||||
if float_compare(product_summary[product_id], qty, precision_rounding=product_rounding[product_id]) < 0:
|
||||
discrepancies.append((product_id, qty, product_summary[product_id]))
|
||||
else:
|
||||
discrepancies.append((product_id, qty, 0))
|
||||
|
||||
if discrepancies:
|
||||
# 弹出提示框
|
||||
message = "产品与采购数量不一致:\n"
|
||||
for product_id, required_qty, order_qty in discrepancies:
|
||||
product_name = self.env['product.product'].browse(product_id).display_name # 获取产品名称
|
||||
message += f"产品 {product_name},需求数量 {required_qty},关联采购订单确认的数量 {order_qty}。\n"
|
||||
# 添加确认框
|
||||
message += "确认关闭?"
|
||||
return {
|
||||
'name': _('采购申请'),
|
||||
'type': 'ir.actions.act_window',
|
||||
'views': [(self.env.ref(
|
||||
'jikimo_purchase_request.purchase_request_wizard_wizard_form_view').id,
|
||||
'form')],
|
||||
'res_model': 'purchase.request.wizard',
|
||||
'target': 'new',
|
||||
'context': {
|
||||
'default_purchase_request_id': self.id,
|
||||
'default_message': message,
|
||||
}}
|
||||
return super(PurchaseRequest, self).button_done()
|
||||
|
||||
|
||||
class PurchaseRequestLine(models.Model):
|
||||
_inherit = 'purchase.request.line'
|
||||
_description = '采购申请明细'
|
||||
|
||||
origin = fields.Char(string="Source Document")
|
||||
|
||||
part_number = fields.Char('零件图号', store=True, compute='_compute_part_number')
|
||||
part_name = fields.Char('零件名称', store=True, compute='_compute_part_number')
|
||||
related_product = fields.Many2one('product.product', string='关联产品',
|
||||
help='经此产品工艺加工成的成品')
|
||||
|
||||
supply_method = fields.Selection([
|
||||
('automation', "自动化产线加工"),
|
||||
('manual', "人工线下加工"),
|
||||
('purchase', "外购"),
|
||||
('outsourcing', "委外加工"),
|
||||
], string='供货方式', compute='_compute_supply_method', store=True)
|
||||
|
||||
purchase_request_count = fields.Integer(string='采购申请数量', compute='_compute_purchase_request_count',
|
||||
readonly=True)
|
||||
purchase_count = fields.Integer(string="采购订单数量", compute="_compute_purchase_count", readonly=True)
|
||||
|
||||
@api.depends("purchase_lines")
|
||||
def _compute_purchase_count(self):
|
||||
for rec in self:
|
||||
rec.purchase_count = len(rec.mapped("purchase_lines.order_id"))
|
||||
|
||||
@api.depends('request_id')
|
||||
def _compute_purchase_request_count(self):
|
||||
for order in self:
|
||||
order.purchase_request_count = len(order.request_id)
|
||||
|
||||
@api.depends('origin')
|
||||
def _compute_supply_method(self):
|
||||
for prl in self:
|
||||
order_ids = []
|
||||
if not prl.origin:
|
||||
continue
|
||||
origin = [origin.replace(' ', '') for origin in prl.origin.split(',')]
|
||||
if 'S' in prl.origin:
|
||||
# 原单据是销售订单
|
||||
order_ids = self.env['sale.order'].sudo().search([('name', 'in', origin)]).ids
|
||||
elif 'MO' in prl.origin:
|
||||
# 原单据是制造订单
|
||||
mp_ids = self.env['mrp.production'].sudo().search([('name', 'in', origin)])
|
||||
order_ids = [mp_id.sale_order_id.id for mp_id in mp_ids] if mp_ids else []
|
||||
elif 'WH' in prl.origin:
|
||||
# 原单据是调拨单
|
||||
sp_ids = self.env['stock.picking'].sudo().search([('name', 'in', origin)])
|
||||
order_ids = [sp_id.sale_order_id.id for sp_id in sp_ids] if sp_ids else []
|
||||
order_line = self.env['sale.order.line'].sudo().search(
|
||||
[('product_id', '=', prl.product_id.id), ('order_id', 'in', order_ids)])
|
||||
if order_line:
|
||||
prl.supply_method = order_line[0].supply_method
|
||||
else:
|
||||
prl.supply_method = None
|
||||
|
||||
@api.depends('product_id')
|
||||
def _compute_part_number(self):
|
||||
for record in self:
|
||||
if record.part_number and record.part_name:
|
||||
continue
|
||||
if record.product_id.categ_id.name == '坯料':
|
||||
product_name = ''
|
||||
match = re.search(r'(S\d{5}-\d+)', record.product_id.name)
|
||||
# 如果匹配成功,提取结果
|
||||
if match:
|
||||
product_name = match.group(0)
|
||||
else:
|
||||
product_name = record.product_id.name
|
||||
sale_order_name = ''
|
||||
match_sale = re.search(r'S(\d+)', record.product_id.name)
|
||||
if match_sale:
|
||||
sale_order_name = match_sale.group(0)
|
||||
sale_order = self.env['sale.order'].sudo().search(
|
||||
[('name', '=', sale_order_name)])
|
||||
if sale_order:
|
||||
filtered_order_line = sale_order.order_line.filtered(
|
||||
lambda order_line: re.search(f'{product_name}$', order_line.product_id.name)
|
||||
)
|
||||
record.part_number = filtered_order_line.product_id.part_number
|
||||
record.part_name = filtered_order_line.product_id.part_name
|
||||
else:
|
||||
record.part_number = record.product_id.part_number
|
||||
record.part_name = record.product_id.part_name
|
||||
|
||||
def _compute_qty_to_buy(self):
|
||||
for pr in self:
|
||||
qty_to_buy = sum(pr.mapped("product_qty"))
|
||||
if pr.purchase_count > 0:
|
||||
qty_to_buy -= sum(pr.mapped("purchase_lines").filtered(lambda po: po.state != 'cancel').mapped(
|
||||
"product_qty"))
|
||||
pr.qty_to_buy = qty_to_buy > 0.0
|
||||
pr.pending_qty_to_receive = qty_to_buy
|
||||
|
||||
def action_view_purchase_request(self):
|
||||
action = self.env["ir.actions.actions"]._for_xml_id("purchase_request.purchase_request_form_action")
|
||||
action.update({
|
||||
'res_id': self.request_id.id,
|
||||
'views': [[False, 'form']],
|
||||
})
|
||||
return action
|
||||
|
||||
def action_view_purchase_order(self):
|
||||
action = self.env["ir.actions.actions"]._for_xml_id("purchase.purchase_rfq")
|
||||
lines = self.mapped("purchase_lines.order_id")
|
||||
if len(lines) > 1:
|
||||
action["domain"] = [("id", "in", lines.ids)]
|
||||
elif lines:
|
||||
action["views"] = [
|
||||
(self.env.ref("purchase.purchase_order_form").id, "form")
|
||||
]
|
||||
action["res_id"] = lines.id
|
||||
origin_context = ast.literal_eval(action['context'])
|
||||
if 'search_default_draft' in origin_context:
|
||||
origin_context.pop('search_default_draft')
|
||||
action['context'] = origin_context
|
||||
return action
|
||||
@@ -1,50 +0,0 @@
|
||||
from odoo import fields, models, api, _
|
||||
|
||||
|
||||
class StatusChange(models.Model):
|
||||
_inherit = 'sale.order'
|
||||
|
||||
# def action_confirm(self):
|
||||
# res = super(StatusChange, self).action_confirm()
|
||||
# # 采购申请自动确认
|
||||
# pr_ids = self.env["purchase.request"].sudo().search(
|
||||
# [('origin', 'like', self.name), ('rule_new_add', '=', True)])
|
||||
# if pr_ids:
|
||||
# pr_ids.write({'need_validation': False})
|
||||
# pr_ids.write({"state": "approved"})
|
||||
# return res
|
||||
|
||||
purchase_request_purchase_order_count = fields.Integer('采购申请单数量', compute='_compute_purchase_request_count',
|
||||
store=True)
|
||||
|
||||
@api.depends('state')
|
||||
def _compute_purchase_request_count(self):
|
||||
for so in self:
|
||||
pr_ids = self.env['purchase.request'].sudo().search([('origin', 'like', so.name)])
|
||||
if pr_ids:
|
||||
so.purchase_request_purchase_order_count = len(pr_ids)
|
||||
else:
|
||||
so.purchase_request_purchase_order_count = 0
|
||||
|
||||
def action_view_purchase_request_purchase_orders(self):
|
||||
"""
|
||||
采购请求
|
||||
"""
|
||||
self.ensure_one()
|
||||
pr_ids = self.env['purchase.request'].sudo().search([('origin', 'like', self.name)])
|
||||
action = {
|
||||
'res_model': 'purchase.request',
|
||||
'type': 'ir.actions.act_window',
|
||||
}
|
||||
if len(pr_ids) == 1:
|
||||
action.update({
|
||||
'view_mode': 'form',
|
||||
'res_id': pr_ids[0].id,
|
||||
})
|
||||
else:
|
||||
action.update({
|
||||
'name': _("从 %s生成采购请求单", self.name),
|
||||
'domain': [('id', 'in', pr_ids.ids)],
|
||||
'view_mode': 'tree,form',
|
||||
})
|
||||
return action
|
||||
@@ -1,60 +0,0 @@
|
||||
from odoo import fields, api, models, _
|
||||
|
||||
|
||||
class StockPicking(models.Model):
|
||||
_inherit = "stock.picking"
|
||||
|
||||
purchase_request_count = fields.Integer('采购订单数量', compute='_compute_purchase_request')
|
||||
|
||||
@api.depends('name')
|
||||
def _compute_purchase_request(self):
|
||||
for record in self:
|
||||
purchase_request_ids = self.env['purchase.request'].search([('origin', '=', record.name)])
|
||||
record.purchase_request_count = len(purchase_request_ids)
|
||||
|
||||
def action_view_purchase_request(self):
|
||||
self.ensure_one()
|
||||
|
||||
purchase_request_ids = self.env['purchase.request'].search([('origin', '=', self.name)])
|
||||
|
||||
action = {
|
||||
'res_model': 'purchase.request',
|
||||
'type': 'ir.actions.act_window',
|
||||
}
|
||||
if len(purchase_request_ids) == 1:
|
||||
action.update({
|
||||
'view_mode': 'form',
|
||||
'res_id': purchase_request_ids[0].id,
|
||||
})
|
||||
else:
|
||||
action.update({
|
||||
'name': _("从 %s生成采购请求单", self.name),
|
||||
'domain': [('id', 'in', purchase_request_ids.ids)],
|
||||
'view_mode': 'tree,form',
|
||||
})
|
||||
return action
|
||||
|
||||
def _action_done(self):
|
||||
res = super(StockPicking, self)._action_done()
|
||||
# 将新产生的backorder对应上原来的采购申请明细行
|
||||
backorder_ids = self.backorder_ids
|
||||
if backorder_ids:
|
||||
purchase_request_lines = self.move_ids.move_orig_ids.purchase_line_id.purchase_request_lines
|
||||
if purchase_request_lines:
|
||||
purchase_request_lines.move_dest_ids = [
|
||||
(4, x.id) for x in backorder_ids.move_ids if
|
||||
x.product_id.id in purchase_request_lines.mapped('product_id.id') and \
|
||||
not x.created_purchase_request_line_id
|
||||
]
|
||||
return res
|
||||
|
||||
def _subcontracted_produce(self, subcontract_details):
|
||||
super()._subcontracted_produce(subcontract_details)
|
||||
|
||||
# 判断是否根据规则生成新的采购申请单据,如果生成则修改状态为 approved
|
||||
if self:
|
||||
pr_ids = self.env["purchase.request"].sudo().search(
|
||||
[('origin', 'like', self.name), ('rule_purchase_to_request', '=', True), ('state', '=', 'draft')])
|
||||
if pr_ids:
|
||||
pr_ids.write({'need_validation': False})
|
||||
pr_ids.write({"state": "approved", 'need_validation': True, 'rule_new_add': False})
|
||||
@@ -1,94 +0,0 @@
|
||||
from odoo import api, fields, models
|
||||
from collections import defaultdict
|
||||
|
||||
|
||||
class StockRule(models.Model):
|
||||
_inherit = "stock.rule"
|
||||
|
||||
def create_purchase_request(self, procurement_group):
|
||||
"""
|
||||
Create a purchase request containing procurement order product.
|
||||
"""
|
||||
procurement = procurement_group[0]
|
||||
rule = procurement_group[1]
|
||||
purchase_request_model = self.env["purchase.request"]
|
||||
purchase_request_line_model = self.env["purchase.request.line"]
|
||||
cache = {}
|
||||
pr = self.env["purchase.request"]
|
||||
domain = rule._make_pr_get_domain(procurement.values)
|
||||
if domain in cache:
|
||||
pr = cache[domain]
|
||||
elif domain:
|
||||
pr = self.env["purchase.request"].search([dom for dom in domain])
|
||||
pr = pr[0] if pr else False
|
||||
cache[domain] = pr
|
||||
if not pr:
|
||||
request_data = rule._prepare_purchase_request(
|
||||
procurement.origin, procurement.values
|
||||
)
|
||||
request_data = self._update_request_data(procurement, request_data)
|
||||
pr = purchase_request_model.create(request_data)
|
||||
cache[domain] = pr
|
||||
elif (
|
||||
not pr.origin
|
||||
or procurement.origin not in pr.origin.split(", ")
|
||||
and procurement.origin != "/"
|
||||
):
|
||||
if pr.origin:
|
||||
if procurement.origin:
|
||||
pr.write({"origin": pr.origin + ", " + procurement.origin})
|
||||
else:
|
||||
pr.write({"origin": procurement.origin})
|
||||
# Create Line
|
||||
request_line_data = rule._prepare_purchase_request_line(pr, procurement)
|
||||
request_line_data.update({'origin': procurement.origin})
|
||||
purchase_request_line_model.create(request_line_data)
|
||||
|
||||
def _update_request_data(self, procurement, request_data):
|
||||
sp = self.env['stock.picking'].sudo().search([('name', '=', procurement.origin)])
|
||||
if len(sp) == 1:
|
||||
po = self.env['purchase.order'].sudo().search(
|
||||
[('name', '=', sp.origin), ('purchase_type', '=', 'outsourcing')])
|
||||
if po:
|
||||
request_data.update({'rule_purchase_to_request': True})
|
||||
else:
|
||||
request_data.update({'rule_new_add': True})
|
||||
return request_data
|
||||
|
||||
|
||||
def _run_buy(self, procurements):
|
||||
# 如果补货组相同,并且产品相同,则合并
|
||||
procurements_dict = defaultdict()
|
||||
for procurement, rule in procurements:
|
||||
if (procurement.product_id.id, procurement.values['group_id'], rule.id) not in procurements_dict:
|
||||
procurements_dict[(procurement.product_id.id, procurement.values['group_id'], rule.id)] = {
|
||||
'product_id': procurement.product_id,
|
||||
'product_qty': procurement.product_qty,
|
||||
'product_uom': procurement.product_uom,
|
||||
'location_id': procurement.location_id,
|
||||
'name': procurement.name,
|
||||
'origin': procurement.origin,
|
||||
'company_id': procurement.company_id,
|
||||
'values': procurement.values,
|
||||
'rule': rule
|
||||
}
|
||||
else:
|
||||
procurements_dict[(procurement.product_id.id, procurement.values['group_id'], rule.id)]['product_qty'] += procurement.product_qty
|
||||
procurements_dict[(procurement.product_id.id, procurement.values['group_id'], rule.id)]['values']['move_dest_ids'] |= procurement.values['move_dest_ids']
|
||||
new_procurements = []
|
||||
for k, p in procurements_dict.items():
|
||||
new_procurements.append((
|
||||
self.env['procurement.group'].Procurement(
|
||||
product_id=p['product_id'],
|
||||
product_qty=p['product_qty'],
|
||||
product_uom=p['product_uom'],
|
||||
location_id=p['location_id'],
|
||||
name=p['name'],
|
||||
origin=p['origin'],
|
||||
company_id=p['company_id'],
|
||||
values=p['values']
|
||||
), p['rule'])
|
||||
)
|
||||
|
||||
res = super(StockRule, self)._run_buy(new_procurements)
|
||||
return res
|
||||
@@ -1,2 +0,0 @@
|
||||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
|
||||
access_purchase_request_wizard_group_user,purchase.request.wizard,model_purchase_request_wizard,base.group_user,1,1,1,1
|
||||
|
@@ -1,3 +0,0 @@
|
||||
th[data-name=keep_description] {
|
||||
min-width: 220px;
|
||||
}
|
||||
@@ -1,21 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<odoo>
|
||||
<record id="mrp_production_inherited_form_purchase_request" model="ir.ui.view">
|
||||
<field name="name">mrp.production.inherited.form.purchase.request</field>
|
||||
<field name="model">mrp.production</field>
|
||||
<field name="inherit_id" ref="mrp.mrp_production_form_view"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//button[@name='action_view_mo_delivery']" position="before">
|
||||
<button class="oe_stat_button" name="action_view_pr_mp" type="object" icon="fa-credit-card"
|
||||
attrs="{'invisible': [('pr_mp_count', '=', 0)]}">
|
||||
<div class="o_field_widget o_stat_info">
|
||||
<span class="o_stat_value">
|
||||
<field name="pr_mp_count"/>
|
||||
</span>
|
||||
<span class="o_stat_text">采购申请</span>
|
||||
</div>
|
||||
</button>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
@@ -1,28 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<odoo>
|
||||
<record id="purchase_order_form_jikimo_purchase_request" model="ir.ui.view">
|
||||
<field name="name">purchase.order.inherited.form.jikimo.purchase.request</field>
|
||||
<field name="model">purchase.order</field>
|
||||
<field name="inherit_id" ref="mrp_subcontracting_purchase.purchase_order_form_mrp_subcontracting_purchase"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//div[hasclass('oe_button_box')]/button[@name='action_view_subcontracting_resupply']" position="before">
|
||||
<button
|
||||
class="oe_stat_button" name="action_view_preform_body_purchase_order"
|
||||
type="object" icon="fa-truck" attrs="{'invisible': [('purchase_order_count', '=', 0)]}" groups="stock.group_stock_user">
|
||||
<div class="o_field_widget o_stat_info">
|
||||
<span class="o_stat_value"><field name="purchase_order_count"/></span>
|
||||
<span class="o_stat_text">子·采购订单</span>
|
||||
</div>
|
||||
</button>
|
||||
<button
|
||||
class="oe_stat_button" name="action_view_preform_body_purchase_request"
|
||||
type="object" icon="fa-truck" attrs="{'invisible': [('purchase_request_count', '=', 0)]}" groups="stock.group_stock_user">
|
||||
<div class="o_field_widget o_stat_info">
|
||||
<span class="o_stat_value"><field name="purchase_request_count"/></span>
|
||||
<span class="o_stat_text">子·采购申请</span>
|
||||
</div>
|
||||
</button>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
@@ -1,22 +0,0 @@
|
||||
<odoo>
|
||||
<record id="purchase_request_line_form_sf" model="ir.ui.view">
|
||||
<field name="name">purchase.request.line.sf.form</field>
|
||||
<field name="model">purchase.request.line</field>
|
||||
<field name="inherit_id" ref="purchase_request.purchase_request_line_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//h1" position="before">
|
||||
<div class="oe_button_box" name="button_box">
|
||||
<button type="object" name="action_view_purchase_request" class="oe_stat_button"
|
||||
icon="fa-file">
|
||||
<field name="purchase_request_count" widget="statinfo" string="采购申请"/>
|
||||
</button>
|
||||
<button type="object" name="action_view_purchase_order" class="oe_stat_button"
|
||||
attrs="{'invisible': [('purchase_count', '=', 0)]}" icon="fa-shopping-cart">
|
||||
<field name="purchase_count" widget="statinfo" string="采购订单"/>
|
||||
</button>
|
||||
</div>
|
||||
</xpath>
|
||||
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
@@ -1,21 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data>
|
||||
<record id="menu_purhcase_request" model="ir.ui.menu">
|
||||
<field name="name">采购申请</field>
|
||||
<field name="parent_id" ref="purchase.menu_purchase_root" />
|
||||
<field name="sequence">2</field>
|
||||
</record>
|
||||
|
||||
<record id="purchase_request.menu_purchase_request_pro_mgt" model="ir.ui.menu">
|
||||
<field name="sequence">1</field>
|
||||
<field name="parent_id" ref="jikimo_purchase_request.menu_purhcase_request"/>
|
||||
</record>
|
||||
|
||||
<record id="purchase_request.menu_purchase_request_line" model="ir.ui.menu">
|
||||
<field name="sequence">10</field>
|
||||
<field name="parent_id" ref="jikimo_purchase_request.menu_purhcase_request"/>
|
||||
</record>
|
||||
</data>
|
||||
</odoo>
|
||||
|
||||
@@ -1,101 +0,0 @@
|
||||
<odoo>
|
||||
<record id="view_purchase_request_form_sf" model="ir.ui.view">
|
||||
<field name="name">purchase.request.sf.form</field>
|
||||
<field name="model">purchase.request</field>
|
||||
<field name="inherit_id" ref="purchase_request.view_purchase_request_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//button[@name='button_draft']" position="attributes">
|
||||
<attribute name="string">重置草稿</attribute>
|
||||
</xpath>
|
||||
<xpath expr="//field[@name='line_ids']//field[@name='purchased_qty']" position="after">
|
||||
<field name="supply_method"/>
|
||||
</xpath>
|
||||
<xpath expr="//field[@name='line_ids']//field[@name='name']" position="replace">
|
||||
<field name="related_product"/>
|
||||
<field name="part_number"/>
|
||||
<field name="part_name"/>
|
||||
</xpath>
|
||||
<xpath expr="//button[@name='button_done']" position="attributes">
|
||||
<attribute name="class"/>
|
||||
</xpath>
|
||||
<xpath expr="//button[@name='button_in_progress']" position="attributes">
|
||||
<attribute name="invisible">1</attribute>
|
||||
</xpath>
|
||||
<xpath expr="//button[@name='%(purchase_request.action_purchase_request_line_make_purchase_order)d']" position="attributes">
|
||||
<attribute name="class">oe_highlight</attribute>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="view_purchase_request_tree_sf" model="ir.ui.view">
|
||||
<field name="name">purchase.request.sf.tree</field>
|
||||
<field name="model">purchase.request</field>
|
||||
<field name="inherit_id" ref="purchase_request.view_purchase_request_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//field[@name='activity_ids']" position="attributes">
|
||||
<attribute name="optional">hide</attribute>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="view_purchase_request_line_tree_sf" model="ir.ui.view">
|
||||
<field name="name">purchase.request.line.sf.tree</field>
|
||||
<field name="model">purchase.request.line</field>
|
||||
<field name="inherit_id" ref="purchase_request.purchase_request_line_tree"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//field[@name='requested_by']" position="replace">
|
||||
<field name="supply_method"/>
|
||||
</xpath>
|
||||
<xpath expr="//field[@name='assigned_to']" position="attributes">
|
||||
<attribute name="invisible">True</attribute>
|
||||
</xpath>
|
||||
<xpath expr="//field[@name='name']" position="attributes">
|
||||
<attribute name="invisible">True</attribute>
|
||||
</xpath>
|
||||
<xpath expr="//field[@name='supplier_id']" position="after">
|
||||
<field name="requested_by" widget="many2one_avatar_user"/>
|
||||
<field name="assigned_to" widget="many2one_avatar_user" invisible="1"/>
|
||||
</xpath>
|
||||
<xpath expr="//field[@name='purchased_qty']" position="attributes">
|
||||
<attribute name="string">采购数量</attribute>
|
||||
</xpath>
|
||||
<xpath expr="//field[@name='purchase_state']" position="attributes">
|
||||
<attribute name="string">订单状态</attribute>
|
||||
</xpath>
|
||||
<xpath expr="//field[@name='product_id']" position="after">
|
||||
<field name="related_product"/>
|
||||
<field name="part_number"/>
|
||||
<field name="part_name" invisible="1"/>
|
||||
</xpath>
|
||||
<xpath expr="//tree" position="inside">
|
||||
<header>
|
||||
<button
|
||||
name="%(purchase_request.action_purchase_request_line_make_purchase_order)d"
|
||||
string="创建询价单"
|
||||
type="action"
|
||||
class="btn-primary"
|
||||
/>
|
||||
</header>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="view_purchase_request_line_search_sf" model="ir.ui.view">
|
||||
<field name="name">purchase.request.line.sf.search</field>
|
||||
<field name="model">purchase.request.line</field>
|
||||
<field name="inherit_id" ref="purchase_request.purchase_request_line_search"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//field[@name='product_id']" position="after">
|
||||
<field name="supply_method"/>
|
||||
<field name="related_product"/>
|
||||
<field name="part_number"/>
|
||||
<field name="part_name"/>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.actions.act_window" id="purchase_request.purchase_request_form_action">
|
||||
<field name="name">Purchase Requests</field>
|
||||
<field name="context"></field>
|
||||
</record>
|
||||
</odoo>
|
||||
@@ -1,19 +0,0 @@
|
||||
<odoo>
|
||||
<record id="sale_order_inherited_form_purchase_request_sf" model="ir.ui.view">
|
||||
<field name="name">sale.order.inherited.form.purchase.request</field>
|
||||
<field name="model">sale.order</field>
|
||||
<field name="inherit_id" ref="sale_purchase.sale_order_inherited_form_purchase"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//button[@name='action_preview_sale_order']" position="before">
|
||||
<button class="oe_stat_button" name="action_view_purchase_request_purchase_orders" type="object" icon="fa-credit-card"
|
||||
groups='purchase.group_purchase_user'
|
||||
attrs="{'invisible': [('purchase_request_purchase_order_count', '=', 0)]}">
|
||||
<div class="o_field_widget o_stat_info">
|
||||
<span class="o_stat_value"><field name="purchase_request_purchase_order_count"/></span>
|
||||
<span class="o_stat_text">采购申请</span>
|
||||
</div>
|
||||
</button>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
@@ -1,21 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<odoo>
|
||||
<record id="stock_pikcing_inherited_form_jikimo_purchase_request" model="ir.ui.view">
|
||||
<field name="name">stock.pikcing.inherited.form.jikimo.purchase.request</field>
|
||||
<field name="model">stock.picking</field>
|
||||
<field name="inherit_id" ref="stock.view_picking_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//div[@name='button_box']/button" position="before">
|
||||
<button class="oe_stat_button" name="action_view_purchase_request" type="object" icon="fa-credit-card"
|
||||
attrs="{'invisible': [('purchase_request_count', '=', 0)]}">
|
||||
<div class="o_field_widget o_stat_info">
|
||||
<span class="o_stat_value">
|
||||
<field name="purchase_request_count"/>
|
||||
</span>
|
||||
<span class="o_stat_text">采购申请</span>
|
||||
</div>
|
||||
</button>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
@@ -1,4 +0,0 @@
|
||||
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl-3.0)
|
||||
|
||||
from . import purchase_request_line_make_purchase_order
|
||||
from . import purchase_request_wizard
|
||||
@@ -1,129 +0,0 @@
|
||||
# Copyright 2018-2019 ForgeFlow, S.L.
|
||||
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl-3.0).
|
||||
from datetime import datetime
|
||||
|
||||
from odoo import _, api, fields, models
|
||||
from odoo.exceptions import UserError, ValidationError
|
||||
from odoo.tools import get_lang
|
||||
|
||||
|
||||
class PurchaseRequestLineMakePurchaseOrder(models.TransientModel):
|
||||
_inherit = "purchase.request.line.make.purchase.order"
|
||||
|
||||
def make_purchase_order(self):
|
||||
res = []
|
||||
purchase_obj = self.env["purchase.order"]
|
||||
po_line_obj = self.env["purchase.order.line"]
|
||||
purchase = False
|
||||
|
||||
if len(set([item_id.line_id.supply_method for item_id in self.item_ids])) > 1:
|
||||
raise ValidationError('不同供货方式不可合并创建询价单!')
|
||||
|
||||
for item in self.item_ids:
|
||||
line = item.line_id
|
||||
if item.product_qty <= 0.0:
|
||||
raise UserError(_("Enter a positive quantity."))
|
||||
if self.purchase_order_id:
|
||||
purchase = self.purchase_order_id
|
||||
if not purchase:
|
||||
po_data = self._prepare_purchase_order(
|
||||
line.request_id.picking_type_id,
|
||||
line.request_id.group_id,
|
||||
line.company_id,
|
||||
line.request_id.origin,
|
||||
)
|
||||
# po_data.update({'related_product':line.related_product.id})
|
||||
purchase = purchase_obj.create(po_data)
|
||||
|
||||
# Look for any other PO line in the selected PO with same
|
||||
# product and UoM to sum quantities instead of creating a new
|
||||
# po line
|
||||
domain = self._get_order_line_search_domain(purchase, item)
|
||||
available_po_lines = po_line_obj.search(domain)
|
||||
new_pr_line = True
|
||||
# If Unit of Measure is not set, update from wizard.
|
||||
if not line.product_uom_id:
|
||||
line.product_uom_id = item.product_uom_id
|
||||
# Allocation UoM has to be the same as PR line UoM
|
||||
alloc_uom = line.product_uom_id
|
||||
wizard_uom = item.product_uom_id
|
||||
if available_po_lines and not item.keep_description:
|
||||
new_pr_line = False
|
||||
po_line = available_po_lines[0]
|
||||
po_line.purchase_request_lines = [(4, line.id)]
|
||||
po_line.move_dest_ids |= line.move_dest_ids
|
||||
po_line_product_uom_qty = po_line.product_uom._compute_quantity(
|
||||
po_line.product_uom_qty, alloc_uom
|
||||
)
|
||||
wizard_product_uom_qty = wizard_uom._compute_quantity(
|
||||
item.product_qty, alloc_uom
|
||||
)
|
||||
all_qty = min(po_line_product_uom_qty, wizard_product_uom_qty)
|
||||
self.create_allocation(po_line, line, all_qty, alloc_uom)
|
||||
else:
|
||||
po_line_data = self._prepare_purchase_order_line(purchase, item)
|
||||
if item.keep_description:
|
||||
po_line_data["name"] = item.name
|
||||
if line.related_product:
|
||||
po_line_data.update({'related_product': line.related_product.id})
|
||||
po_line = po_line_obj.create(po_line_data)
|
||||
po_line_product_uom_qty = po_line.product_uom._compute_quantity(
|
||||
po_line.product_uom_qty, alloc_uom
|
||||
)
|
||||
wizard_product_uom_qty = wizard_uom._compute_quantity(
|
||||
item.product_qty, alloc_uom
|
||||
)
|
||||
all_qty = min(po_line_product_uom_qty, wizard_product_uom_qty)
|
||||
self.create_allocation(po_line, line, all_qty, alloc_uom)
|
||||
self._post_process_po_line(item, po_line, new_pr_line)
|
||||
res.append(purchase.id)
|
||||
|
||||
purchase_requests = self.item_ids.mapped("request_id")
|
||||
purchase_requests.button_in_progress()
|
||||
return {
|
||||
"domain": [("id", "in", res)],
|
||||
"name": _("RFQ"),
|
||||
"view_mode": "tree,form",
|
||||
"res_model": "purchase.order",
|
||||
"view_id": False,
|
||||
"context": False,
|
||||
"type": "ir.actions.act_window",
|
||||
}
|
||||
|
||||
def _check_valid_request_line(self, request_line_ids):
|
||||
for line in self.env["purchase.request.line"].browse(request_line_ids):
|
||||
if line.request_id.state not in ["approved", "in_progress"]:
|
||||
raise UserError(
|
||||
_("采购申请 %s 未审批或未进行中")
|
||||
% line.request_id.name
|
||||
)
|
||||
super(PurchaseRequestLineMakePurchaseOrder, self)._check_valid_request_line(request_line_ids)
|
||||
|
||||
@api.model
|
||||
def check_group(self, request_lines):
|
||||
# 去掉合并必须同一采购组的限制
|
||||
pass
|
||||
|
||||
def get_items(self, request_line_ids):
|
||||
request_line_obj = self.env["purchase.request.line"]
|
||||
items = []
|
||||
request_lines = request_line_obj.browse(request_line_ids).filtered(lambda line: line.pending_qty_to_receive > 0)
|
||||
self._check_valid_request_line(request_line_ids)
|
||||
self.check_group(request_lines)
|
||||
for line in request_lines:
|
||||
items.append([0, 0, self._prepare_item(line)])
|
||||
return items
|
||||
|
||||
|
||||
class PurchaseRequestLineMakePurchaseOrderItem(models.TransientModel):
|
||||
_inherit = "purchase.request.line.make.purchase.order.item"
|
||||
|
||||
supply_method = fields.Selection(related='line_id.supply_method', string='供货方式')
|
||||
|
||||
wiz_id = fields.Many2one(
|
||||
comodel_name="purchase.request.line.make.purchase.order",
|
||||
string="Wizard",
|
||||
required=False,
|
||||
ondelete="cascade",
|
||||
readonly=True,
|
||||
)
|
||||
@@ -1,13 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<odoo>
|
||||
<record id="view_purchase_request_line_make_purchase_order_sf" model="ir.ui.view">
|
||||
<field name="name">Purchase Request Line Make Purchase Order sf</field>
|
||||
<field name="model">purchase.request.line.make.purchase.order</field>
|
||||
<field name="inherit_id" ref="purchase_request.view_purchase_request_line_make_purchase_order"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//field[@name='item_ids']//field[@name='keep_description']" position="before">
|
||||
<field name="supply_method"/>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
@@ -1,12 +0,0 @@
|
||||
from odoo import models, fields, api
|
||||
|
||||
|
||||
class PurchaseRequestWizard(models.TransientModel):
|
||||
_name = 'purchase.request.wizard'
|
||||
_description = '采购申请向导'
|
||||
|
||||
purchase_request_id = fields.Many2one('purchase.request', string='采购申请')
|
||||
message = fields.Char(string='提示', readonly=True)
|
||||
|
||||
def confirm(self):
|
||||
return self.purchase_request_id.write({"state": "done"})
|
||||
@@ -1,22 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record model="ir.ui.view" id="purchase_request_wizard_wizard_form_view">
|
||||
<field name="name">purchase.request.wizard.form.view</field>
|
||||
<field name="model">purchase.request.wizard</field>
|
||||
<field name="arch" type="xml">
|
||||
<form>
|
||||
<sheet>
|
||||
<div>
|
||||
<div style="white-space: pre-wrap;">
|
||||
<field name="message"/>
|
||||
</div>
|
||||
</div>
|
||||
<footer>
|
||||
<button string="确认" name="confirm" type="object" class="oe_highlight"/>
|
||||
<button string="取消" class="btn btn-secondary" special="cancel"/>
|
||||
</footer>
|
||||
</sheet>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
@@ -1,3 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from . import models
|
||||
@@ -1,27 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
{
|
||||
'name': "机企猫 采购申请审批流程",
|
||||
|
||||
'summary': """
|
||||
采购申请审批流程""",
|
||||
|
||||
'description': """
|
||||
Long description of module's purpose
|
||||
""",
|
||||
|
||||
'author': "My Company",
|
||||
'website': "https://www.yourcompany.com",
|
||||
|
||||
# Categories can be used to filter modules in modules listing
|
||||
# Check https://github.com/odoo/odoo/blob/16.0/odoo/addons/base/data/ir_module_category_data.xml
|
||||
# for the full list
|
||||
'category': 'Uncategorized',
|
||||
'version': '0.1',
|
||||
|
||||
# any module necessary for this one to work correctly
|
||||
'depends': ['purchase_request_tier_validation'],
|
||||
|
||||
# always loaded
|
||||
'data': [
|
||||
],
|
||||
}
|
||||
@@ -1,4 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from . import models
|
||||
from . import stock_rule
|
||||
@@ -1,30 +0,0 @@
|
||||
from odoo import models, fields, api, _
|
||||
from odoo.exceptions import ValidationError
|
||||
import logging
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class PurchaseRequest(models.Model):
|
||||
_inherit = 'purchase.request'
|
||||
|
||||
|
||||
def _validate_tier(self, tiers=False):
|
||||
res = super(PurchaseRequest, self)._validate_tier(tiers)
|
||||
|
||||
# 检查是否所有审批都已通过
|
||||
all_approved = all(
|
||||
tier_review.status == 'approved'
|
||||
for tier_review in self.review_ids
|
||||
)
|
||||
|
||||
if self.review_ids and all_approved: # 确保有审批记录
|
||||
self.state = 'approved'
|
||||
|
||||
return res
|
||||
|
||||
@api.model
|
||||
def _get_under_validation_exceptions(self):
|
||||
res = super(PurchaseRequest, self)._get_under_validation_exceptions()
|
||||
res.append("state")
|
||||
return res
|
||||
@@ -1,17 +0,0 @@
|
||||
from odoo import models, api
|
||||
|
||||
class StockRule(models.Model):
|
||||
_inherit = 'stock.rule'
|
||||
|
||||
def _run_buy(self, procurements):
|
||||
# 判断是否根据规则生成新的采购申请单据,如果生成则修改状态为 approved
|
||||
origins = list(set([procurement[0].origin for procurement in procurements]))
|
||||
res = super(StockRule, self)._run_buy(procurements)
|
||||
# origins = list(set([procurement[0].origin for procurement in procurements]))
|
||||
for origin in origins:
|
||||
pr_ids = self.env["purchase.request"].sudo().search(
|
||||
[('origin', 'like', origin), ('rule_new_add', '=', True), ('state', '=', 'draft')])
|
||||
if pr_ids:
|
||||
pr_ids.write({'need_validation': False})
|
||||
pr_ids.write({"state": "approved", 'need_validation': True, 'rule_new_add': False})
|
||||
return res
|
||||
@@ -1,4 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from . import models
|
||||
from . import wizards
|
||||
@@ -1,37 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
{
|
||||
'name': "机企猫 采购审批流程",
|
||||
|
||||
'summary': """
|
||||
采购审批流程""",
|
||||
|
||||
'description': """
|
||||
采购审批流程""",
|
||||
|
||||
'author': "My Company",
|
||||
'website': "https://www.yourcompany.com",
|
||||
|
||||
# Categories can be used to filter modules in modules listing
|
||||
# Check https://github.com/odoo/odoo/blob/16.0/odoo/addons/base/data/ir_module_category_data.xml
|
||||
# for the full list
|
||||
'category': 'Uncategorized',
|
||||
'version': '0.1',
|
||||
|
||||
# any module necessary for this one to work correctly
|
||||
'depends': ['purchase', 'purchase_tier_validation', 'documents', 'purchase_request', 'account', 'purchase_order_approved'],
|
||||
|
||||
# always loaded
|
||||
'data': [
|
||||
'views/views.xml',
|
||||
],
|
||||
# only loaded in demonstration mode
|
||||
'demo': [
|
||||
'demo/demo.xml',
|
||||
],
|
||||
|
||||
'assets': {
|
||||
'web.assets_backend': [
|
||||
'jikimo_purchase_tier_validation/static/src/js/ir_model_extend.js',
|
||||
],
|
||||
},
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,3 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from . import models
|
||||
@@ -1,180 +0,0 @@
|
||||
from odoo import models, fields, api, _
|
||||
from odoo.exceptions import ValidationError
|
||||
import logging
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class jikimo_purchase_tier_validation(models.Model):
|
||||
_name = 'purchase.order'
|
||||
_inherit = ['purchase.order', 'tier.validation']
|
||||
_description = "采购订单"
|
||||
_state_from = ["draft", "to approve", "rejected"]
|
||||
_state_to = ["approved", "purchase"]
|
||||
|
||||
_tier_validation_buttons_xpath = "/form/header/button[@id='draft_confirm'][1]"
|
||||
|
||||
contract_document_id = fields.Many2one('documents.document', string='合同文件')
|
||||
contract_file = fields.Binary(related='contract_document_id.datas', string='合同文件内容')
|
||||
contract_file_name = fields.Char(related='contract_document_id.attachment_id.name', string='文件名')
|
||||
|
||||
# 是否已上传合同文件
|
||||
is_upload_contract_file = fields.Boolean(string='是否已上传合同文件', default=False)
|
||||
|
||||
def button_confirm(self):
|
||||
# for record in self:
|
||||
# if record.need_validation and not record.validation_status == 'validated':
|
||||
# raise ValidationError(_('请先完成审批。'))
|
||||
res = super(jikimo_purchase_tier_validation, self).button_confirm()
|
||||
for record in self:
|
||||
if record.state == 'approved':
|
||||
record.order_line._validate_analytic_distribution()
|
||||
record._add_supplier_to_product()
|
||||
# Deal with double validation process
|
||||
if record._approval_allowed():
|
||||
record.button_approve()
|
||||
if record.partner_id not in record.message_partner_ids:
|
||||
record.message_subscribe([record.partner_id.id])
|
||||
return res
|
||||
|
||||
def request_validation(self):
|
||||
for record in self:
|
||||
# 添加通知消息
|
||||
if hasattr(record, 'message_post'):
|
||||
current_user = self.env.user.name
|
||||
record.message_post(
|
||||
body=f"<strong>{current_user}</strong> 提交审批",
|
||||
message_type='notification',
|
||||
subtype_xmlid='mail.mt_note'
|
||||
)
|
||||
res = super(jikimo_purchase_tier_validation, self).request_validation()
|
||||
self.state = 'to approve'
|
||||
return res
|
||||
|
||||
def restart_validation(self):
|
||||
res = super(jikimo_purchase_tier_validation, self).restart_validation()
|
||||
self.state = 'draft'
|
||||
return res
|
||||
|
||||
def _validate_tier(self, tiers=False):
|
||||
res = super(jikimo_purchase_tier_validation, self)._validate_tier(tiers)
|
||||
|
||||
# 检查是否所有审批都已通过
|
||||
all_approved = all(
|
||||
tier_review.status == 'approved'
|
||||
for tier_review in self.review_ids
|
||||
)
|
||||
|
||||
if self.review_ids and all_approved: # 确保有审批记录
|
||||
self.state = 'approved'
|
||||
|
||||
return res
|
||||
|
||||
@api.model
|
||||
def _get_under_validation_exceptions(self):
|
||||
res = super(jikimo_purchase_tier_validation, self)._get_under_validation_exceptions()
|
||||
res.append("state")
|
||||
return res
|
||||
|
||||
# 上传合同文件
|
||||
def upload_contract_file(self):
|
||||
print('upload_contract_file===========================')
|
||||
# self.ensure_one()
|
||||
# return {
|
||||
# 'name': _('上传合同文件'),
|
||||
# 'type': 'ir.actions.act_window',
|
||||
# 'res_model': 'ir.attachment',
|
||||
# 'view_mode': 'form',
|
||||
# 'view_type': 'form',
|
||||
# 'target': 'new',
|
||||
# 'context': {
|
||||
# 'default_res_model': self._name,
|
||||
# 'default_res_id': self.id,
|
||||
# 'default_type': 'binary',
|
||||
# 'default_mimetype': 'application/pdf,application/msword,application/vnd.openxmlformats-officedocument.wordprocessingml.document,image/jpeg,image/png',
|
||||
# }
|
||||
# }
|
||||
|
||||
self.ensure_one()
|
||||
action = {
|
||||
'type': 'ir.actions.act_window',
|
||||
'name': _('上传合同文件'),
|
||||
'res_model': 'ir.attachment.wizard', # 我们需要创建一个新的向导模型
|
||||
'view_mode': 'form',
|
||||
'target': 'new',
|
||||
'context': {
|
||||
'default_res_model': self._name,
|
||||
'default_res_id': self.id,
|
||||
}
|
||||
}
|
||||
return action
|
||||
|
||||
# 删除合同文件
|
||||
def delete_contract_file(self):
|
||||
self.ensure_one()
|
||||
if self.contract_document_id:
|
||||
try:
|
||||
document = self.contract_document_id
|
||||
|
||||
# 清空关联
|
||||
self.write({
|
||||
'contract_document_id': False,
|
||||
'contract_file': False,
|
||||
'contract_file_name': False
|
||||
})
|
||||
|
||||
# 删除文档
|
||||
if document:
|
||||
document.with_context(no_attachment=True).sudo().unlink()
|
||||
|
||||
self.is_upload_contract_file = False
|
||||
|
||||
# 返回视图动作来刷新当前表单
|
||||
return {
|
||||
'type': 'ir.actions.act_window',
|
||||
'res_model': 'purchase.order',
|
||||
'res_id': self.id,
|
||||
'view_mode': 'form',
|
||||
'view_type': 'form',
|
||||
'target': 'current',
|
||||
'flags': {'mode': 'readonly'},
|
||||
}
|
||||
|
||||
except Exception as e:
|
||||
_logger.error('删除合同文件时出错: %s', str(e))
|
||||
return {
|
||||
'type': 'ir.actions.client',
|
||||
'tag': 'display_notification',
|
||||
'params': {
|
||||
'title': _('错误'),
|
||||
'message': _('删除文件时出现错误'),
|
||||
'type': 'danger',
|
||||
'sticky': True,
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
'type': 'ir.actions.client',
|
||||
'tag': 'display_notification',
|
||||
'params': {
|
||||
'title': _('提示'),
|
||||
'message': _('没有需要删除的合同文件'),
|
||||
'type': 'warning',
|
||||
'sticky': False,
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
# class jikimo_purchase_request(models.Model):
|
||||
# _inherit = 'purchase.request'
|
||||
# _description = "采购申请"
|
||||
|
||||
|
||||
# class jikimo_account_payment(models.Model):
|
||||
# _inherit = 'account.payment'
|
||||
# _description = "付款单"
|
||||
|
||||
|
||||
# class jikimo_account_move(models.Model):
|
||||
# _inherit = 'account.move'
|
||||
# _description = "发票账单"
|
||||
@@ -1,14 +0,0 @@
|
||||
/** @odoo-module **/
|
||||
|
||||
import {registerPatch} from "@mail/model/model_core";
|
||||
|
||||
registerPatch({
|
||||
name: "ir.model.review",
|
||||
fields: {
|
||||
availableWebViews: {
|
||||
compute() {
|
||||
return ["list", "form", "activity"];
|
||||
},
|
||||
},
|
||||
},
|
||||
});
|
||||
@@ -1,32 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<odoo>
|
||||
<data>
|
||||
<record model="ir.ui.view" id="tier_validation_view_approved_purchase_order_form_inherit">
|
||||
<field name="name">tier_validation_view_approved_purchase_order_form_inherit</field>
|
||||
<field name="model">purchase.order</field>
|
||||
<field name="inherit_id" ref="purchase_order_approved.purchase_order_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//button[@name='button_release']" position="replace">
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="tier_validation_view_purchase_order_form_inherit">
|
||||
<field name="name">tier_validation_view_purchase_order_form_inherit</field>
|
||||
<field name="model">purchase.order</field>
|
||||
<field name="inherit_id" ref="purchase.purchase_order_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//header/button[@name='button_approve']" position="replace">
|
||||
</xpath>
|
||||
<xpath expr="//header/button[@name='button_cancel']" position="replace">
|
||||
</xpath>
|
||||
<xpath expr="//header/field[@name='state']" position="replace">
|
||||
<field name="state" widget="statusbar" statusbar_visible="draft,sent,to approve, approved, purchase" readonly="1"/>
|
||||
</xpath>
|
||||
<xpath expr="//header/button[last()]" position="after">
|
||||
<button name="button_cancel" states="draft,to approve,sent,purchase" string="取消" type="object" data-hotkey="x" />
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</data>
|
||||
</odoo>
|
||||
@@ -1 +0,0 @@
|
||||
from . import comment_wizard
|
||||
@@ -1,15 +0,0 @@
|
||||
from odoo import models, fields
|
||||
|
||||
|
||||
class CommentWizard(models.TransientModel):
|
||||
_inherit = "comment.wizard"
|
||||
|
||||
def add_comment(self):
|
||||
|
||||
rec = self.env[self.res_model].browse(self.res_id)
|
||||
|
||||
self.review_ids = rec.review_ids
|
||||
|
||||
result = super(CommentWizard, self).add_comment()
|
||||
|
||||
return result
|
||||
@@ -1,139 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from . import models
|
||||
from . import controllers
|
||||
|
||||
from odoo import api, SUPERUSER_ID
|
||||
|
||||
def _data_install(cr, registry):
|
||||
env = api.Environment(cr, SUPERUSER_ID, {})
|
||||
# 获取所有需要设置的产品模板
|
||||
env.ref('jikimo_sale_multiple_supply_methods.product_template_purchase').product_variant_id.write({'active': False, 'is_bfm': True})
|
||||
env.ref('jikimo_sale_multiple_supply_methods.product_template_manual_processing').product_variant_id.write({'active': False, 'single_manufacturing': True, 'is_bfm': True})
|
||||
env.ref('jikimo_sale_multiple_supply_methods.product_template_default').product_variant_id.write({'active': False, 'is_bfm': True})
|
||||
env.ref('jikimo_sale_multiple_supply_methods.product_template_embryo_customer_provided').product_variant_id.write({'active': False})
|
||||
env.ref('jikimo_sale_multiple_supply_methods.product_template_outsourcing').product_variant_id.write({'active': False, 'is_bfm': True})
|
||||
|
||||
# 为三步制造增加规则
|
||||
warehouse = env['stock.warehouse'].search([('company_id', '=', env.company.id)], limit=1)
|
||||
product_route_id = warehouse.pbm_route_id
|
||||
# 创建规则:原料存货区 -> 制造前, 坯料存货区 -> 制造前, 制造后 -> 坯料存货区, 制造后 -> 成品存货区
|
||||
raw_material_location_id = env['stock.location'].search([('name', '=', '坯料存货区')], limit=1)
|
||||
picking_type_production = warehouse.pbm_type_id
|
||||
picking_type_stock = warehouse.sam_type_id
|
||||
material_location_id = env['stock.location'].search([('name', '=', '原料存货区')], limit=1)
|
||||
# 为mto增加规则
|
||||
mto_route_id = env.ref('stock.route_warehouse0_mto')
|
||||
# 创建规则:原料存货区 -> 外包位置, 坯料存货区 -> 外包位置
|
||||
subcontracting_location_id = env.company.subcontracting_location_id
|
||||
picking_type_subcontracting = warehouse.subcontracting_resupply_type_id
|
||||
# 为补给外包商增加规则
|
||||
resupply_route_id = warehouse.subcontracting_route_id
|
||||
|
||||
rules_data = [
|
||||
{
|
||||
'name': 'WH: 原料存货区 → 制造前',
|
||||
'location_src_id': material_location_id.id,
|
||||
'location_dest_id': warehouse.pbm_loc_id.id,
|
||||
'route_id': product_route_id.id,
|
||||
'picking_type_id': picking_type_production.id,
|
||||
'action': 'pull',
|
||||
'sequence': 20,
|
||||
'warehouse_id': warehouse.id,
|
||||
'procure_method': 'mts_else_mto',
|
||||
},
|
||||
{
|
||||
'name': 'WH: 坯料存货区 → 制造前',
|
||||
'location_src_id': raw_material_location_id.id,
|
||||
'location_dest_id': warehouse.pbm_loc_id.id,
|
||||
'route_id': product_route_id.id,
|
||||
'picking_type_id': picking_type_production.id,
|
||||
'action': 'pull',
|
||||
'sequence': 21,
|
||||
'warehouse_id': warehouse.id,
|
||||
'procure_method': 'mts_else_mto',
|
||||
},
|
||||
{
|
||||
'name': 'WH: 制造后 → 坯料存货区',
|
||||
'location_src_id': warehouse.sam_loc_id.id,
|
||||
'location_dest_id': raw_material_location_id.id,
|
||||
'route_id': product_route_id.id,
|
||||
'picking_type_id': picking_type_stock.id,
|
||||
'action': 'push',
|
||||
'sequence': 23,
|
||||
},
|
||||
{
|
||||
'name': 'WH: 制造后 → 成品存货区',
|
||||
'location_src_id': warehouse.sam_loc_id.id,
|
||||
'location_dest_id': env['stock.location'].search([('name', '=', '成品存货区')], limit=1).id,
|
||||
'route_id': product_route_id.id,
|
||||
'picking_type_id': picking_type_stock.id,
|
||||
'action': 'push',
|
||||
'sequence': 24,
|
||||
},
|
||||
{
|
||||
'name': 'WH: 原料存货区 → 外包位置 (MTO)',
|
||||
'location_src_id': material_location_id.id,
|
||||
'location_dest_id': subcontracting_location_id.id,
|
||||
'route_id': mto_route_id.id,
|
||||
'picking_type_id': picking_type_subcontracting.id,
|
||||
'action': 'pull',
|
||||
'sequence': 24,
|
||||
'warehouse_id': warehouse.id,
|
||||
'procure_method': 'mts_else_mto',
|
||||
},
|
||||
{
|
||||
'name': 'WH: 坯料存货区 → 外包位置 (MTO)',
|
||||
'location_src_id': raw_material_location_id.id,
|
||||
'location_dest_id': subcontracting_location_id.id,
|
||||
'route_id': mto_route_id.id,
|
||||
'picking_type_id': picking_type_subcontracting.id,
|
||||
'action': 'pull',
|
||||
'sequence': 25,
|
||||
'warehouse_id': warehouse.id,
|
||||
'procure_method': 'mts_else_mto',
|
||||
},
|
||||
{
|
||||
'name': 'WH: 坯料存货区 → 外包位置',
|
||||
'location_src_id': raw_material_location_id.id,
|
||||
'location_dest_id': subcontracting_location_id.id,
|
||||
'route_id': resupply_route_id.id,
|
||||
'picking_type_id': picking_type_subcontracting.id,
|
||||
'action': 'pull',
|
||||
'sequence': 26,
|
||||
'warehouse_id': warehouse.id,
|
||||
'procure_method': 'make_to_stock',
|
||||
}
|
||||
]
|
||||
# 遍历每个规则数据,执行创建或更新操作
|
||||
for rule_data in rules_data:
|
||||
_create_or_update_stock_rule(env, rule_data)
|
||||
|
||||
def _create_or_update_stock_rule(env, rule_data):
|
||||
# 尝试查找现有的 stock.rule
|
||||
existing_rule = env['stock.rule'].search([
|
||||
('name', '=', rule_data['name']),
|
||||
('route_id', '=', rule_data.get('route_id'))
|
||||
], limit=1)
|
||||
|
||||
if existing_rule:
|
||||
# 如果存在,更新现有记录
|
||||
existing_rule.write(rule_data)
|
||||
else:
|
||||
# 如果不存在,创建新记录
|
||||
env['stock.rule'].create(rule_data)
|
||||
|
||||
def _data_uninstall(cr, registry):
|
||||
env = api.Environment(cr, SUPERUSER_ID, {})
|
||||
warehouse = env['stock.warehouse'].search([('company_id', '=', env.company.id)], limit=1)
|
||||
product_route_id = warehouse.pbm_route_id
|
||||
resupply_route_id = warehouse.subcontracting_route_id
|
||||
mto_route_id = env.ref('stock.route_warehouse0_mto')
|
||||
# Fail unlink means that the route is used somewhere (e.g. route_id on stock.rule). In this case
|
||||
# we don't try to do anything.
|
||||
try:
|
||||
with env.cr.savepoint():
|
||||
env['stock.rule'].search([('name', 'in', ('WH: 原料存货区 → 制造前', 'WH: 坯料存货区 → 制造前', 'WH: 制造后 → 坯料存货区', 'WH: 制造后 → 成品存货区')), ('route_id', '=', product_route_id.id)]).unlink()
|
||||
env['stock.rule'].search([('name', 'in', ('WH: 原料存货区 → 外包位置 (MTO)', 'WH: 坯料存货区 → 外包位置 (MTO)')), ('route_id', '=', mto_route_id.id)]).unlink()
|
||||
env['stock.rule'].search([('name', '=', 'WH: 坯料存货区 → 外包位置'), ('route_id', '=', resupply_route_id.id)]).unlink()
|
||||
except:
|
||||
pass
|
||||
@@ -1,26 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
{
|
||||
'name': '机企猫 多供货方式',
|
||||
'version': '16.0.1.0.0',
|
||||
'summary': """ 报价单提供(自动化产线加工/人工线下加工/外购/委外加工)多种供货方式选择 """,
|
||||
'author': 'fox',
|
||||
'website': '',
|
||||
'category': '',
|
||||
'depends': ['sf_dlm', 'sale_stock', 'sf_sale', 'sale'],
|
||||
"data": [
|
||||
'security/ir.model.access.csv',
|
||||
'data/stock_routes.xml',
|
||||
'data/product_data.xml',
|
||||
# 'views/product_product_views.xml',
|
||||
],'assets': {
|
||||
# 'web.assets_backend': [
|
||||
# 'jikimo_sale_multiple_supply_methods/static/src/**/*'
|
||||
# ],
|
||||
},
|
||||
'post_init_hook': '_data_install',
|
||||
'uninstall_hook': '_data_uninstall',
|
||||
'application': True,
|
||||
'installable': True,
|
||||
'auto_install': False,
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user