对公报销单往来类型处理
This commit is contained in:
parent
1cf43ca37d
commit
1a12644678
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue