Go Control Panel > EMP Configurations > Trading 


Default Sales Return Refund Option

 

 

Stock Checking In Jobsheet (Upon Saving Jobsheet)

 

 

 

Stock Checking In Jobsheet (Upon Adding Items)

 

Display stock with quantity ZERO in item search for Jobsheet


Credit Limit Checking In Jobsheet

Apply Five Cent Concept

  1. This is for rounding adjustment
  2. Tick Enable to apply this
  3. Before set the item code , please configure the item first by add item for rounding.
  4. Can refer the guide here to Add Item
  5. Item type for rounding must be GL Code

  1. Set default GL Code for that item . If GL Code not exist in the system , please add GL Code first .
  2. Can refer the guide here to Add GL Code
  3. After done configure the item , set the item under Apply Five Cent Concept and Click Submit .

Item Search Using Regular Expression

Main purpose is to find the correct keyword from a pattern. Suppose SUPPLIERCODE-ITEMCODE-GRNDATE-COSTPRICE is a patter. Using regular expression system will be able to find ITEMCODE from here.

<data>
   <rules>
      <parentElementRE>^*([_A-Za-z0-9\.]{3,10})*-([_A-Za-z0-9\.]{3,20})*-([_A-Za-z0-9]{4})*-([_A-Za-z0-9]{4})$</parentElementRE>
      <separator>-</separator>
      <keywordPosition>1</keywordPosition>
      <child>
        <childName>ItemCode</childName><childElementRE>^*([_A-Za-z0-9\.]{6,10})$</childElementRE>
        <childName>BatchNumber</childName><childElementRE></childElementRE>
        <childName>keyword</childName><childElementRE></childElementRE>
      </child>
   </rules>
</data>

 

Here mandatory tags are:

If ItemCode is mentioned in childName and it has a regular expression in childElementRE then system will match pattern and findout the itemcode from the long keyword

If BatchNumber is mentioned in childName and it has a regular expression in childElementRE then system will match pattern and findout the batchNumber from the long keyword. Later with the combination of ItemCode and BatchNumber the correct item with BatchNumber will be selected

If keyword is mentioned in childName and it has a regular expression in childelementRE then system will match pattern and findout the keyword from the long keyword.

This Regular Expression mainly used to find keyword from a pattern. Now it's applicable to Item Search.