I want to develop a Rice manufacturing module in our erp (Adempiere) below are our details
*We purchase Rice From Vendor and then send these rice for milling process
*After Milling Process our rice is divided in many sub product for eg
1-Fine Rice which is almost 70-80 %
2-B1 Rice which is the broken rice its ratio is 10-20 %
3-B2 Rice which is the rice collect during sweeping process in the mill its ratio is 5%
How I can Manage Such Scenario in my erp or refer me some erp where such scenario is implemented
What you are talking about is a production or manufacturing module. If you are using ADempiere you can implement the Manufacturing Module from Libero.
Basically what you do is define your production plan based on a bill of materials (Your input), a formula and your final products (output).
In your example, your input will be the Rice. Then you have your formula, 80% goes to 1-Fine and so on and your output will be the produced 1-Fine, 2-B1 and 3-B2. The module will process and produce and make the inventory movements to update the existences (-Rice, +1-Fine, +2-B1, +3-B2).
You can read a lot more here
Step by Step Guide to Adempiere Manufacturing
HIH
As suggested you can use the Libero manufacturing business process, however I believe that you can use the much simpler production module to set up you production process. You just need to set up the formula and run prodcution batches as required.
Regards
Related
In “Anylogic” I created a production chain of a furniture company for five product types. The chain was built of “delay-”, “service-” with “RessourcePool-Blocks” to simulate the production time of the product and the availability of the worker on the machining station.
The goal was to adjust the load profile with the energy production profile of a photovoltaic system. For this purpose, the production time should be choose individual. The production profile become loaded in the simulation from an excel table. Every day the company produce 20 furniture of different types.
The idea to adjust the production time and the kind of furniture (every furniture type have a different production time) was to use “parameter” to determine the start point to begin the production and the selection of product type. I need for each product two parameter.
In an “optimization” “experiment” in “Anylogic” the simulation for one day runs through. The “Objective” is to minimize the amount of energy draw from the grid. After 500 iterations and some adjustments of the value range, I get adapted parameter as result. The resulted value for the parameter in the “optimization” can transfer to the production chain simulation.
My question is:
Is it possible to transfer the resulted parameters automatic to the production chain program, so that I do not need always to run both simulations separately?
I want to simulate for a whole year, to get specific result for different production profile over the year and not start the optimization program and the simulation individual for every day.
Greetings.
I am working on a eCommerce website based on shopify. And for product I want to set a custom price. For example, The standard price of product is $500 but price will vary if user increased the quantity i.e. On 5 - 10 it will cost $450, On 11 - 15 it will cost $400 and on 20+ quantity it will cost $300.
I have searched module for this and also found a module i.e. https://apps.shopify.com/quantity-breaks. But its working on the basis of "Percent" that I don't need. Because I want to place price manually on the basis of quantity.
So please help me out from this and provide your valuable thoughts on the same.
Thanks in advance.
The way this is generally done in Shopify is to create variants where the option values are the price breaks. You have to modify your theme so that when a Qty > price break is entered the product page selects the variant that corresponds to that price level.
Other than the coding portion of this the main issue becomes inventory management since Shopify treats each variant as a separate inventory item but if you use variants to manage price breaks they are not actually separate items.
I think the easiest way to do this would be with a Shopify App. There are many that have price breaks etc. and they are usually easier to set up than using variants as the price break amounts.
I'm setting up a oscommerce store for my friends. He gets a product at 48.3 INR and sells at 60 INR . TAX for product is is 12.5%
For this he wants to have proper system to calculate profit
Now when I'm trying to enter product cost in OSC, it has only 2 fields.
Gross and Net.
If I enter 48.3 in Net it shows 54.3375 INR in gross (*TAX). while I need to show 60 INR for that product and calculate profit. Can any one help me about how to this in oscommerce!!
I need to show product cost on product page as 60 INR. and I should be able to input purchase cost somewhere in OSC. So that its possible to calculate profit.
I'm not entirely getting whether its possible in OSC or how to achieve it.
Please help.!
It's very possible. Either you will need to find a preexisting addon that does this or write your own addon. What you have described is simple to implement if you know php and mysql. If you don't then you should hire a programmer to do it for you.
Check out http://addons.oscommerce.com
I am seeking an optimal solution to the following problem.
I have 3 junior medical officers (MOs) and only 1 consultant. The clinic starts at 0800 HRS; there are 12 patients in total to be seen; and the last patient should ideally start his appointment at 1100 HRS. In addition, all 3 MOs must start seeing 1 patient each at 0800 HRS.
Each patient must be seen in the following order: first by a medical officer (MO), followed by the consultant. A patient may experience a waiting time (T) between being seen by a medical officer, and being seen by the consultant.
The objective is to reduce the average waiting time (T). How then should we schedule the clinic? This problem is also illustrated in the attached Table.
I suspect that this scenario can be treated as a flow shop scheduling problem - all suggested solutions will be greatly appreciated.
enter image description here
Thanks very much!
This looks like a form of Job Shop Scheduling (so optimality will be hard when scaling out because it's NP-complete/hard). You're basically assigning each job (= 1 appointment of 1 patient) to a machine (= 1 medical officer). On top of that, you have job dependencies (because the 2 appointments of a patient on the same day must be in a certain order).
A typical approach is a Construction Heuristic followed by a Local Search (such as Tabu Search). There's a bunch of solvers out there that can help you solve this with such algorithms. For example in Java, there's OptaPlanner that has 2 examples similar to this: Project Job Scheduling and Nurse Rostering.
So, here's the problem:
A product costs $10. You then have the option to customize it (with a photo upload to be printed on it) for an additional one-off price of $5, no matter how many products are ordered (e.g. you can order 1 or 5 or 10000 items and the customization price will always be a flat $5).
Currently, when you buy, for example, twenty items and choose the customization option, OpenCart will calculate it: (Product Price + Option Price)*Quantity = (10+5)*20 = $300 . Instead, what I aim to achieve is something like (Product Price*Quantity) + Option Price = 10*20 + 5 = $205
Ideally, I would like certain options to ignore the quantity (so that it will be an additional $5 no matter how many products are ordered), while other option prices should go up with quantity (so that one product customization costs $5, two product customizations cost $10, etc.).
Surely, OpenCart must offer some way to deliver such a fundamental customer experience?
This isn't a standard feature that you will be able to do out of the box. The way I would solve this would be to create a custom Order Total extension and add $5 to the subtotal/total at checkout if any product has that particular option set. This does require some PHP knowledge to do
Instead of rolling your own, you could probably use the Handling Fee extension. You may need to create a new Tax Class for that. But as Jay said, creating your own would be ideal, and yu could certainly use the Handling Fee as a starting point.
Check this out
ADD ONCE OPTION PRICE REGARDLESS QUANTITY
http://www.opencart.com/index.php?route=extension/extension/info&extension_id=13390
My commercial OpenCart extension Setup Fees for Product Options should do what you need. You can see an example here by selecting the rush production option.