Questions tagged [erp]

Enterprise Resource Planning (ERP) intends to provide a complete view of business by integrating accounting, human resources, supply chain management, capacity planning, production scheduling, customer relationship management, sales planning and more.

Enterprise Resource Planning (ERP) intends to provide a complete view of business as a software application. By comparison, Materials Resource Planning (MRP) gives insight into factors that relate directly to physical production. ERP includes MRP as a subset and extends to other areas such as finance and human resources.

797 questions
-1
votes
1 answer

How can i show a pie chart using portlet script type(SuiteScript 2.0) in netsuite?and also How to include a HTML file in our portlet script.?

function() { function render(params) { params.portlet.title = 'My Portlet'; var content = ''+ '
' + '
'+ ' Selecting elements ' + '

-1
votes
3 answers

in odoo can i relate Many2one relation to a specific field apart from _rec_name

class College(models.Model): _name = 'module2_college' _description = 'College Info' _rec_name = 'clg_name' clg_name = fields.Char("College") stream = fields.Many2one('module2_course',"Course") class Course(models.Model): _name =…
Abhishek S
  • 27
  • 6
-1
votes
1 answer

Add custom app on desk using Frappe + ERP

So i was a beginner using this framework. I don't know how to add custom app on the desk. I was following the tutorial by add desk.py and insert my code there. after bench migrate and nothing happend. I'm following tutorial from this link.
-1
votes
1 answer

How do we add custom fields in Infor syteline

I have a new requirement to add a custom field called document number in the item form which should be editable.
-1
votes
1 answer

How to connect to odoo from distance

I'm setting up a new server 2012 R2, and want to be connected to it remotely using an IP address or a domain name.
-1
votes
1 answer

How to identify what ERP system in use by the client just looking the table names in the SSMS?

I was wondering is there an easy way to identify ERP system name by just looking the provided SSMS table names.Ex. table bdbd.init
Sam
  • 43
  • 1
  • 2
  • 7
-1
votes
1 answer

C# Syntax Errors CS1003 and CS1026

I have the following code for a BPM (Business Process Management) Workflow Designer in Pre-processing for Epicor ERP System. using Ice.Memo; foreach (var ttJobHead_xRow in (from ttJobHead_Row in ttJobHead where ttJobHead_Row.RowMod ==…
Joe B
  • 1
-1
votes
1 answer

Get user's currency in Odoo 8 (API V7)

I need to format a report with the currency of the company's user in Odoo 8.for that I have to get the currency (res.currency) of the current company. How could I have this data using the old api (API V7). Thanks.
zaizousf
  • 93
  • 9
-1
votes
1 answer

Odoo vs Home made cakephp development

I have a customer that needs to deploy a software to manage Expenses, Human ressource, Employees and other needs specific to the scaffolding domain. I’m trying to convince him that an implementation based on Odoo ERP is faster, more efficient and…
Kamal
  • 26
  • 2
-1
votes
1 answer

Odoo Reading domain

I'm doing a module where one feature is emailing but needs to read the domain and put it in the right place. Below code for example, should write in place with the word HERE where is link.
-1
votes
1 answer

Advice on choosing the best data warehousing tools for ERP system on Oracle 10g

I have been tasked with researching and implementing data warehousing for our ERP system (it's IFS if anyone happen to have prior experience). There is 137GB of data over more than 5000 tables. Does anyone have any experience of data warehousing a…
RobLaw84
  • 175
  • 2
  • 5
  • 18
-1
votes
3 answers

Build a Task Management App using Javascript

I am looking to build a Order Management and Task Management App for my company. I am a beginner in Programming and know only Javascript (Can manage with HTML and CSS ) . This app would also require to connect with a database. Is it possible to…
Manish Jain
  • 7
  • 1
  • 5
-1
votes
1 answer

Can web application handles devices?

I hope to develop web based ERP system for retail startup. Is that possible to configure a device like bar-code reader? It runs through the browser. Will the browser can identify that kind of device?
Janath
  • 1,218
  • 4
  • 26
  • 53
-1
votes
1 answer

Iterate data from other model records inside custom module in Odoo

I want to iterate account.invoice in my custom module. I am using following line for the iteration but it is not working properly. for filex in self.env['account.invoice'].search_read([],['partner_id','status','date_due']):
Zeeshan Anjum
  • 450
  • 5
  • 21
-1
votes
2 answers

How to find total number of rows in hibernate with some restrictions?

I have a database named branchMonthlyUsageStatsId, in this table I have a field named brsType, this field contains a string named cnmt or chln. I want to get the total number of rows having cnmt in them, I want to do it via hibernate. Please help me…