Ninniku IT Hub

開源技術,實戰分享

iDempiere ERP · IoT · Linux — 從導入到上線的技術筆記

iDempiere

Troubleshooting – Document Workflow

Document workflow 透過單據動作啟動流程後,發生Timeout。查看Log如下列錯誤訊息。 ProcessUtil.startDatabaseProcedure: {call (?)} [1550] org.postgresql.util.PSQLException: ERROR: syntax error at or near "$1" 常見的原因為,DocAction 對應的 Process. AD_Workflow_ID 未指定 Workflow造成。 English Version After triggering the workflow through a document action, a Timeout occurs. The log shows the following error...

2022-11-18 · 閱讀 1 分鐘
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 分鐘