You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
870 B
24 lines
870 B
1 year ago
|
namespace CK.SCP.GrupUniApi.Config
|
||
|
{
|
||
|
public class UniApiConfig
|
||
|
{
|
||
|
|
||
|
public bool Scm采购订单 { get; set; } = true;
|
||
|
public bool Scm发货单 { get; set; } = true;
|
||
|
public bool Scm条码明细 { get; set; } = true;
|
||
|
public bool Scm发票 { get; set; } = false;
|
||
|
|
||
|
public bool Qad零件 { get; set; } = true;
|
||
|
public bool Qad供应商 { get; set; } = true;
|
||
|
public bool Qad供应商零件 { get; set; } = true;
|
||
|
public bool Qad采购订单 { get; set; } = false;
|
||
|
//public bool Qad收货单 { get; set; } = true;
|
||
|
|
||
|
public bool Wms收货单 { get; set; } = true;
|
||
|
public bool Wms退货单 { get; set; } = true;
|
||
|
public bool Wms库存 { get; set; } = true;
|
||
|
public bool Wms到货单 { get; set; } = true;
|
||
|
|
||
|
public bool Wms库存质量 { get; set; } = true;
|
||
|
}
|
||
|
}
|