Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Work Order help
09-19-2020, 02:47 AM,
#1
Work Order help
Is there a way to create a work order without having it tied to a manufactured part?

There are times that we will need to create work orders for jobs that are not manufacturing parts. Is this possible?
Reply
09-19-2020, 10:35 PM,
#2
RE: Work Order help
Simple answer is no.

However you can force it through by changing the lines

AND mbflag='M'
to be
AND (mbflag='M' OR mbflag='P')

in the various search SQL strings in WorkOrderEntry.php
There are also checks that are done twice near the top of the script where
if($CheckItemRow['mbflag']!='M') needs to be changed to
if($CheckItemRow['mbflag']!='M' and $CheckItemRow['mbflag']!='B')

This may have repercussions elsewhere as there will be no BOM, particularly in the costing that happens when the WO is closed. I would advise you check the above carefully before putting it in a production environment.

Tim
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)