iDempiere

Unlock the power of enterprise resource planning with our iDempiere category! Discover the latest tips, tricks, and best practices for optimizing your business operations and streamlining workflows with this robust and highly customizable ERP software. From implementation to customization, our expert guides will walk you through every step of the process, helping you harness the full potential of iDempiere for your organization. Whether you’re a seasoned ERP pro or new to the game, our iDempiere category is your ultimate resource for success.

110 篇文章
iDempiere

Workflow Editor 增欄位數量

iDempiere ERP. Workflow Editor 預設的編輯的欄位數為4個。 (圖 1)在較複雜的Workflow設計圖時,可能就不敷使用。本篇文章說明如何修改Soruce code來增加欄位。在 JIRA 提供 Patch檔或參考下列說明。 https://idempiere.atlassian.net/browse/IDEMPIERE-5431 圖 1 我們在工作列上增加一個 NumberBox,可以用來任意調整Workflow 畫布的欄位數。變更後按Refresh即可變更畫布欄位數。(圖 2)畫布欄位數預設值為 4, 也可以透過System Configuration 來設定預設值 (關鍵字為 WORKFLOW_EDITOR_COLUMNS) 圖...

2022-09-23 · 43 分鐘
iDempiere

訂單與進出貨單的數量控管 MatchPO

下一個採購物料 A,數量 10 個。收貨時,可以分批收貨。每次進 10個以下。合計總數不能超過 10個。問題來了,有些特殊情況,需要超收怎麼辦?例如,供應商會多送一些當損耗。嚴格處理的話,可以拆單收取。簡易的操作,iDempiere 有預留系統參數,可以把MatchPO 檢查關掉。登入後台 System , 在 System Configurator 搜尋系統參數 VALIDATE_MATCHING_TO_ORDERED_QTY 設為 N 即可不檢核。 下面是超收的範例 Purchase Order 明細。原訂購4個,實際收 15個。 English Version...

2022-05-05 · 2 分鐘
iDempiere

iDempiere plug-in project

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <groupId>org.idempiere</groupId> <artifactId>org.idempiere.parent</artifactId> <version>7.1.0-SNAPSHOT</version> <relativePath>../idempiere2020/org.idempiere.parent/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>tw.aierp.aps</groupId> <artifactId>tw.aierp.aps</artifactId> <version>0.0.1-SNAPSHOT</version> <build> <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration>...

2021-03-24 · 4 分鐘
iDempiere

Workflow中等待結點的推進

說明: 若Workflow Node 結點中設定等待時間. iDempiere 預設情況下,就算時間到了, 也不會將流程往前推進. 目前設計是由相關權責人員到簽核畫面去按確認才會往下走.不過,我有一個實際的案例, 需要用到 Wait Timeout 自動往下走.情境如下:加班單送出申請後, 系統會自動檢查該員工是否有打下班卡,以核對加班單的有效性.但是,真實使用情境,通常員工加班完後會先在自己的電腦操作ERP申請完加班申請, 這時候需要先等待一時間等員工離開公司時的打卡紀錄.另外,若沒有打卡紀錄,系統會通知員工出勤紀錄有誤,再等待半天時間等員工補登.下面流程兩紅色框起來的兩個 Node 會運用到Timeout and Next 的自動功能. 實作法法: 撰寫一個 IProcess 並安裝到 Scheduler 讓它自動執行....

2020-08-21 · 9 分鐘