Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Default Sales Return Refund Option

 

  • Blank              - Option for both.
  • Credit Memo  - When customer returned a purchased product, you can only choose to offset with a Credit Memo (issue Credit Note). Therefore, no return in cash is involved.
  • Cash Refund  - Refund the customer in cash.

 

  • Click 'Submit'.

 

Stock Checking In Jobsheet (Upon Saving Jobsheet)

 

  • When saving

...

  • job-sheet upon creation/editing in Trading, system will check to see if there is sufficient stock for all items in the

...

  • job-sheet. System will stop the saving process if any one of those items have insufficient stock.

 

  • Check the checkbox to activate stock checking and uncheck it to deactivate stock checking, then click Submit.

 

Stock Checking In Jobsheet (Upon Adding Items)

  • When selecting Item, stock not in the inventory or insufficient stock, EMP will notify the user.

 

  • Tick / Untick Disable and click 'Submit'.

Display stock with quantity ZERO in item search for Jobsheet

  • Tick / Untick enable and click 'Submit'.


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

Image Modified

  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 .

Image Modified

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.

  • Applicable to New Item Search Form
  • Enable "Item Search Using Regular Expression" from Trading Config

Image Modified

  • Set Regular Expression, A sample is here:

Image Modified

<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:

  • parentElementRE => Main Regular Expression to identify a pattern. System will continue looking at this Regular Expression if only this pattern matches with input search keyword

...

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

Image Modified