自動編號中, 如何使用指定欄位作為前引碼來編號?
透過 AutoNumber組建的 onGetFixed事件即可, 如下:
exports.an出貨單_onGetFixed = function(fixedString, rows)
{
    fixedString = rows[0].客戶編號;  // 以客戶編號為前引碼
    return fixedString;
};