|
|
@@ -207,7 +207,7 @@ export default defineComponent({
|
|
|
PriceMove: 0, // double 商品升贴水值
|
|
|
WeightRatio: 1, // double 商品重量系数
|
|
|
};
|
|
|
-
|
|
|
+ debugger
|
|
|
const param = {
|
|
|
AccountID: res.accountid, // 默认内部资金账号第一个
|
|
|
ClientSerialNo: uuidv4(), // 客户端流水号
|
|
|
@@ -248,13 +248,13 @@ export default defineComponent({
|
|
|
WRStandardID: props.selectedRow.wrstandardid,
|
|
|
HasWr: isWR(), // 无仓单挂牌 是否有无仓单
|
|
|
DeliveryMonth: isWR() ? '' : moment(res.DeliveryMonth).format('YYYY-MM'),
|
|
|
- FactoryItems: props.selectedRow.wrResult.flatMap((it) => {
|
|
|
+ FactoryItems: props.selectedRow.wrResult != undefined ? props.selectedRow.wrResult.flatMap((it) => {
|
|
|
return {
|
|
|
DGFactoryItemTypeID: it.dgfactoryitemtypeid, // uint64 要素项类型ID
|
|
|
DGFactoryItemID: it.dgfactoryitemid, // uint64 预约要素项类型值
|
|
|
ItemTypeMode: 1, // uint32 要素项类型模式
|
|
|
};
|
|
|
- }), // DGFactoryItems 要素类型明细集合(没有仓单要素ID填写)
|
|
|
+ }): [], // DGFactoryItems 要素类型明细集合(没有仓单要素ID填写)
|
|
|
};
|
|
|
debugger;
|
|
|
requestResultLoadingAndInfo(hdWROrder, param, loading, ['求购成功', '求购失败:']).then(() => {
|