导航

2013年7月4日

摘要: OpenERP默认安装输出的PDF中文报表都是一些方块:此问题可以通过oecn_base_fonts模块解决:更多关于oecn_base_fonts的信息请参考:1.OpenERPv7.0 中文报表字体模块(oecn_base_fonts)安装指南2.oecn_base_fonts 使用说明(解决v.7.0,v6.1,V6.0.x的PDF中文字体方框问题,支持CJK语言) 阅读全文

posted @ 2013-07-04 17:07 eastson 阅读(1539) 评论(0) 推荐(0) 编辑

摘要: 原文地址:OpenERP 7.0安装与配置#!/bin/bash -e# Modified script from Carlos E. Fonseca Zorrilla # 1. Add the two additional installation sources:rpm -ivh http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpmrpm -ivh http://yum.pgrpms.org/9.2/redhat/rhel-6-i386/pgdg-centos92-9.2-6.noarch.rpm# 阅读全文

posted @ 2013-07-04 15:52 eastson 阅读(761) 评论(0) 推荐(0) 编辑

摘要: 默认安装的OE7设置菜单只有很少的功能:如果需要更多的OE定制,必须开启“技术特性”选项: 阅读全文

posted @ 2013-07-04 15:17 eastson 阅读(298) 评论(0) 推荐(0) 编辑

摘要: 关于PostgreSQL的备份和恢复详细信息请参阅《PostgreSQL中文文档》。备份:#pg_dump --username=postgres v70_demo > v70_demo_20130704.dump恢复:#createdb--username=postgres v70_demo_temp#psql--username=postgres v70_demo_temp < v70_demo_20130704.dump#dropdb--username=postgresv70_demo_temp 阅读全文

posted @ 2013-07-04 09:07 eastson 阅读(222) 评论(0) 推荐(0) 编辑