对公报销单往来类型处理

This commit is contained in:
zhangzhiguo 2025-11-21 09:34:11 +08:00
parent 1cf43ca37d
commit 1a12644678
1 changed files with 7 additions and 0 deletions

View File

@ -71,6 +71,13 @@ public class CostcompanyDefaultPlugin extends AbstractBillPlugIn implements Plu
comboList.add(new ComboItem(new LocaleString("内部公司"), "bos_org"));
ComboEdit comboEdit = getView().getControl("payertype");
comboEdit.setComboItems(comboList);
//往来类型
List<ComboItem> comboListbillpayertype = new ArrayList<>();
comboListbillpayertype.add(new ComboItem(new LocaleString("供应商"), "bd_supplier"));
comboListbillpayertype.add(new ComboItem(new LocaleString("客户"), "bd_customer"));
ComboEdit comboEditbillpayertype = getView().getControl("billpayertype");
comboEditbillpayertype.setComboItems(comboListbillpayertype);
}
}
}